本博客翻譯自bash
www.tecmint.com/ssh-passwor…服務器
ssh遠程登錄服務器,須要密碼驗證,頻繁輸入實在是麻煩。創建SSH Password-less(無密碼登錄)就能夠很方便的登錄。 假定咱們有兩臺機器本地與遠程less
本地: SSH Client : 192.168.0.12
dom
遠程: SSH Remote Host : 192.168.0.11
ssh
打開terminal, 輸入以下命令:ide
ssh-keygen -t rsa
ui
效果以下spa
[tecmint@tecmint.com ~]$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/tecmint/.ssh/id_rsa): [Press enter key]
Created directory '/home/tecmint/.ssh'.
Enter passphrase (empty for no passphrase): [Press enter key]
Enter same passphrase again: [Press enter key]
Your identification has been saved in /home/tecmint/.ssh/id_rsa.
Your public key has been saved in /home/tecmint/.ssh/id_rsa.pub.
The key fingerprint is:
5f:ad:40:00:8a:d1:9b:99:b3:b0:f8:08:99:c3:ed:d3 tecmint@tecmint.com
The key's randomart image is: +--[ RSA 2048]----+ | ..oooE.++| | o. o.o | | .. . | | o . . o| | S . . + | | . . . o| | . o o ..| | + + | | +. | +-----------------+ 複製代碼
過程動圖翻譯
接着在terminal輸入以下命令, 從本地 192.168.0.12 鏈接遠程服務器 192.168.0.11 此例中使用sheena做爲用戶名,並將.ssh創建在其名下3d
ssh sheena@192.168.0.11 mkdir -p .ssh
效果以下
[tecmint@tecmint ~]$ ssh sheena@192.168.0.11 mkdir -p .ssh
The authenticity of host '192.168.0.11 (192.168.0.11)' can't be established. RSA key fingerprint is 45:0e:28:11:d6:81:62:16:04:3f:db:38:02:la:22:4e. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.168.0.11' (ECDSA) to the list of known hosts. sheena@192.168.0.11's password: [Enter Your Password Here]
複製代碼
過程動圖
使用ssh從本地上傳本地的公鑰(id_rsa.pub) 上傳到服務器192.168.0.11 在用戶sheena的.ssh文件夾下, 並命名爲authorized_keys
命令以下:
cat .ssh/id_rsa.pub | ssh sheena@192.168.0.11 'cat >> .ssh/authorized_keys'
效果以下
[tecmint@tecmint ~]$ cat .ssh/id_rsa.pub | ssh sheena@192.168.0.11 'cat >> .ssh/authorized_keys'
sheena@192.168.1.2's password: [Enter Your Password Here] 複製代碼
過程動圖
命令以下
ssh sheena@192.168.0.11 "chmod 700 .ssh; chmod 640 .ssh/authorized_keys"
效果以下
[tecmint@tecmint ~]$ ssh sheena@192.168.0.11 "chmod 700 .ssh; chmod 640 .ssh/authorized_keys"
sheena@192.168.0.11's password: [Enter Your Password Here] 複製代碼
過程動圖
嘗試輸入: [tecmint@tecmint ~]$ ssh sheena@192.168.0.11
過程動圖