vsftpd 安装及配置

yum install vsftpd -y

配置(vi /etc/vsftpd/vsftpd.conf):

//匿名无法登陆
anonymous_enable=NO
//本地用户可以登录
local_enable=YES
//本地用户可写
write_enable=YES

userlist_enable=YES
userlist_deny=NO

用户添加:
adduser -g ftp -s /sbin/nologin wang
passwd wang
usermod -d /data/www/xxx wang


//清空该文件,该文件中的用户将无法连接ftp
/etc/vsftpd/ftpusers
//在/etc/vsftpd/user_list 中添加wang

开机启动:
chkconfig vsftpd on

备注:目录权限需要给够


你可能感兴趣的:(vsftpd 安装及配置)