Ubuntu ssh伺服器拒絕密碼(使用root登入)

huas_mcfeng發表於2020-12-26

前言

Ubuntu預設使用者名稱是ubuntu,而不是root,現在想使用root登入

開始

1、編輯配置檔案

sudo vim /etc/ssh/sshd_config

修改配置檔案(開放如下設定)

#登陸時間
LoginGraceTime 2m

#允許root登入
PermitRootLogin yes

#嚴格模式
StrictModes yes

#密碼驗證
PasswordAuthentication yes

2、重啟(任意一個)

sudo service ssh restart
sudo reboot

3、開啟root使用者,修改密碼

sudo passwd root

接著輸入密碼,重複密碼。

4、重新使用root登入

相關文章