530ThisFTPserverisanonymousonlyvsftp server logon Failure Solution
Http://blog.csdn.net/pipisorry/article/details/39647931
An error occurred while logging on to vsftp with a local user:
root@ubuntu:~#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
root@ubuntu:~#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.