CentOS7.2部署FTP

前端之家收集整理的这篇文章主要介绍了CentOS7.2部署FTP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Centos部署的FTP服务器都是vsftpd,

1.安装vsftpd

 
 
  • 1
  • 2
  • 1
  • 2
# yum check-update # yum -y install vsftpd

2.配置参数

  
  
  • 1
    • 1
    # vi /etc/vsftpd/vsftpd.conf

    修改为如下参数

      
      
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    anonymous_enable=NO chroot_local_user=YES allow_writeable_chroot=YES pasv_enable=YES pasv_min_port=40000 pasv_max_port=40100

    3.重启ftp

    # systemctl restart vsftpd.service
    # systemctl enable vsftpd.service

    4.修改防火墙配置

      
      
  • 1
  • 2
  • 3
    • 1
    • 2
    • 3
    # firewall-cmd --permanent --add-service=ftp # firewall-cmd --reload # setsebool -P ftp_home_dir on

    5.为ftp创建一个用户test1(指定目录为/home/www,不允许远程登录shell)

    # useradd -d /home/www -m test1 -s /sbin/nologin
    # cd /home/www
    # chmod -R 777 *
    原文链接:https://www.f2er.com/centos/377416.html

    猜你在找的CentOS相关文章