美文网首页
ssh免密码登录

ssh免密码登录

作者: nzjcnjzx | 来源:发表于2020-01-13 23:52 被阅读0次

    第一步

    ssh-keygen
    生成pub.rsa.key

    第二步

    ssh-copy-id -p port user@remote
    默认为22端口 只需输入 ssh-copy-id root@xxx.xxx.xxx.x

    第三步

    在本机.ssh 目录下新建config文件
    写入如下内容
    ssh设置别名

    Host  别名
           HostName 服务ip
           User  用户名
           Port  端口
    
    Host  myServer
           HostName 122.xx.xx.x
           User  root
           Port  22
    设置完之后只需要输入
    ssh myServer 就可以登录远程服务器
    

    相关文章

      网友评论

          本文标题:ssh免密码登录

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