LINUX學習(二)遠端登入

2021-08-20 04:23:37 字數 902 閱讀 7431

linux系統中是通過ssh服務實現的遠端登入功能,預設ssh服務埠號為 22。

安裝ssh:

yum install ssh
啟動ssh:

service sshd start
登入遠端伺服器:

ssh -p 

50022my@

127.0

.0.1

輸入密碼:my@

127.0

.0.1

:

-p 後面是埠

my 是伺服器使用者名稱

127.0.0.1 是伺服器 ip

回車輸入密碼即可登入

安裝ssh:

yum install ssh
啟動ssh:

service sshd start
登入遠端伺服器:

ssh -p 

50022my@

127.0

.0.1

輸入密碼:my@

127.0

.0.1

:

-p 後面是埠

my 是伺服器使用者名稱

127.0.0.1 是伺服器 ip

回車輸入密碼即可登入

登陸實驗室伺服器方法:

要有需要連線的伺服器的ip,埠號,伺服器上的賬戶和密碼

1.用實驗室內網的情況下,連線到伺服器199

1).ssh [email protected]

2).yes

3).password

2.用外網的情況下,連線到伺服器199

1).ssh [email protected]

2).password

(此時連線到icig)

3).ssh brain 199

linux 學習系列 Linux 遠端登入

linux一般作為伺服器使用,而伺服器一般放在機房,你不可能在機房操作你的linux伺服器。這時我們就需要遠端登入到linux伺服器來管理維護系統。linux系統中是通過ssh服務實現的遠端登入功能,預設ssh服務埠號為 22。window系統上 linux 遠端登入客戶端有securecrt,pu...

遠端登入 Linux

遠端登入linux主機還是很常用,就個人而言平日常用的主要有telnet ssh和svn 接下來還得做點配置,vi etc xinetd.d telnet 找到disable yes 將yes 改為no disable no 然後再重啟下xinetd服務 etc init.d xinetd rest...

遠端登入Linux

登入前提 1.從windows能夠ping通linux 2.關閉linux防火牆 root localhost desktop etc init.d iptables stop 登陸使用軟體 1.putty 命令列模式 ip位址檢視 埠預設為22,位址協議預設為ssh 選 是 繼續執行,輸入遠端控制...