SSH设置不同网站使用不同密钥文件
常常有很多服务器使用了公用的密钥
但ssh本地默认只有一个id_rsa文件密钥,原来要通过config文件进行判断即可
操作:
编辑 ~/.ssh/config 文件,配置格式示例:
Host github.com www.github.com IdentityFile ~/.ssh/code_github Host xxxx.com www.xxxx.com IdentityFile ~/.ssh/code_xxxx
如此可以设定灵活的密钥管理了
常常有很多服务器使用了公用的密钥
但ssh本地默认只有一个id_rsa文件密钥,原来要通过config文件进行判断即可
操作:
编辑 ~/.ssh/config 文件,配置格式示例:
Host github.com www.github.com IdentityFile ~/.ssh/code_github Host xxxx.com www.xxxx.com IdentityFile ~/.ssh/code_xxxx