管理Git生成多个ssh key及报错Bad configuration option解决方法-2018-10-06

1.管理Git生成多个ssh key

生成两个key

生成key的命令ssh-keygen -t rsa -C “Your Email Address” -f  'Your Name',-f后面给的生成key的名字,如果没有指定新的名字,那么每次ssh-keygen生成的名字相同,就会发生覆盖同名文件的情况的发生。

生成两个key后,添加到对应服务器的ssh kyes管理设置中。

本地添加私钥

本地添加私钥名命令ssh-add ~/.ssh/Your Key Name,如果出现“Could not open a connection to your authentication agent”的问题,可以执行命令ssh-agent bash,再运行添加命令。另外,可用通过

ssh-add -l查看私钥列表

ssh-add -D来清空私钥列表

3.一点说明

以上的我采用的是oschina的码云和github的两种kye的结合体,其中每段最后的IdentityFile跟着是你自己ssh key的名字,不要搞错了。

最后就是测试咯

oschina的测试方法ssh -T [email protected];成功收到的回复为“Welcome to Git@OSC,‘Your Name’ ”

github的测试方法ssh -T [email protected];成功收到的回复为”Hi ’Your Name‘ ! You’ve successfully authenticated, but GitHub does not provide shell access.“

借鉴文章

git 配置多个SSH-Key

管理git生成的多个ssh key

---------------------本文来自 来不及解释了快上车 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/u012365926/article/details/52293036?utm_source=copy


这是我修改配置文件时的操作:

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

2.添加以下内容

# Jiyu-Xie

    Host github.com

  HostName github.com

  PreferredAuthentications publickey

  IdentityFile ~/.ssh/id_rsa

  User Jiyu-Xie

# Ploso

    Host ploso.github.com

  HostName github.com

  PreferredAuthentications publickey

  IdentityFile ~/.ssh/id_rsa_ploso

  User Ploso

结果出现报错:

/c/Users/Administrator/.ssh/config: line 5: Bad configuration option: \343\200\200\343\200\200hostname

/c/Users/Administrator/.ssh/config: line 7: Bad configuration option: \343\200\200\343\200\200preferredauthentications

/c/Users/Administrator/.ssh/config: line 9: Bad configuration option: \343\200\200\343\200\200identityfile

/c/Users/Administrator/.ssh/config: line 11: Bad configuration option: \343\200\200\343\200\200user

/c/Users/Administrator/.ssh/config: line 19: Bad configuration option: \343\200\200\343\200\200hostname

/c/Users/Administrator/.ssh/config: line 21: Bad configuration option: \343\200\200\343\200\200preferredauthentications

/c/Users/Administrator/.ssh/config: line 23: Bad configuration option: \343\200\200\343\200\200identityfile

/c/Users/Administrator/.ssh/config: line 25: Bad configuration option: \343\200\200\343\200\200user

/c/Users/Administrator/.ssh/config: terminating, 8 bad configuration options


管理Git生成多个ssh key及报错Bad configuration option解决方法-2018-10-06_第1张图片
在config里配了两个host对应的账号,结果使用其中一个账号时控制台报如图所示的错


2.多git账号配置后报错Bad configuration option解决方法


问题原因

~/.ssh/config文件缩进有问题

解决方案

检查该配置文件,把每一行配置前的空格都去掉

需要注意的是,如果config文件中只配置一个host对应的账号的话,缩进是无所谓的,都可以正常使用。但是有多个配置的话,配在后面的账号就会受影响。所以都修改一下,不要有空格。

---------------------本文来自 庭然 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/lili625/article/details/77833684?utm_source=copy


附我~/.ssh/config文件修改好后的例子:

# Jiyu-Xie

Host github.com

HostName github.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/id_rsa

User Jiyu-Xie


# Ploso

Host ploso.github.com

HostName github.com

PreferredAuthentications publickey

IdentityFile ~/.ssh/id_rsa_ploso

User Ploso


管理Git生成多个ssh key及报错Bad configuration option解决方法-2018-10-06_第2张图片

3.添加私钥时发生如下错误

ssh-add ~/.ssh/id_rsa

输出错误: Could not open a connection to your authentication agent

解决此问题的方法是执行下

eval `ssh-agent -s`

然后再次执行ssh-add ~/.ssh/id_rsa就可以顺利执行了


----------来源:git "ssh-add ~/.ssh/id_rsa" Could not open a connection to your authentication agent问题解决 - 为程序员服务

http://outofmemory.cn/code-snippet/37443/git-ssh-add-.ssh-id_rsa-Could-not-open-a-connection-to-your-authentication-agent

你可能感兴趣的:(管理Git生成多个ssh key及报错Bad configuration option解决方法-2018-10-06)