Chinaunix首页 | 论坛 | 博客
  • 博客访问: 173194
  • 博文数量: 114
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1116
  • 用 户 组: 普通用户
  • 注册时间: 2015-11-09 09:49
文章分类

全部博文(114)

文章存档

2016年(74)

2015年(40)

我的朋友

分类: 服务器与存储

2015-12-11 10:29:51

我们在日常工作中会遇到公司有个,还有些自己的一些项目放在github上。这样就导致我们要配置不同的-key对应不同的环境。下面我们来看看具体的操作:


1,生成一个公司用的SSH-Key

1
$ ssh -keygen -t rsa -C "youremail@yourcompany.com” -f ~/. ssh /id-rsa


在~/.ssh/目录会生成id-rsa和id-rsa.pub私钥和公钥。 我们将id-rsa.pub中的内容粘帖到公司gitlab服务器的SSH-key的配置中。


2,生成一个github用的SSH-Key

1
$ ssh -keygen -t rsa -C "youremail@your.com” -f ~/. ssh /github-rsa

在~/.ssh/目录会生成github-rsa和github-rsa.pub私钥和公钥。 我们将github-rsa.pub中的内容粘帖到github服务器的SSH-key的配置中。


3,添加私钥

1
2
3
4
5
6
7
8
$ ssh -add ~/. ssh /id_rsa $ ssh -add ~/. ssh /id_rsa_github
#如果执行ssh-add时提示"Could not open a connection to your authentication agent",可以现执行命令:
$ ssh -agent bash
#然后再运行ssh-add命令。
# 可以通过 ssh-add -l 来确私钥列表
$ ssh -add -l
# 可以通过 ssh-add -D 来清空私钥列表
$ ssh -add -D

4,修改配置文件


在 ~/.ssh 目录下新建一个文件

1
touch config

添加内容:

1
2
3
4
5
6
7
8
9
10
# gitlab
Host gitlab.com
HostName gitlab.com
PreferredAuthentications publickey
IdentityFile ~/. ssh /id_rsa
# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/. ssh /id_rsa_github

5,目录结构

Git实现多ssh key配置的照片

6,测试

1
$ ssh -T git@github.com

输出

Hi stefzhlg! You've successfully authenticated, but GitHub does not provide shell access.

就表示成功的连上github了.也可以试试链接公司的gitlab.

如果想深入体验LINUX系统的新手,也可以先下载一个方德Linux软件中心试用一下。
免费下载地址:

阅读(648) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~