Scientific Linux 6
Sponsored Link

FTP Server - ProFTPD2011/03/19

  Install ProFTPD to configure FTP server to transfer files.

[1] Install ProFTPD
[root@www ~]#
yum --enablerepo=epel -y install proftpd
 
# install from EPEL


[root@www ~]#
vi /etc/proftpd.conf


# line 8: change to your hostname

ServerName       "
www.srv.world
"

# line 10: change to your email address

ServerAdmin      
xxx@srv.world


# add near line 48

# get access log

ExtendedLog     /var/log/proftpd/access.log WRITE,READ default
# get auth log

ExtendedLog     /var/log/proftpd/auth.log AUTH auth

[root@www ~]#
vi /etc/ftpusers


# add users you prohibit to FTP access

test


[root@www ~]#
/etc/rc.d/init.d/proftpd start

Starting proftpd:   [  OK  ]
[root@www ~]#
chkconfig proftpd on
Matched Content