ubuntu開啟SSH服務

2022-08-21 20:36:13 字數 851 閱讀 4866

ssh分客戶端openssh-client和openssh-server

假如你想登陸其它的機子,那麼至少你的機子要先安裝openssh-client(ubuntu有預設安裝,假設沒有則sudo 

apt-get

install openssh-client),其二是對方機子安裝並開啟了openssh-server(sudo

apt-get install openssh-server),我們須要確認下sshserver是否啟動了:

ps -e |grep ssh

當看到sshd那說明ssh-server已經啟動了。

若沒有則能夠這樣啟動:sudo

/etc/init.d/ssh start 或者 service ssh start

ssh-server配置檔案位於/etc/ssh/sshd_config。在這裡能夠定義ssh的服務port,預設port是22。你能夠自定義成其它port號,如222。

然後重新啟動ssh服務:

sudo 

/etc/init.d/ssh stop

sudo /etc/init.d/ssh start

本機使用下面方式登陸ssh:

ssh 

[email protected]

username為192.168.123.112

機器上的使用者(root或者其它賬號),須要輸入password。

Ubuntu開啟ssh服務

sudo apt get install openssh server sudo apt get install openssh client 然後確認sshserver是否啟動了 ps e grep ssh 如果只有ssh agent那ssh server還沒有啟動,需要 etc init.d s...

ubuntu開啟SSH服務

ssh分客戶端openssh client和openssh server 如果你只是想登陸別的機器的ssh只需要安裝openssh client ubuntu有預設安裝,如果沒有則sudo apt get install openssh client 如果要使本機開放ssh服務就需要安裝openss...

Ubuntu開啟ssh服務

網上有很多介紹在ubuntu下開啟ssh服務的文章,但大多數介紹的方法測試後都不太理想,均不能實現遠端登入到ubuntu上,最後分析原因是都沒有真正開啟ssh server服務。最終成功的方法如下 sudo apt get install openssh server ubuntu預設安裝了open...