ssh-key金鑰 常用來管理我們的git倉庫,gitlab、github都是很常見的。它可以避免我們重複的輸入密碼,提高開發效率。
下面就來說一說,如何管理多個ssh-key,下面我們以gitlab和github作為示例:
檢視ssh目錄
開啟命令列視窗,檢視是否存在~/.ssh
目錄
$ cd ~/.ssh複製程式碼
如果不存在,就新建一個.ssh目錄
$ mkdir ~/.ssh複製程式碼
後面講到的ssh-key金鑰檔案 就會配置~/.ssh
生成多個ssh-key金鑰
下面我們將生成 github的ssh-key金鑰 和 gitlab的ssh-key金鑰
進入~/.ssh
目錄
$ cd ~/.ssh複製程式碼
1. 生成github的ssh-key金鑰
$ ssh-keygen -t rsa -C "對應的郵箱地址"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/herrylo/.ssh/id_rsa): id_github_rsa
Enter passphrase (empty for no passphrase): Enter
same passphrase again:
Your identification has been saved in /home/schacon/.ssh/id_github_rsa.
Your public key has been saved in /home/schacon/.ssh/id_github_rsa.pub.
The key fingerprint is:
d0:82:24:8e:d7:f1:bb:9b:33:53:96:93:49:da:9b:e3 schacon@mylaptop.local
複製程式碼
在第二行市別直接Enter回車哦!那樣會在 ~/.ssh
目錄下直接生成預設的金鑰檔案id_rsa
,我們需要管理自己的ssh金鑰檔案,需要修改檔名,檔名可以自己定,不過最好是簡單明瞭。如
Enter file in which to save the key (/Users/herrylo/.ssh/id_rsa): id_github_rsa
複製程式碼
當然後面的就可以直接回車了!
2. 生成gitlab的ssh-key金鑰
$ ssh-keygen -t rsa -C "對應的郵箱地址"
Generating public/private rsa key pair.
Enter file in which to save the key (/Users/herrylo/.ssh/id_rsa): id_gitlab_rsa
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/schacon/.ssh/id_gitlab_rsa.
Your public key has been saved in /home/schacon/.ssh/id_gitlab_rsa.pub.
The key fingerprint is:
d0:82:24:8e:d7:f1:bb:9b:33:53:96:93:49:da:9b:e3 schacon@mylaptop.local
複製程式碼
同上:
Enter file in which to save the key (/Users/herrylo/.ssh/id_rsa): id_gitlab_rsa
複製程式碼
3.檢視生成的ssh-key金鑰檔案目錄
$ ls ~/.ssh
複製程式碼
上面的 id_rsa_github.pub
、id_rsa_gitlab.pub
檔案即是github與gitlab需要的公鑰檔案
vi 檢視檔案內容,複製檔案內容到gitlab和github的ssh配置中心,新增ssh key
$ vi id_rsa_github.pub
$ vi id_rsa_gitlab.pub
複製程式碼
ssh 金鑰配置基本完成,上面我們生成了兩個金鑰,將他們新增到了gitlab和github的ssh配置中心。現在還需要對兩個ssh金鑰進行管理。
管理 多個ssh金鑰
config
檔案是管理多個ssh key金鑰的配置檔案,下面我們需要修改config
檔案
使用vi編輯檢視config
檔案, 檔案修改成如下配置即可:
在config
檔案新增上圖中的配置, 記得根據自己的檔案位置和使用者名稱、gitlab地址修改。好的,下面我們來試試github是否可以連線成功。
好的,連線成功哦!!??,大功告成!
當然ssh不只有這個用處,還可以連線遠端伺服器哦。
ssh訪問遠端伺服器
還可以使用使用ssh訪問遠端伺服器,因為它足夠安全,原理我就不多說了,在後面我會將參考文件給大家,感興趣的可以研究哦。下面需要修改的依然是config
配置檔案
$ vi config
複製程式碼
上面以我的VPS搬瓦工為例:
Host 是自定義的,可以修改,而其中的 HostName 和 Port 是你的伺服器IP和埠號
配置完之後儲存退出, 在命令列視窗輸入:
$ ssh VPS複製程式碼
隨後會提示輸入伺服器訪問密碼,輸入正確,即可訪問遠端伺服器。當然這是在mac系統中,如果是window系統可以使用Xshell訪問。
好了,以上就是平時我使用到的ssh了,管理git的sshkey、訪問遠端伺服器。
歡迎留言,如果有不對的地方希望可以指正!!
參考文章: