轉載請註明出處:http://www.houxiurong.com/?post=27 Mac預設是安裝了ssh工具軟體的。 先用mac的 終端工具生成 id_rsa 和id_rsa.pub 秘鑰,生成方式如下: 1、當前用戶目錄下,檢查SSH公鑰 cd ~/.ssh 看看存不存在.ssh,如果存在的 ...
轉載請註明出處:http://www.houxiurong.com/?post=27
Mac預設是安裝了ssh工具軟體的。
先用mac的 終端工具生成 id_rsa 和id_rsa.pub 秘鑰,生成方式如下:
1、當前用戶目錄下,檢查SSH公鑰 cd ~/.ssh看看存不存在.ssh,如果存在的話,掠過下一步;不存在的請看下一步
2、生成SSH公鑰,一路next,密碼設為空 $ ssh-keygen -t rsa -C "[email protected]" # Creates a new ssh key using the provided email Generating public/private rsa key pair. Enter file in which to save the key (/home/you/.ssh/id_rsa):現在你可以看到,在自己的目錄下,有一個.ssh目錄,說明成功了
3、然後在.ssh中可以看到xxx-MacBook-Pro:.ssh xxx$ cd .ssh
xxx-MacBook-Pro:.ssh xxx$ ls
config id_rsa id_rsa.pub known_hosts
xxx-MacBook-Pro:.ssh xxx$ pwd
/Users/xxx/.ssh
4、添加SSH公鑰到github打開github,找到賬戶裡面添加SSH,把id_rsa.pub內容複製到key裡面(註意使用cat id_rsa.pub查看,以防有空格)。
5 測試是否生效使用下麵的命令測試
ssh -T [email protected]當你看到這些內容放入時候,直接yes
The authenticity of host 'github.com (207.97.227.239)' can't be established. RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)?看到這個內容放入時候,說明就成功了。
Hi username! You've successfully authenticated, but GitHub does not provide shell access. 6、下麵是使用代理的方式登錄linux遠程伺服器:ssh [email protected] 如果報錯,說明id_rsa.pub沒有同步到遠程linux伺服器,linux伺服器檢查是否有"[email protected]" 的id_rsa.pub秘鑰(cat看到的內容)。有的話就可以登錄。 7.如果還是登錄不了,在.ssh目錄下創建config文件。輸入如下內容: xxx-MacBook-Pro:.ssh xxx$vim config
Host *
ForwardAgent yes
PasswordAuthentication yes
StrictHostKeyChecking no
HashKnownHosts yes
Compression yes
ServerAliveInterval 60
保存退出,重新登錄即可。。。