Linux 建立使用者角色並新增ssh登入許可權

2021-09-27 10:59:28 字數 825 閱讀 1132

# 1 root許可權下

useradd /home/xiaoli xiaoli

# 2passwd xiaoli

# 3cd /home && mkdir xiaoli

# 4

chown xiaoli xiaoli/

# 5 切到xiaoli的角色

su xiaoli

# 6cd /home/xiaoli

# then

mkdir .ssh

# then

cd .ssh

# then

vi authorized_keys

# 寫入ssh public key 後

chmod 600 authorized_keys

# 7su root

#then

vi /etc/ssh/sshd_config

# 寫入(daxiong是原有的使用者)

allowusers daxiong xiaoli

# 儲存

/usr/sbin/sshd -t

#沒錯後

service sshd restart

permitrootlogin no

passwordauthentication yes

表示無法使用root登入並使用密碼登入,只能通過ssh key訪問

檢視 所有使用者:

cat /etc/passwd
檢視登入情況

lastlog

Oracle 建立使用者並分配角色

create user 使用者名稱 identified by 密碼 create user 使用者名稱 identified by 密碼 例如,建立乙個普通使用者hern,密碼為123456 create user hern identified by 123456 alter user 使用者名...

linux建立使用者並新增到sudo使用者組中

新伺服器一般只有root使用者,因為linux是乙個多使用者 多工的作業系統,出於安全考慮,一般使用者在作業系統時,不建議使用root使用者,所以需要新增新使用者。useradd 本身是個linux指令碼 在執行useradd 時,會建立乙個使用者名為 的三無使用者 a.無密碼 需要通過passwd...

建立角色,使用者,許可權

引自 瀟灑老烏龜 愛新覺羅.毓華 建立角色,使用者,許可權 示例說明 示例在資料庫pubs中建立乙個擁有表jobs的所有許可權 擁有表titles的select許可權的角色r test 隨後建立了乙個登入l test,然後在資料庫pubs中為登入l test建立了使用者賬戶u test 同時將使用者...