为 vsftpd 服务器创建 ftp 用户到特定目录

为 vsftpd 服务器创建 ftp 用户到特定目录

我需要为 vsftpd 服务器创建 ftp 用户,以便将其作为特定目录的 root 权限(仅限于该帐户)

例子/var/www/abc should be the /(root) to test_user

答案1

取消注释/在文件中插入以下行/etc/vsftpd/vsftpd.conf

chroot_local_user=YES

并使用主文件夹创建您的用户/var/www/abc

useradd -d /var/www/abc -s /sbin/nologin test_user

相关内容