关于SSH

码云上有SSH的配置方法
1.生成 sshkey:

ssh-keygen -t rsa -C "[email protected]"  

# Generating public/private rsa key pair...
# 三次回车即可生成 ssh key

2.查看你的 public key
cat ~/.ssh/id_rsa.pub
3.判断是否成功
ssh -T [email protected]

但是如果返回不成功,就没写怎么解决了。
今天研究发现生成的id_rsa可以指定默认名称
ssh-keygen -t rsa -C '[email protected]' -f ~/.ssh/name
多个网站的ssh需要配置config文件

# gitee
Host gitee.com
HostName gitee.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/mayun

# GitLab.com server
Host gitlab.com
RSAAuthentication yes
IdentityFile ~/.ssh/id_rsa


# github
Host github.com
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/github

你可能感兴趣的:(关于SSH)