A 免密码登录 B
1.A电脑生成 公钥
执行 ssh-keygen 生成
本来有的可以直接复制
/Users/用户名/.ssh/id_rsa.pub 打开复制内容
2.B电脑上
cd /root/.ssh/
在authorized_keys 文件上 加入 复制的内容 。
搞定
也可以用命令
scp /root/.ssh/id_rsa.pub root@10.2---21:/root/.ssh/authorized_keys
A 免密码登录 B
1.A电脑生成 公钥
执行 ssh-keygen 生成
本来有的可以直接复制
/Users/用户名/.ssh/id_rsa.pub 打开复制内容
2.B电脑上
cd /root/.ssh/
在authorized_keys 文件上 加入 复制的内容 。
搞定
也可以用命令
scp /root/.ssh/id_rsa.pub root@10.2---21:/root/.ssh/authorized_keys