AWS EC2 Linux | ssh 使用密碼登入

Coar發表於2020-12-21

AWS EC2 Linux | ssh 使用密碼登入

1、使用AWS控制檯建立的金鑰對或者直接通過網頁登入

注意:使用pem私鑰不允許直接登入root使用者,只能登入預設使用者例如:ec2-user ,ubuntu等等

2、建立root密碼

sudo passwd root

3、切換到root使用者

su root

4、修改 sshd_config 檔案

vim /etc/ssh/sshd_config
  • 允許使用密碼登入

    PasswordAuthentication yes
    
  • 允許root使用者登入

    PermitRootLogin yes
    
注意:如果 PermitRootLogin 項找不到自行新增

5、重新啟動ssh服務

systemctl restart sshd

至此大功告成,可以使用ssh直接通過密碼登入

參考:

http://www.unclealan.cn/index.php/system/176.html

https://nachifur.blog.csdn.net/article/details/105399039

相關文章