Meier, Marcus
2014-05-23 11:07:34 UTC
Hello,
there is an issue with the HOSTLIST value of the stonith vcenter plugin.
The HOSTLIST value specification is bad because it looks like the resource manager splits the configuration by the character "="
The HOSTLIST value looks like this
hostname1=VirtualMachineName1;hostname2=VirtualMachineName2
The only think you will get in the vcenter plugin script as HOSTLIST value is "hostname1" nothing more.
I changed in my system the "=" with ":" and in the vcenter script this part
my @config = split(/=/, $host);
to this
my @config = split(/:/, $host);
After this changes everything is ok and the fencing mechanism works perfect!
I found this problem in SLES11SP2 HA
I am not sure whether this is a good solution to replace the "=" with ":"!?
I am also not sure about whether or not this issue still exist in newer releases of the crm!
In the next days I will check SLES11SP3 HA
Best Regards
Marcus Meier
there is an issue with the HOSTLIST value of the stonith vcenter plugin.
The HOSTLIST value specification is bad because it looks like the resource manager splits the configuration by the character "="
The HOSTLIST value looks like this
hostname1=VirtualMachineName1;hostname2=VirtualMachineName2
The only think you will get in the vcenter plugin script as HOSTLIST value is "hostname1" nothing more.
I changed in my system the "=" with ":" and in the vcenter script this part
my @config = split(/=/, $host);
to this
my @config = split(/:/, $host);
After this changes everything is ok and the fencing mechanism works perfect!
I found this problem in SLES11SP2 HA
I am not sure whether this is a good solution to replace the "=" with ":"!?
I am also not sure about whether or not this issue still exist in newer releases of the crm!
In the next days I will check SLES11SP3 HA
Best Regards
Marcus Meier