Ubuntu開啟ssh服務遠端登入

Curtis_發表於2019-03-18

在Ubuntu 16.04 server安裝的時候,沒有勾選openssh的安裝,這樣就導致安裝好之後無法用ssh了。

下面介紹一下Ubuntu 16.04怎麼開啟ssh吧。

一、開啟ssh:

 

1、安裝openssh-server:

直接輸入命令:

sudo apt-get install openssh-server

 2、檢查是否安裝成功:

sudo ps -e |grep ssh   (或:dpkg -l | grep ssh (未嘗試))

 3、開啟ssh服務:

sudo service ssh start

 

二、xshell連線:

 

可以使用普通賬戶登入。登入後再檢驗是否能登入root賬戶。

如果連線不上,可以關閉Ubuntu的防火牆,再在windows下 ping Ubuntu的ip地址看能否 ping 通。

如若不能,可以嘗試把Ubuntu的聯網方式改為橋接模式。 

 

三、xshell用root賬號登入:

 

 1、修改ssh:

sudo vim /etc/ssh/sshd_config

找到PermitRootLogin prohibit-password一行,改為PermitRootLogin yes 

2、儲存,並重起ssh:

sudo service ssh restart (或:reboot(未嘗試))

3、用XShell使用root使用者登入測試。 

 

參考:https://jingyan.baidu.com/article/e9fb46e15bfd4f7521f7660f.html
 

相關文章