I have a 2 node cluster using a iscsi quorum device. When I reboot or shutdown the quorum device, the two nodes fence each other off, or in some situations only one node gets fenced. This is odd because both nodes can still see each other which means they should still have quorum.
I am using a heuristic within my cluster.conf which I am unsure if that is the cause. I am still trying to pin this down.
I am running with dual fence devices.
I am using a heuristic within my cluster.conf which I am unsure if that is the cause. I am still trying to pin this down.
I am running with dual fence devices.
Code:
<?xml version="1.0"?>
<cluster config_version="6" name="testprox">
<cman expected_votes="3" keyfile="/var/lib/pve-cluster/corosync.authkey"/>
<quorumd allow_kill="1" interval="3" label="cluster_qdisk" tko="10">
<heuristic interval="3" program="multipath -ll | grep sd* | grep active" score="3" tko="5"/>
</quorumd>
<totem token="54000"/>
<fencedevices>
<fencedevice agent="fence_ipmilan" ipaddr="10.80.8.92" lanplus="1" login="Administrator" name="ipmi1" passwd="VQVZBCJQ" power_wait="5"/>
<fencedevice agent="fence_ipmilan" ipaddr="10.80.8.93" lanplus="1" login="Administrator" name="ipmi2" passwd="VSNBIYWD" power_wait="5"/>
<fencedevice agent="fence_apc" ipaddr="10.80.8.94" login="device" name="apc" passwd="medent1"/>
</fencedevices>
<clusternodes>
<clusternode name="testprox1" nodeid="1" votes="1">
<fence>
<method name="acp">
<device name="apc" port="1,2" secure="on"/>
</method>
<method name="1">
<device name="ipmi1"/>
</method>
</fence>
</clusternode>
<clusternode name="testprox2" nodeid="2" votes="1">
<fence>
<method name="acp">
<device name="apc" port="3,4" secure="on"/>
</method>
<method name="1">
<device name="ipmi2"/>
</method>
</fence>
</clusternode>
</clusternodes>
<rm>
<pvevm autostart="1" vmid="100"/>
</rm>
</cluster>