在linux中新增ftp使用者

2021-06-09 13:17:43 字數 790 閱讀 4633

在linux中新增ftp用,並設定相應的許可權,操作步驟如下:

1、環境:ftp為vsftp。被限制使用者名為test。被限制路徑為/home/test。

2、建使用者:在root使用者下:

useradd -d /home/test test     //增加使用者test,並制定test使用者的主目錄為/home/test

passwd  test    //為test設定密碼

3、更改使用者相應的許可權設定:

限定使用者不能telnet,只能ftp: usermod -s /sbin/nologin test  

usermod -s /sbin/bash test    //使用者恢復正常

更改使用者的主目錄:  usermod -d /test test          

4、限制使用者只能訪問/home/test,不能訪問其他路徑

修改/etc/vsftpd/vsftpd.conf如下:  

chroot_list_enable=yes             //限制訪問自身目錄

# (default follows)

chroot_list_file=/etc/vsftpd/vsftpd.chroot_list 

編輯 vsftpd.chroot_list檔案,將受限制的使用者新增進去。

5、如果需要允許使用者修改密碼,但是又沒有telnet登入系統的許可權:

usermod  -s /usr/bin/passwd test   //使用者telnet後將直接進入改密介面

很簡單滴啦。總結總結。。。

**:

linux 中新增刪除ftp使用者

在linux中新增ftp使用者,並設定相應的許可權,操作步驟如下 1.環境 ftp為vsftp。被設定使用者名為test。被限制路徑為 home test 2.建立建使用者 在root使用者下 useradd d home test m test 增加使用者test,並制定test使用者的主目錄為 ...

在linux中新增ftp使用者,並設定相應的許可權

在linux中新增ftp使用者,並設定相應的許可權,操作步驟如下 1 環境 ftp為vsftp。被限制使用者名為test。被限制路徑為 home test 2 建使用者 在root使用者下 useradd d home test test 增加使用者test,並制定test使用者的主目錄為 home...

在linux中新增ftp使用者,並設定相應的許可權

在linux中新增ftp使用者,並設定相應的許可權,操作步驟如下 1 環境 ftp為vsftp。被限制使用者名為test。被限制路徑為 home test 2 建使用者 在root使用者下 useradd d home test test 增加使用者test,並制定test使用者的主目錄為 home...