由于工作需要,连接hadoop节点需要ssh-key,此外github也需要ssh-key,以后可能有更多的地方需要ssh-key,因此有必要解决本地多ssh-key问题。
通常情况下,ssh-key只在~/.ssh/目录下面,多个ssh-key时,我们需要区别出不同的key密钥和公钥。(我们可以取不同名解决这个问题)
由于有多个ssh-key,因此需要配置好每个ssh-key所对应的用途。具体操作为:
第一步 配置用户名和邮箱
git config --global user.name "用户名"
git config --global user.email "邮箱"
第二步 生成SSH-Key的同时指定保存的文件名
ssh-keygen -t rsa -f ~/.ssh/id_rsa.oschina -C "email"
第三步 新增并配置config文件
touch ~/.ssh/config
贴上我的配置
git config --global user.name "用户名"
git config --global user.email "邮箱"
第二步 生成SSH-Key的同时指定保存的文件名
ssh-keygen -t rsa -f ~/.ssh/id_rsa.oschina -C "email"
第三步 新增并配置config文件
touch ~/.ssh/config
贴上我的配置