Tutorial FTP Ubuntu – Create a FTP user to access home directory only



Tutorial FTP Ubuntu – Create a FTP user to access home directory only

Tutorial FTP Ubuntu - Create a FTP user to access home directory only

how to create a FTP user in ubuntu 18.04, then give acces only home directory.

steps:

1. install ftp server
apt-get install vsftpd

2. add user FTP
sudo adduser ftp_moko

3. open config vsftpd.conf
vi /etc/vsftpd.conf

chroot_local_user=YES
write_enable=YES
allow_writeable_chroot=YES

4. restart FTP server
sudo vsftpd restart

5. try to connect FTP with filezilla

Comments are closed.