美文网首页程序员
Linux && Mac 管理多个SSH 密钥

Linux && Mac 管理多个SSH 密钥

作者: zengjie_dev | 来源:发表于2016-04-25 00:54 被阅读0次

    1. 通过 $ ssh-keygen -t rsa 生成密钥

    2. 生成过程需要设置不同的文件名,最终在~/.ssh目录中生成不同的配置文件。

    3. 通过ssh-add ./ssh/xxx  (密钥部分)添加到ssh-key 代理中

    4. 将公钥xxx.pub上传到网站或者后台中。

    5. 配置./ssh/config文件 增加如下示例:

    Host test-ssh

        Hostname xxx.com

        User your_name

        IdentityFile ~/.ssh/xxx

    以后通过域名 xxx.com的ssh或者git都会自动通过 ~/.ssh/xxx进行验证

    相关文章

      网友评论

        本文标题:Linux && Mac 管理多个SSH 密钥

        本文链接:https://www.haomeiwen.com/subject/hccvhttx.html