美文网首页
免密登陆服务器

免密登陆服务器

作者: Good_Nine9 | 来源:发表于2020-08-08 13:01 被阅读0次

    系统 Mac

    cd ~
    cd .ssh/
    cat id_rsa.pub 
    

    出现的就是自己的 public key

    然后给服务器的信息配置一下

    Host engineer
        HostName 服务ip
        Port 端口
        User 用户
        PreferredAuthentications publickey
        IdentityFile /Users/用户/.ssh/id_rsa
    

    最后登陆服务器

    cd ~
    cd .ssh/
    vim authorized_keys 
    

    把刚刚的public key 复制进去

    应该就好了

    相关文章

      网友评论

          本文标题:免密登陆服务器

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