Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
在解決問題之道上不斷前行
只是一個小筆記,通常ubuntu建置完後ssh連線的權限是關閉的,如果真需要打開此權限,要進行以下步驟。
首先編輯/etc/ssh/sshd_config這個文件(注意大小寫)
在裡面可以找到此字串,通常是註解狀態
#Permitrootlogin prohibit-password
移除註解並且改為yes
Permitrootlogin yes
完成以上設定後,再重新啟動ssh服務
$ /etc/init.d/ssh restart