美文网首页centos
Centos7安装vsftpd (FTP服务器)

Centos7安装vsftpd (FTP服务器)

作者: TyiMan | 来源:发表于2016-02-06 21:19 被阅读11204次

    一、通过yum安装vsftpd

    yum install -y vsftpd
    

    二、修改vsftpd的配置文件

    vi /etc/vsftpd/vsftpd.conf
    

    修改配置文件如下:
    1.不允许匿名访问

    anonymous_enable=NO
    

    2.允许使用本地帐户进行FTP用户登录验证

    local_enable=YES
    

    3.使用户不能离开主目录

    当chroot_list_enable=YES,chroot_local_user=YES时,在/etc/vsftpd.chroot_list文件中列出的用户,可以切换到其他目录;未在文件中列出的用户,不能切换到其他目录。

    chroot_local_user=YES
    chroot_list_enable=YES
    chroot_list_file=/etc/vsftpd/chroot_list
    

    配置文件最后添加

    allow_writeable_chroot=YES
    

    要不然会报错

    500 OOPS: vsftpd: refusing to run with writable root inside chroot()

    如果/etc/vsftpd/chroot_list不存在,则需要创建该文件

    vi /etc/vsftpd/chroot_list
    

    :wq直接保存并退出就行。

    4.设定支持ASCII模式的上传和下载功能。

    ascii_upload_enable=YES
    ascii_download_enable=YES 
    

    最后 :wq保存修改,重启vsftpd

    systemctl restart vsftpd.service
    

    三、新建FTP用户

    useradd -d /var/ftp/public_root -g ftp -s /sbin/nologin ftpuser
    

    修改该FTP用户密码

    passwd ftpuser  
    

    四、登录FTP
    我使用的是FileZilla FTP客户端测试的登录

    FileZilla FTP客户端

    相关文章

      网友评论

      • dandanfox:allow_writeable_chroot=YES

        就为了这一句话,找了大半天,想了无数次,终于找到了

        真的要说声谢谢你
      • 我如此拉风:开放端口

        永久的开放需要的端口
        sudo firewall-cmd --zone=public --add-port=3000/tcp --permanent
        sudo firewall-cmd --reload

        之后检查新的Rule
        firewall-cmd --list-all

        外加防火墙配置,才可以完美运行。

      本文标题:Centos7安装vsftpd (FTP服务器)

      本文链接:https://www.haomeiwen.com/subject/hqlykttx.html