dir:作为client
rs1和rs2:作为
1、dir:192.168.131.132
ssh-keygen
首先定义的是私钥的存放路径。接着是定义公钥的存放路径。
1、直接回车 ——》 y ——》不输入密码,回车
2、cd /root/.ssh/ 下有2个文件
3、
在 rs1: 192.168.131.110
和 rs2: 192.168.131.131 上执行
(1)mkdir /root/.ssh
(2)chmod 600 /root/.ssh
(3)cd /root/.ssh
vim authorized_key ——》 之前做了密钥登录,所以key没有s
复制粘贴 dir 机器上的 id_rsa.pub 的 内容 上去
(4)关掉防火墙
查看状态:sestatus ——》 disabled
没有?
(a)setenforce 0
永久性关闭: vim /etc/selinux/config
SELINUX=disabled
(b)iptables -F
service iptables save
4、dir 输入: ssh 192.168.131.110
或者 ssh 192.168.131.131
ps: ssh not found ——》 yum install -y openssh-clients
时间: 2024-12-10 15:37:43