vsftp服务 安装配置

1.永久关闭selinux
2.安装 yum -y install vsftpd
3.配置开机启动
    systemctl enable vsftpd
4.配置或者关掉防火墙
    1.开启防火墙,开放21端口
        firewall-cmd --zone=public --add-port=21/tcp --permanent
        firewall-cmd --permanent --zone=public --add-service=ftp
        firewall-cmd --reload
    2.关闭防火墙 永久防火墙开机自关闭
        systemctl stop firewalld
        systemctl disable firewalld
4.配置vsftpd /etc/vsftpd/vsftpd.conf
    注意点
        1. /etc/vsftpd目录下的文件 ftpusers  user_list
        2. anonymous_enable=NO local_enable=YES
        3. chroot_local_user=YES allow_writeable_chroot=YES
        4. listen=YES listen_ipv6=NO
        5. userlist_enable=YES userlist_deny=NO

        6. vsftpd增强了安全检查,如果用户被限定在了其主目录下,则该用户的主目录不能再具有写权限了!如果检查发现还有写权限,就会报该错误。
           allow_writeable_chroot=YES

5.  创建用户
    1.useradd -G group_name user_name  
    2.passwd user_name
    3.将用户添加到可访问名单中

6.启动ftp        
    systemctl start vsftpd.service    
上一篇:nginx源码编译安装记录


下一篇:SmartInitializingSingleton的作用和原理