CentOS 7下安装配置FTP

前端之家收集整理的这篇文章主要介绍了CentOS 7下安装配置FTP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

http://www.centoscn.com/image-text/install/2015/0227/4748.html


  • 安装vsftpd
yum install -y vsftpd
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

猜你在找的CentOS相关文章