Settings Up VSFTP on UBUNTU
Here are some instructions for settings up VSFTP on UBUNTU (14.04 LTS).
Assuming you are root
, login and update apt-get
:
apt-get update
apt-get upgrade
Now install VSFTP
apt-get -y install vsftpd
Now you need to make a few edits to /etc/vsftpd.conf
, uncomment, change, or add the following parameters:
Save and exit that file. Now, you shoudl create a new user which will only have access to FTP. I am creating a new user here because my current user is using a private key for login and I have SSH login disabled.
adduser <USERNAME>
Following the prompts UBUNTU gives you.
Finally, lets create a directory for to upload your files to:
Restart the deamon:
sudo service vsftpd restart
Now use your favorite FTP client (FileZilla) or commandline to login and trasfer files.