Configure FTP Server - ProFTPD2010/11/07 |
Install ProFTPD to configure FTP server to transfer files. |
|
[1] | Install ProFTPD |
[root@www03 ~]# yum -y install proftpd [root@www03 ~]# vi /etc/proftpd.conf # line 8: change to your hostname ServerName " www03.srv.world "# line 10: change to your email address ServerAdmin root@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 vi /etc/ftpusers # add users you prohibit to FTP access test [root@www03 ~]# /etc/rc.d/init.d/proftpd start Starting proftpd: [ OK ] [root@www03 ~]# chkconfig proftpd on
|
Sponsored Link |