Knowledge Base
Configuring Vsftpd FTP Server on Ubuntu or Debian
You can configure a vsftpd FTP Server on Ubuntu/Debian by following these instructions:
- The default vsftpd configuration file is /etc/vsftpd.conf. You need to edit this file using a text editor such as VI using the following command:
$ sudo vi /etc/vsftpd.conf
- To allow local users to log in via ftp, add the following line to the vsftpd configuration file:
local_enable=YES
- If you would like to allow users to upload files, add the following:
write_enable=YES
- For security you may restrict local users to their home directories. To do that, add the following to the file:
chroot_local_user=YES
- Save and close the file.
- Restart vsftpd service using the following command:
$ sudo service vsftpd restart
Congratulations, you have configured vsftpd FTP Server on Ubuntu/Debian.
* Your feedback is too short