下载最新安装包
https://security.appspot.com/downloads/vsftpd-3.0.5.tar.gz
tar -zxvf vsftpd-3.0.5.tar.gz
cd vsftpd-3.0.5
yum install make -y
yum install gcc -y
yum install libcap-devel -y
make
make install
cd /usr/sbin/
mv vsftpd vsftpd_bak
ln -s /usr/local/sbin/vsftpd vsftpd
然后修改/etc/vsftpd/vsftpd.conf配置添加
background=YES
重启服务
systemctl restart vsftpd