yum -y install vsftpd
2启动
service vsftpd start
3配置
vi /etc/vsftpd/vsftpd.conf
把这个改为NO 默认是YES (改为NO 就是禁止匿名用户登录)
chroot_local_user=YES把前面的井号去掉
4重启服务
service vsftpd restart
5创建ftp用户
useradd -s /sbin/nologin -d /work ftper
(ftper这个用户只能连接ftp无法登录系统,默认目录是在/work 下面)
6给ftper这个用户设置密码
passwd ftper
7关闭selinux
vi /etc/selinux/config
把SELINUX=enforcing改为SELINUX=disabled
8重启服务
service vsftpd restart
9默认开机启用
chkconfig vsftpd on
10关闭防火墙
service iptables stop
chkconfig iptables off
原文链接:https://www.f2er.com/centos/380702.html