1.環境:ftp為vsftp。被設定使用者名為test。被限制路徑為/home/test
2.建立建使用者:在root使用者下:
# useradd -s /sbin/nologin test
# echo "111" | passwd --stdin test
3.限制使用者只能訪問/home/test,不能訪問其他路徑
修改/etc/vsftpd/vsftpd.conf如下:
chroot_list_enable=yes
local_root=/var/www/html
# (default follows)
chroot_list_file=/etc/vsftpd/chroot_list
allow_writeable_chroot=yes
編輯 vsftpd.chroot_list檔案,將受限制的使用者新增進去,每個使用者名稱一行
改完配置檔案,重啟vsftpd伺服器
# echo test >> /etc/vsftpd/chroot_list
# systemctl restart vsftpd
5.如果需要允許使用者修改密碼,但是又沒有telnet登入系統的許可權:
# usermod -s /usr/bin/passwd test
6.如果要刪除使用者,用下面**:
# userdel -r test
Linux新增FTP使用者並設定許可權
在linux中新增ftp使用者,並設定相應的許可權,操作步驟如下 1 環境 ftp為vsftp。被限制使用者名為test。被限制路徑為 home test 2 建使用者 在root使用者下 useradd d home test g ftp test 增加使用者test,並制定test使用者的主目錄...
Linux新增FTP使用者並設定許可權
在linux中新增ftp使用者,並設定相應的許可權,操作步驟如下 1 環境 ftp為vsftp。被限制使用者名為test。被限制路徑為 home test 2 建使用者,命令列狀態下,在root使用者下 執行命令 useradd d home test test 增加使用者test,並制定test使...
Linux新增FTP使用者並設定許可權
在linux中新增ftp使用者,並設定相應的許可權,操作步驟如下 1 環境 ftp為vsftp。被限制使用者名為test。被限制路徑為 home test 2 建使用者,命令列狀態下,在root使用者下 執行命令 useradd d home test test 增加使用者test,並制定test使...