第一步:在本地機器上使用ssh-keygen產生公鑰私鑰對css
jsmith@local-host$ [Note: You are on local-host here]html
jsmith@local-host$ ssh-keygenapp
Generating public/private rsa key pair.ssh
Enter file in which to save the key (/home/jsmith/.ssh/id_rsa):[Enter key]ide
Enter passphrase (empty for no passphrase): [Press enter key]ui
Enter same passphrase again: [Pess enter key]spa
Your identification has been saved in /home/jsmith/.ssh/id_rsa..net
Your public key has been saved in /home/jsmith/.ssh/id_rsa.pub.3d
The key fingerprint is:unix
33:b3:fe:af:95:95:18:11:31:d5:de:96:2f:f2:35:f9 jsmith@local-host
第二步:用ssh-copy-id將公鑰複製到遠程機器中
jsmith@local-host$ ssh-copy-id -i ~/.ssh/id_rsa.pub remote-host
jsmith@remote-host's password:
Now try logging into the machine, with "ssh 'remote-host'", and check in:
.ssh/authorized_keys
to make sure we haven't added extra keys that you weren't expecting.
注意: ssh-copy-id 將key寫到遠程機器的 ~/ .ssh/authorized_key.文件中
第三步: 登陸到遠程機器不用輸入密碼
jsmith@local-host$ ssh remote-host
Last login: Sun Nov 16 17:22:33 2008 from 192.168.1.2
[Note: SSH did not ask for password.]
jsmith@remote-host$ [Note: You are on remote-host here]
常見問題:
上述是給eucalyptus用戶賦予無密碼登錄的權利
[1]
/usr/bin/ssh-copy-id: ERROR: No identities found
使用選項 -i ,當沒有值傳遞的時候或者 若是 ~/.ssh/identity.pub 文件不可訪問(不存在), ssh-copy-id 將顯示上述的錯誤信息 ( -i選項會優先使用將ssh-add -L的內容)
jsmith@local-host$ ssh-agent $SHELL
jsmith@local-host$ ssh-add -L
The agent has no identities.
jsmith@local-host$ ssh-add
Identity added: /home/jsmith/.ssh/id_rsa (/home/jsmith/.ssh/id_rsa)
jsmith@local-host$ ssh-add -L
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAsJIEILxftj8aSxMa3d8t6JvM79DyBV
aHrtPhTYpq7kIEMUNzApnyxsHpH1tQ/Ow== /home/jsmith/.ssh/id_rsa
jsmith@local-host$ ssh-copy-id -i remote-host
jsmith@remote-host's password:
Now try logging into the machine, with "ssh 'remote-host'", and check in:
.ssh/authorized_keys
to make sure we haven't added extra keys that you weren't expecting.
[Note: This has added the key displayed by ssh-add -L]
[2] ssh-copy-id應注意的三個小地方