美文网首页
阿里云ESC服务器安装FTP

阿里云ESC服务器安装FTP

作者: theBookofChange | 来源:发表于2019-05-22 10:45 被阅读0次

    1.检查是否已安装vsftpd

    rpm -qa|grep vsftpd

    2.安装vsftpd

    yum install vsftpd

    3.创建ftp用户

    useradd test

    4.给ftp用户添加密码

    passwd test

    开放默认端口21

    5.getsebool -a | grep ftp  如果这里报错自行百度

    6.开启allow_ftpd_full_access和ftp_home_dir

    setsebool -P allow_ftpd_full_access on

    setsebool -P tftp_home_dir on

    7.去ftp的配置文件里面关闭啦匿名登录

    8.在安全组开放21端口

    9.在安全组额外开放1024-65535范围的端口,因为我们连接FTP是被动模式,会创建很多socket去连接服务

    10.给我们用户赋权限 chmod 777 test

    参考网址 https://help.aliyun.com/document_detail/92048.html?spm=5176.11065259.1996646101.searchclickresult.33f579a7v1m4sM

    相关文章

      网友评论

          本文标题:阿里云ESC服务器安装FTP

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