CentOS 7
Sponsored Link

FTP Server : Pure-FTPd Install2014/09/30

 
Install Pure-FTPd to configure FTP Server.
[1] Install Pure-FTPd.
# install from EPEL

[root@www ~]#
yum --enablerepo=epel -y install pure-ftpd
[root@www ~]#
vi /etc/pure-ftpd/pure-ftpd.conf
# line 77: change (no Anonymous)

NoAnonymous      
yes
# line 453: uncomment (if you use only IPv4)

IPV4Only       yes
# line 460: uncomment (if you use only IPv6)

IPV6Only       yes
[root@www ~]#
systemctl start pure-ftpd

[root@www ~]#
systemctl enable pure-ftpd

[2] If Firewalld is running, allow FTP service.
[root@dlp ~]#
firewall-cmd --add-service=ftp --permanent

success
[root@dlp ~]#
firewall-cmd --reload

success
[3] If SELinux is enabled, change boolean setting.
[root@dlp ~]#
setsebool -P ftpd_full_access on

Matched Content