如何生成SSH key

作者: Gevin | 来源:发表于2014-08-28 17:01 被阅读94122次

    如何生成SSH key

    本文载于Gevin的博客
    原文地址:http://blog.igevin.info/posts/generate-ssh-key-for-git/

    SSH key提供了一种与GitHub通信的方式,通过这种方式,能够在不输入密码的情况下,将GitHub作为自己的remote端服务器,进行版本控制

    步骤

    • 检查SSH keys是否存在
    • 生成新的ssh key
    • 将ssh key添加到GitHub中
    如何生成SSH KEY如何生成SSH KEY

    1. 检查SSH keys是否存在

    输入下面的命令,如果有文件id_rsa.pubid_dsa.pub,则直接进入步骤3将SSH key添加到GitHub中,否则进入第二步生成SSH key

    ls -al ~/.ssh
    # Lists the files in your .ssh directory, if they exist
    

    2. 生成新的ssh key

    第一步:生成public/private rsa key pair
    在命令行中输入ssh-keygen -t rsa -C "your_email@example.com"

    默认会在相应路径下(/your_home_path)生成id_rsaid_rsa.pub两个文件,如下面代码所示

    ssh-keygen -t rsa -C "your_email@example.com"
    # Creates a new ssh key using the provided email
    Generating public/private rsa key pair.
    Enter file in which to save the key (/your_home_path/.ssh/id_rsa):
    

    第二步:输入passphrase(本步骤可以跳过)

    设置passphrase后,进行版本控制时,每次与GitHub通信都会要求输入passphrase,以避免某些“失误”

    Enter passphrase (empty for no passphrase): [Type a passphrase]
    Enter same passphrase again: [Type passphrase again]
    

    sample result:

    Your identification has been saved in /your_home_path/.ssh/id_rsa.
    Your public key has been saved in /your_home_path/.ssh/id_rsa.pub.
    The key fingerprint is:
    #01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your_email@example.com
    

    第三步:将新生成的key添加到ssh-agent中:

    # start the ssh-agent in the background
    eval "$(ssh-agent -s)"
    Agent pid 59566
    ssh-add ~/.ssh/id_rsa
    

    3. 将ssh key添加到GitHub中

    用自己喜欢的文本编辑器打开id_rsa.pub文件,里面的信息即为SSH key,将这些信息复制到GitHub的Add SSH key页面即可

    不同的操作系统,均有一些命令,直接将SSH key从文件拷贝到粘贴板中,如下:

    mac

    pbcopy < ~/.ssh/id_rsa.pub
    # Copies the contents of the id_rsa.pub file to your clipboard
    

    windows

    clip < ~/.ssh/id_rsa.pub
    # Copies the contents of the id_rsa.pub file to your clipboard
    

    linux

    sudo apt-get install xclip
    # Downloads and installs xclip. If you don't have `apt-get`, you might need to use another installer (like `yum`)
    
    xclip -sel clip < ~/.ssh/id_rsa.pub
    # Copies the contents of the id_rsa.pub file to your clipboard
    

    本文首载于Gevin's blog

    相关文章

      网友评论

      • 三棵柚子:还可以
      • 菁欣陌陌:解决了我的问题,写的很清楚
      • EdwdChen:想请问一下 ssh-agent 是做什么作用的呢? 是对 id_rsa 做了什么修改吗?
      • fightingMie::smile: 实用贴 ;又学到了
      • 李乾坤David:写得非常好奥!
      • 程旭媛:请问为什么我每隔一段时间提交代码执行git pull origin master的时候就会出现Permission denied (publickey).
        fatal: Could not read from remote repository.

        Please make sure you have the correct access rights
        and the repository exists.这几行呢?这是我重装系统之后出现的问题,现在是最新的mac系统,重装之前执行git pull这个命令没有出现过这个问题,每次都需要执行“ssh-add ~/.ssh/id_rsa”这个命令才可以解决,有没有彻底解决这个问题的方法呢?
        5a38f7481378:@程旭媛 重新加次 看看, 之前遇到过. 后来搜到 ssh-add 这种只是 临时存储, 每次重启就没了, 加-K 相当于 加入keychain 管理.
        程旭媛:@无尾鸟 请问这是什么原因导致的呢?
        5a38f7481378:ssh-add -K xxxx
      • 牛油果大虾:可以的
      • Ling912:有一定的学习价值
      • Ling912:建议,在执行add动作的时候,如果报
        Could not open a connection to your authentication agent.
        则先执行这句:
        eval `ssh-agent`
      • 4a0da5f24f31:简明,很有帮助!感谢
      • Shumin_Wu:o还有 你的个人站挂了
        Gevin:@Shumin_Wu 我的博客地址已经更新,多谢提醒
      • Shumin_Wu:写的真棒。 看github,pbcopy < ~/.ssh/id_rsa.pub指令原来是copy到粘贴板中。
        Sudoke:@Shumin_Wu 恩,这一句学习了,赞一个。

      本文标题:如何生成SSH key

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