第一步安装vsftpd:
yum -y install vsftpd
第二步修改ftp主目录所属用户为用户ftp:
chown ftp /var/ftp/pub
第三步备份及配置ftp:
cp /etc/vsftpd/vsftpd.conf ~/vsftpd.conf.bak
vim /etc/vsftpd/vsftpd.conf
配置如下图:
第四步启动ftp:
systemctl start vsftpd
第五步把ftp调成开机自动启动:
systemctl enable vsftpd
第六步永久关闭防火墙:
systemctl disable firewalld
第七步永久关闭selinux:
vim /etc/selinux/config
将SELINUX=enforcing 修改为SELINUX=disabled
如下图: