what is ftp username and password for vsftpd?

I installed VSFTPD on ubuntu 12.04, and now how do I log in? Which username and password do I use? I tried using root and the password for root, but that didn't work.

1

3 Answers

If you installed with the default vsftpd configuration, then you should be able to login using any valid local user account on the target machine. If that doesn't work, then check that local_enable=YES is set in the /etc/vsftpd.conf file and restart the vsftpd service.

0

DO NOT TURN ON anonymous_enable=YES
It might be provide security defect on you ftp enterance.

  1. type adduser YOURNEWUSERNAME for create new identity on your system.

  2. setup user list optionsuserlist_enable=YES userlist_deny=NO

  3. create vsftpd.userlist and add your user name to file.

It must make you available to login with your id and password

Try turning on anonymous_enable=YES in /etc/vsftpd/vsftpd.conf and logging in as "anonymous" with any email.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like