Hello
I have 3 Servers
2 with IPMI KVM Super Micro
1 with DRAC6 Enterprise Dell Server
I understand I have setup cluster first and then setup fencing but I am just stuck with few things may be you guys can help me out.
I have 3 Servers
2 with IPMI KVM Super Micro
1 with DRAC6 Enterprise Dell Server
I understand I have setup cluster first and then setup fencing but I am just stuck with few things may be you guys can help me out.
Code:
<?xmlversion="1.0"?><cluster name="clustername" config_version="6">
<cman keyfile="/var/lib/pve-cluster/corosync.authkey">
</cman>
<fencedevices>
<fencedevice agent="fence_ipmilan" name="ipmi1" lanplus="1" ipaddr="X.X.X.X" login="ipmiusername" passwd="ipmipassword" power_wait="5"/>
<fencedevice agent="fence_ipmilan" name="ipmi2" lanplus="1" ipaddr="X.X.X.X" login="ipmiusername" passwd="ipmipassword" power_wait="5"/>
<fencedevice agent="fence_drac5" cmd_prompt="admin1->" ipaddr="X.X.X.X" login="root" name="node1-drac" passwd="XXXX" secure="1"/> </fencedevices> <clusternodes> <clusternode name="host1" votes="1" nodeid="1"> <fence> <method name="1"> <device name="ipmi1"/> </method> </fence> </clusternode> <clusternode name="host2" votes="1" nodeid="2"> <fence> <method name="1"> <device name="ipmi2"/> </method> </fence> </clusternode> <clusternode name="host3" votes="1" nodeid="3"> <fence> <method name="1"> <device name="ipmi3"/> </method> </fence> </clusternode></clusternodes><rm> <service autostart="1" exclusive="0" name="ha_test_ip" recovery="relocate"> <ip address="192.168.7.180"/> </service></rm> </cluster>
- I realize I have to copy /etc/pve/cluster.conf.new on all nodes
My concern is name ipmi1 & ipmi2 where those name come from are those just generic name or is that something I have to look in my Supermicro Server under IPMI ? and same goes to fence_ipmilan
Also what exactly is
<service autostart="1" exclusive="0" name="ha_test_ip" recovery="relocate">
<ip address="192.168.7.180"/>
</service>
What is HA_TEST_IP and the IP .180 ? Thanks for the WIKI but its not very much clear as which line goes as I don't wanted to make sure it make sense before I start copy and paste as thats not always work.
Thank you for your time.