编辑 HA 集群配置 cib.xml

编辑 HA 集群配置 cib.xml

我想编辑位于 centos 6.5 上的集群配置的 pingd,因为地址不再有效,并且我的集群总是因为节点故障而切换到另一个节点。最好的方法是什么?我知道我绝不能直接打开 cib.xml 文件。

[root@PBX1 mojo]# pcs config
Cluster Name: pbx
Corosync Nodes:
 pbx1 pbx2
Pacemaker Nodes:
 pbx1 pbx2

Resources:
 Master: master_drbd
  Meta Attrs: master-max=1 master-node-max=1 clone-max=2 clone-node-max=1 notify=true
  Resource: drbd_drbd0 (class=ocf provider=linbit type=drbd)
   Attributes: drbd_resource=drbd0
   Operations: monitor interval=10s (drbd_drbd0-monitor-interval-10s)
 Clone: Connectivity
  Resource: p_ping (class=ocf provider=pacemaker type=ping)
   Attributes: host_list="10.66.4.4 10.66.4.5 10.66.4.11 10.66.4.252 10.66.4.253 10.66.4.254" multiplier=1000 dampen=5s
   Operations: monitor interval=1s (p_ping-monitor-interval-1s)
 Group: PBX_IP
  Resource: ClusPBXIP (class=ocf provider=heartbeat type=IPaddr2)
   Attributes: ip=10.66.6.200 nic=bond0.2 cidr_netmask=24
   Operations: monitor interval=30s (ClusPBXIP-monitor-interval-30s)
  Resource: ClusNetIP (class=ocf provider=heartbeat type=IPaddr2)
   Attributes: ip=10.66.5.203 nic=bond0.3 cidr_netmask=24
   Operations: monitor interval=30s (ClusNetIP-monitor-interval-30s)
  Resource: ClusPBXIP-R (class=ocf provider=heartbeat type=Route)

我想用其他 IP 更改主机列表。您知道哪种方法最好、最安全吗?我说得对,我必须在 cib.xml 中更改,而不是在其他地方?10x

答案1

你说你不想cib.xml直接编辑,这是绝对正确的。

由于您正在使用pcs来管理集群配置,因此您应该这样做:

将当前 cib 转储到文件:

# pcs cluster cib cib-to-fix.txt

在您喜欢的任何编辑器中打开该文件并对参数进行适当的更改host_list

# vi ./cib-to-fix.txt

对更改满意后,请验证并将其推回集群:

# pcs cluster verify cib-to-fix.txt
# pcs cluster cib-push cib-to-fix.txt

如果在运行验证时遇到任何错误,则说明您在 cib 中引入了语法错误,应在推送之前修复并重新验证。

希望有帮助!

相关内容