ftp报错vsftpd331Permissiondenied
(2019-07-09 16:59:43)分类: IT |
问题描述:在windows环境,t通过cmd命令行,ftp到远端的一台linux服务器。已知两台机器路由是通的,且无防火墙的限制。但在输入用户名root后,发生如下报错:vsftpd
331 Permission denied
原因是我们 /etc/vsftpd.ftpusers 和 /etc/vsftpd.user_list
禁掉了root这个用户。这时我们需要修改远程服务器上的这两个文件。
(1)/etc/vsftpd.user_list的默认文件(则是表示具体用户)
# vsftpd userlist
# If userlist_deny=NO, only allow users in this file
# If userlist_deny=YES (default), never allow users in this
file, and
# do not even prompt for a password.
# Note that the default vsftpd pam config also checks
/etc/vsftpd.ftpusers
# for users that are denied.
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody
这时我们要在 root 前加上 # 。
(2)/etc/vsftpd.ftpusers 的默认文件(所有可以登录该FTP的用户属性)
# Users that are not allowed to login via ftp
root
bin
daemon
adm
lp
sync
shutdown
halt
mail
news
uucp
operator
games
nobody
这时我们要在 root 前加上 # 。
前一篇:tesseract安装使用
后一篇:皮尔逊相关系数计算