Total de visualizações de página

sábado, 23 de abril de 2016

FTP Server : ProFTPD


FTP Server : ProFTPD
2014/08/30
 
Install ProFTPD to configure FTP Server.
[1]Install and configure ProFTPD.
# install from EPEL

[root@www ~]# 
yum --enablerepo=epel -y install proftpd
[root@www ~]# 
vi /etc/proftpd.conf
# line 77: change to your hostname

ServerName       "
www.server.world
"
# line 79: change to your email address

ServerAdmin       
root@server.world
# near line 113: add

# get access log & auth log

ExtendedLog     /var/log/proftpd/access.log WRITE,READ default
ExtendedLog     /var/log/proftpd/auth.log AUTH auth
[root@www ~]# 
vi /etc/ftpusers
# add users you prohibit to FTP access

test
[root@www ~]# 
systemctl start proftpd 

[root@www ~]# 
systemctl enable proftpd 

Nenhum comentário:

Postar um comentário