无法在 centos7 上使用 pacemaker 验证集群节点

failed to authenticate cluster nodes using pacemaker on centos7

我正在尝试在 centos 7 上使用 pacemaker 配置两个节点(node1 和 node2 HA 集群。我在两个节点上执行了以下步骤

yum install pcs

systemctl enable pcsd.service pacemaker.service corosync.service

systemctl start pcsd.service

passwd hacluster

之后在node1上执行下面的命令

pcs cluster auth node1 node2

我低于错误

Error: Unable to communicate with node2 Error: Unable to communicate with node1

我还验证了两个节点都在侦听端口 2224,并且还使用 telnet 验证两个节点能够在 2224 上相互连接。

需要帮助。

使用 FQDN 而不是主机名后问题得到解决(node1.demo.in,node2.demo.in)。下面的命令工作正常。

pcs cluster auth node1.demo.in node2.demo.in

不知道具体原因。有什么想法吗?