美文网首页
SSH Key的创建与查看

SSH Key的创建与查看

作者: itclimb | 来源:发表于2020-01-10 16:12 被阅读0次
    1. 查看本地是否存在SSH Key
    ls -al ~/.ssh
    
    1. 生成新的SSH Key
    ssh-keygen -t rsa -C"you_email"
    
    1. 生成并添加SSH Key
    ssh-add ~/.ssh/id_rsa
    
    1. 查看SSH Ket
    cat ~/.ssh/id_rsa.pub
    

    相关文章

      网友评论

          本文标题:SSH Key的创建与查看

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