http://www.centoscn.com/image-text/install/2015/0227/4748.html
- 安装vsftpd
yum install -y vsftpd
- 编辑ftp配置文件
vi /etc/vsftpd/vsftpd.conf
anonymous_enable=NO
#anonymous_enable=YES
chroot_local_user=YES
#去掉前面的注释
#chroot_list_enable=YES
#chroot_list_file=/etc/vsftpd/chroot_list
#不受限制的用户列表,用不用都OK
allow_writeable_chroot=YES
#加上这行解决了无法登陆的问题
- 启动/重新启动ftp
service vsftpd start service vsftpd restart
- 设置开机启动ftp
chkconfig vsftpd on
- 防火墙配置(iptables)
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
useradd -d /var/www/html/ -s /sbin/nologin ftpadmin
passwd ftpadmin
- 设置账户权限
chown -R ftpadmin:ftpadmin /var/www/html/
二、卸载
使用命令rpm -e vsftpd 即可卸载ftp
原文链接:/centos/376903.html