假设A、B都是linux服务器,现在想在A上面通过ssh不需要输入密码访问B。操作步骤如下:
在A服务器上执行 ssh-keygen -t rsa #生成密钥
scp /root/.ssh/id_rsa.pub #将公共密钥复制到要访问的服务器机器上去
本文共 170 字,大约阅读时间需要 1 分钟。
假设A、B都是linux服务器,现在想在A上面通过ssh不需要输入密码访问B。操作步骤如下:
在A服务器上执行 ssh-keygen -t rsa #生成密钥
scp /root/.ssh/id_rsa.pub #将公共密钥复制到要访问的服务器机器上去
转载于:https://blog.51cto.com/rooftop64/778431