Hello.
I'm trying to make some VMs HA managed, but when I hit "activate" in the "HA" tab I get this error message:
config validation failed: /usr/sbin/ccs_config_validate: line 186: 674512 Aborted ccs_config_dump > $tempfile (500)
I have run into problems like this before, and tried to run ccs_config_validate manually against the config however it says the config is fine? I used this command:
ccs_config_validate -f /etc/pve/cluster.conf.new
Bellow is my working cluster.conf:
Here is the non working config:
Is this just a simple formatting issue?
--Will
I'm trying to make some VMs HA managed, but when I hit "activate" in the "HA" tab I get this error message:
config validation failed: /usr/sbin/ccs_config_validate: line 186: 674512 Aborted ccs_config_dump > $tempfile (500)
I have run into problems like this before, and tried to run ccs_config_validate manually against the config however it says the config is fine? I used this command:
ccs_config_validate -f /etc/pve/cluster.conf.new
Bellow is my working cluster.conf:
Code:
<?xml version="1.0"?>
<cluster config_version="5" name="x">
<cman keyfile="/var/lib/pve-cluster/corosync.authkey"/>
<fencedevices>
<fencedevice agent="fence_ipmilan" ipaddr="x.x.x.x" lanplus="1" login="ADMIN" name="ironworks-ipmi" passwd="x" power_wait="5"/>
<fencedevice agent="fence_ipmilan" ipaddr="x.x.x.x" lanplus="1" login="ADMIN" name="forge-ipmi" passwd="x" power_wait="5"/>
</fencedevices>
<quorumd interval="8" label="do-prod.fortress" tko="10" votes="1">
<heuristic interval="3" program="ping 10.1.69.10 -c1 -w1" score="1" tko="4"/>
<heuristic interval="3" program="ip addr | grep eth0 | grep -q UP" score="2" tko="3"/>
</quorumd>
<totem token="54000"/>
<clusternodes>
<clusternode name="ironworks" nodeid="1" votes="1">
<fence>
<method name="1">
<device name="ironworks-ipmi"/>
</method>
</fence>
</clusternode>
<clusternode name="forge" nodeid="2" votes="1">
<fence>
<method name="1">
<device name="forge-ipmi"/>
</method>
</fence>
</clusternode>
</clusternodes>
<rm/>
</cluster>
Here is the non working config:
Code:
<?xml version="1.0"?>
<cluster config_version="6" name="do-prod">
<cman keyfile="/var/lib/pve-cluster/corosync.authkey"/>
<fencedevices>
<fencedevice agent="fence_ipmilan" ipaddr="x" lanplus="1" login="ADMIN" name="ironworks-ipmi" passwd="x" power_wait="5"/>
<fencedevice agent="fence_ipmilan" ipaddr="x" lanplus="1" login="ADMIN" name="forge-ipmi" passwd="x" power_wait="5"/>
</fencedevices>
<quorumd interval="8" label="do-prod.fortress" tko="10" votes="1">
<heuristic interval="3" program="ping 10.1.69.10 -c1 -w1" score="1" tko="4"/>
<heuristic interval="3" program="ip addr | grep eth0 | grep -q UP" score="2" tko="3"/>
</quorumd>
<totem token="54000"/>
<clusternodes>
<clusternode name="ironworks" nodeid="1" votes="1">
<fence>
<method name="1">
<device name="ironworks-ipmi"/>
</method>
</fence>
</clusternode>
<clusternode name="forge" nodeid="2" votes="1">
<fence>
<method name="1">
<device name="forge-ipmi"/>
</method>
</fence>
</clusternode>
</clusternodes>
<rm>
<pvevm autostart="1" vmid="144"/>
</rm>
</cluster>
Is this just a simple formatting issue?
--Will
Last edited: