Google Plus

Howto install Proftpd on CentOS/RHEL/Fedora

Written by Mel Kham on . Posted in Linux tutorials

Proftpd is anyone applications for transfer file using FTP (File Transfer Protocol). Proftpd using for download or upload file in to server. Before installation make sure gcc package have installed, for installation follow this posting.


1. Make Sure gcc package have installed.
[root@localhost ~]# rpm -qa gcc*
gcc-gnat-4.1.2-42.el5
gcc-c++-4.1.2-42.el5
gcc-objc-4.1.2-42.el5
gcc-java-4.1.2-42.el5
gcc-4.1.2-42.el5
gcc-gfortran-4.1.2-42.el5
gcc-objc++-4.1.2-42.el5

2. Download proftpd.

[root@localhost downloads]# wget  ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.xxx.tar.gz

or

yum   install proftpd

 3. Extract your proftpd have downloaded.

[root@localhost  downloads]# tar zxvf proftpd-1.3.xx.tar.gz
[root@localhost downloads]# cd  proftpd-1.3.xx.

4. Install proftpd

[root@localhost proftpd-1.3.2rc1]#  ./configure
[root@localhost proftpd-1.3.2rc1]# make
[root@localhost  proftpd-1.3.2rc1]# make install

5. Making proftpd user

[root@localhost proftpd-1.3.xx]#  useradd proftpd -s /dev/null

6. Making ftp directory

[root@localhost  proftpd-1.3.xx]# mkdir /home/ftp

7. Edit this line for setting proftpd.

vi  /etc/proftpd.conf

and try to change these lines

======================================

[root@localhost proftpd-1.3.2rc1]# nano /usr/local/etc/proftpd.conf
# This is a basic ProFTPD configuration file (rename it to
# ‘proftpd.conf’ for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# “nobody” and “ftp” for normal operation and anon.

ServerName “ProFTPD centos”
ServerType standalone
DefaultServer on

# Port 21 is the standard FTP port.
Port 21

# Don’t use IPv6 support by default.
# UseIPv6 off

# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022

# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances 30

# Set the user and group under which the server will run.
User proftpd
Group proftpd

# To cause every FTP user to be “jailed” (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~

# Normally, we want files to be overwriteable.
AllowOverwrite on

# Bar use of SITE CHMOD by default

DenyAll

# A basic anonymous configuration, no upload directories. If you do not
# want anonymous users, simply delete this entire section.

User ftp
Group ftp

# We want clients to be able to login with “anonymous” as well as “ftp”
UserAlias anonymous ftp

# Limit the maximum number of anonymous logins
MaxClients 10

# We want ‘welcome.msg’ displayed at login, and ‘.message’ displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayChdir .message

============================================

save and exit

#/etc/init.d/proftpd start

check if ftp is running with ps -ef | grep proftpd

 

Voila :)

from the same machine

from other windows machine :

Cheers

Pirat9 from the Unixmen team

 

For questions please refer to our Q/A forum at : http://ask.unixmen.com

Mel Kham

Founder of Unixmen, Living in Amsterdam. Am working in my free time to help people to understand the Opensource and to explain them in easy way how to make the fist steps to the the light. Working day and night with my Co-founder Zinovsky to keep this website live even with less resources.
  • http://www.sysadmin.md Donotletgoogletoindexyourname

    You can use telnet rather than ftp for connection testing

Like us on Facebook

This week Top Posts

Write for us

Recent Comments

Anders Jackson

|

As I understand it so do VLC use same encoders as ffmpeg. And yes, there are less code that can break when you use command line instead of a graphical UI.

And may I ask what mono has to do with VLC? *facepalm*

Anders Jackson

|

Just some thoughts about Java.

OpenJDK7 are now THE Java implementation and Oracles are just one more of the reimplementations. So you should not need to install Oracles version.

And you really don’t need to remove the OpenJDK7 installation to also have Sun Java JDK 7. Just run

sudo update-java-alternatives –list

and select which java you want to have as default java of all that is installed.

And if you want to run a program with one special version, check manpage for java-wrappers how to do that.

man java-wrappers

so you can run java program rasterizer like this:

JAVA_FLAVOR=openjdk rasterizer
JAVA_ARGS=-Xmx80m rasterizer

JAVA_BINDIR=/usr/share/

etc

Anders Jackson

|

Yes, it is. If you are a “5 years old schizophrenic kid” who can’t restrict what effects to use and what to not use. It’s actually usefull, if you can restrain yourself.

Anders Jackson

|

Agree with BA. You should teach how to remove telnetd from your servers, and tell them to use SSH instead.

And explain that telnet is not secured. It’s easy for anyone to see what you type in clear text or MIM-attacks.

Or you might want to add a kerberos version of telnetd and se to it that it denies any try without kerberos authorization.

The tool telnet is usefull, for example to explain how SMTP protocoll or HTTP-protocoll works by making the user be the client (mail client or web client).
But you do not need to install telnetd for that.

Anders Jackson

|

Can you resolve that name on your machine?

$ getent hosts server.example.com
192.168.0.10 server.example.com

Where this should be your IP-address and then all aliases for that machine (where you obviously change DNS name to your own. ;-)

 
IDG Tech Network
Copyright © 2008-2013 Unixmen.com .
Maintained by Anblik .