Linux 设置root用户无密码互访

2022/9/17 5:17:29

本文主要是介绍Linux 设置root用户无密码互访,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在原有集群无密码访问的基础上,将新增节点机器的无密码访问加入集群中,具体步骤如下:

  • 修改/etc/ssh/ssh_config文件

su - root

vim /etc/ssh/ssh_config

将StrictHostKeyChecking修改为no:

StrictHostKeyChecking no

  • 新增机器无密码访问操作

执行ssh-keygen -t rsa命令,当出现”Enter Passphrase“的提示时直接按回车。

[root@rhino130 ~]# ssh-keygen -t rsa

  • 创建新增机器到所有机器的无密码互访

[root@rhino130 ~]# ssh-copy-id rhino130
[root@rhino130 ~]# ssh-copy-id rhino131
[root@rhino130 ~]# ssh-copy-id rhino132
[root@rhino130 ~]# ssh-copy-id rhino133

下面这一步骤不一定要执行

  • 从原机器拷贝~/.ssh/authorized_keys至新增机器

[root@rhino131 ~]# scp ~/.ssh/authorized_keys root@rhino130:~/.ssh/

The authenticity of host 'rhino130 (10.45.150.130)' can’t be established.
ECDSA key fingerprint is SHA256:xk5ycxP8B+faMIDl43V9Ms9fkfrJvfq8KOwwPUzPnYU.
ECDSA key fingerprint is MD5:6b:4d:21:9d:3a:d2:0d:40:ce:fa:c2:f8:b6:a9:69:35. Are you sure you want to continue connecting (yes/no)?yes
Warning: Permanently added 'rhino130,10.45.150.130' (ECDSA) to the list of known hosts.
root@rhino130’s password:
#输入root密码

  • 无密码互访验证

无需输入密码可正常跳转。

[root@rhino130 ~]# ssh rhino131



这篇关于Linux 设置root用户无密码互访的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程