FTP : Install Vsftpd2023/07/07 |
Install Vsftpd to configure FTP server to transfer files.
|
|
[1] | Install and Configure Vsftpd. |
root@www:~#
apt -y install vsftpd
root@www:~#
vi /etc/vsftpd.conf # line 31 : uncomment write_enable=YES # line 122, 123 : uncomment (enable chroot) # and add the line to enable writable under the chroot directory chroot_local_user=YES chroot_list_enable=YES allow_writeable_chroot=YES
# line 125 : uncomment (enable chroot list) chroot_list_file=/etc/vsftpd.chroot_list # line 131 : uncomment ls_recurse_enable=YES # add to the end : specify chroot directory # if not specified, users' home directory equals FTP home directory local_root=public_html
root@www:~#
vi /etc/vsftpd.chroot_list # add users you allow to move over their home directory debian
systemctl restart vsftpd |
Sponsored Link |