Debian Tutorials

Debian Tutorials


Step by step tutorials showing you how to install and configure various applications and services on Debian based Linux distros.

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories


Installing and configuring vsftpd for local unix users

Ástþór IPÁstþór IP

vsftpd is a secure, fast and stable FTP server. In this tutorial we’ll install the server allow local unix to access their home directories.

1. Install vsftpd

apt-get install vsftpd

2. Configure (pico /etc/vsftpd.conf)

By default, vsftpd only allows anonymous connections. Change the following config variables to enable local users to connect, allow writing and chroot users to home directories.

anonymous_enable=NO
local_enable=YES
write_enable=YES
chroot_local_user=YES

3. Restart vsftpd

/etc/init.d/vsftpd restart

Comments 0
There are currently no comments.