美文网首页
Linux集群ssh免密登陆配置

Linux集群ssh免密登陆配置

作者: renwujie | 来源:发表于2018-08-30 11:21 被阅读0次

三台主机模拟集群

节点

前提

三台主机间要能互相ping通。

SSH免密登陆配置

原理

SSH原理

配置步骤

在每个节点上分别执行以下命令:

ssh-keygen -t rsa                                     #一路回车

ssh-copy-id otherHostname                   #发送公匙到otherHostname,包括本机自己

如果报:ssh-copy-id not found,安装openssh-clients后再执行ssh-copy-id命令。

yum install openssh-clients -y

相关文章

网友评论

      本文标题:Linux集群ssh免密登陆配置

      本文链接:https://www.haomeiwen.com/subject/nvhrwftx.html