3.4. Cluster Configuration File with APC Fence Device
Configuring a cluster with Conga modifies the cluster configuration file. This section shows the cluster configuration file before and after the procedures documented in Section 3.3, “APC Fence Device Configuration Procedure” were performed.
Before the cluster resources and service were configured, the
cluster.conf
file appeared as follows.
<?xml version="1.0"?> <cluster alias="apcclust" config_version="12" name="apcclust"> <fence_daemon clean_start="0" post_fail_delay="0" post_join_delay="3"/> <clusternodes> <clusternode name="clusternode1.example.com" nodeid="1" votes="1"> <fence/> </clusternode> <clusternode name="clusternode2.example.com" nodeid="2" votes="1"> <fence/> </clusternode> <clusternode name="clusternode3.example.com" nodeid="3" votes="1"> </fence> </clusternode> </clusternodes> <cman/> <fencedevices/> <rm> <failoverdomains/> <resources/> </rm> </cluster>
After the cluster resources and service were configured, the
cluster.conf
file appears as follows.
<?xml version="1.0"?> <cluster alias="apcclust" config_version="19" name="apcclust"> <fence_daemon clean_start="0" post_fail_delay="0" post_join_delay="3"/> <clusternodes> <clusternode name="clusternode1.example.com" nodeid="1" votes="1"> <fence> <method name="1"> <device name="apcfence" port="1"/> </method> </fence> </clusternode> <clusternode name="clusternode2.example.com" nodeid="2" votes="1"> <fence> <method name="1"> <device name="apcfence" port="2"/> </method> </fence> </clusternode> <clusternode name="clusternode3.example.com" nodeid="3" votes="1"> <fence> <method name="1"> <device name="apcfence" port="3"/> </method> </fence> </clusternode> </clusternodes> <cman/> <fencedevices> <fencedevice agent="fence_apc" ipaddr="10.15.86.96" login="apclogin" name="apcfence" passwd="apcpword"/> </fencedevices> <rm> <failoverdomains/> <resources/> </rm> </cluster>