美文网首页
mac免密登陆Linux

mac免密登陆Linux

作者: UncleBryan | 来源:发表于2018-06-01 14:35 被阅读0次

    1.在本地~/.ssh文件夹下生成公钥和私钥

    ssh-keygen -t rsa -b 4096 -C "描述信息"
    

    2.将公钥copy到远程服务器~/.ssh文件夹下

    scp ~/.ssh/id_rsa.pub root@ip:~/.ssh
    

    3.把远程服务器上的/.ssh/id_rsa.pub(公钥信息)内容追加到/.ssh/authorized_keys文件中

    cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
    

    4.远程登陆

    ssh root@ip
    

    注意:
    请确保authorized_keys等文件有读写的能力,记得授权

    相关文章

      网友评论

          本文标题:mac免密登陆Linux

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