VSFTPD 530 Login Incorrect The solution to this problem:
VSFTPD is Vsftpd:version 3.0.2, the user of the system is Nologin
1. Check the/etc/vsftpd/vsftpd.conf configuration
local_enable=YES pam_service_name=vsftpd //**ubuntu是pam_service_name=ftp**userlist_enable=YES
2, modify/etc/vsftpd/ftpusers
vim /etc/pam.d/vsftpd //你会发现,拒绝ftpusers里面的用户 auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed
Ftpusers inside is the FTP default user, if you want to system users, the user is removed from the Ftpusers file.
[[email protected] vsftpd]# cat /etc/vsftpd/ftpusers Users that are not allowed to login via ftp root bin #daemon //删除掉就能登录了 adm lp sync
。。。。。。。。。 Omitted.........
Note here, do not change the/etc/pam.d/vsftpd inside the deny to allow, or you build your own users will be reported 530 Login incorrect
3, restart VSFTPD
/etc/init.d/vsftpd start
VSFTPD 530 Login Incorrect address