2021-05-12 14:32:11
SecureCRT無法正常連線Ubuntu 14.0.4.1的解決辦法
問題描述
通過VirtualBox重新安裝了Ubuntu 14.0.4.1 虛擬伺服器,在SercureCRT中使用root帳號連線Ubuntu14.0.4.1的時候,提示“Password Authentication Failed,Please verify that the username and password are correct.”重新輸入密碼,反復檢查多次密碼並重新輸入正確的密碼,還是提示同樣的錯誤。
解決辦法
1、在虛擬機器終端使用root帳號登入,編輯/etc/ssh/sshd_config檔案
vi /etc/ssh/sshd_config
2、找到Authentication設定部分,將PermitRootLogin without-password修改為PermitRootLogin yes,然後儲存。
# Authentication: LoginGraceTime 120 #PermitRootLogin without-password PermitRootLogin yes StrictModes yes
說明:sshd_config是ssh的組態檔,其中有一個選項 PermitRootLogin 用來設定是否允許root使用者登入,預設的without-password表示不允許使用密碼進行全登入認證,yes則是允許root登入。
3、重新啟動ssh服務,既可以通過SercureCRT正常連線伺服器
service ssh restart
用SecureCRT 實現 WIN7 與 Linux 雙向通訊的問題及檔案互傳問題解決 http://www.linuxidc.com/Linux/2014-08/105412.htm
如何使用SecureCRT6.6.2通過SSH方式登入Ubuntu系統 http://www.linuxidc.com/Linux/2011-03/33024p4.htm
SecureCRT 連線 Ubuntu http://www.linuxidc.com/Linux/2013-06/85824.htm
Ubuntu 12.04 + 虛擬機器VMware 9 + Secure CRT + EditPlus 本地C++開發環境搭建 http://www.linuxidc.com/Linux/2013-05/84820.htm
利用SecureCRT在Linux與Windows之間傳輸檔案 http://www.linuxidc.com/Linux/2014-08/105413.htm
Ubuntu 14.10安裝SecureCRT 7.3 http://www.linuxidc.com/Linux/2014-10/108709.htm
相關文章