美文网首页
配置 SSH 公钥

配置 SSH 公钥

作者: 乂滥好人 | 来源:发表于2021-04-26 09:34 被阅读0次

    生成公钥

    ssh-keygen -m PEM -t rsa -b 4096 -C "your.email@example.com"
    # Creates a new ssh key, using the provided email as a label
    # Generating public/private rsa key pair.
    Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]  // 推荐使用默认地址
    Enter passphrase (empty for no passphrase):   // 此处不填写,回车即可;如果填写密码,则每次使用 SSH 方式推送代码时都会要求输入密码。
    // 输入邮箱后,一直回车即可
    

    若您需要使用多个 SSH 密钥对(您可能同时在多个代码托管平台工作),在提示“Enter file in which to save the key” 时,输入一个新的文件名称就不会覆盖默认的密钥对。

    成功之后显示如下信息:

    Your identification has been saved in /Users/you/.ssh/id_rsa.
    # Your public key has been saved in /Users/you/.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
    

    查看公钥

    在终端输入 open ~/.ssh,用文本编辑器打开id_rsa.pub 文件(此处是生成公钥的默认名称,如果生成公钥时采用了其他名称,打开相对应的文件即可),复制全部内容。


    相关文章

      网友评论

          本文标题:配置 SSH 公钥

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