Http://blog.csdn.net/pipisorry/article/details/39647931
An error occurred while logging on to vsftp with a local user:
[email protected]:~#ftpftp> open 127.0.0.1Connected to 127.0.0.1.220 (vsFTPd 2.3.5)Name (127.0.0.1:pipi):530 This FTP server is anonymous only.Login failed.ftp> quit
Cause of Logon Failure:
After the vsftp server is installed, local users are not allowed to log on by default. This error occurs and you need to modify the vsftp configuration file.
Solution:
Vim/etc/vsftpd. confVI/etc/vsftpd. conf
Now, the following lines will be commented, uncomment them.
Uncomment the # comment before local_enable = yes and write_enable = yes;
Local_enable = yes-This lets the local users login via FTP
Write_enable = yes-This lets the users upload files
Add # comment before anonymous_enable = Yes
Save and quit the file.
Restart the vsftp service:
/Etc/init. d/vsftpd restart
[email protected]:~#ftpftp> open 127.0.0.1Connected to 127.0.0.1.220 (vsFTPd 2.3.5)Name (127.0.0.1:pipi): pipi331 Please specify the password.Password:230 Login successful.Remote system type is UNIX.Using binary mode to transfer files.ftp>
From: http://blog.csdn.net/pipisorry/article/details/39647931
Ref: 530 This FTP server is anonymous only. Login Failed.
530 This FTP server is anonymous only vsftp server logon Failure Solution