标签:ssh
假设A要登陆B免密码
在A生成钥匙对
ssh-keygen -t rsa 没有要放在特殊位置的话直接连续两次回车
2.把A生成的id_rsa.pub 拷贝到B,(在/root/.ssh下)
3.在B上把id_rsa.pub 导入到/root/.ssh/authorized_keys里面
cat id_rsa.pub >>/root/.ssh/authorized_keys
没有.ssh目录的话,yum install openssh -y
没有scp命令的话,yum install openssh-client -y
本文出自 “单季稻” 博客,请务必保留此出处http://linzb.blog.51cto.com/5192423/1761665
标签:ssh
原文地址:http://linzb.blog.51cto.com/5192423/1761665