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