Whilst I'm developing with RedHat Cluster, I'd like to be able to disable fencing completely. The documentation for this stuff is fairly lacking - can I do this at all, or should I be looking to fake up a null fencing method of some sort?
5 Answers
BLARGH*
If you disable it when you're developing it, you'll regret it when you turn it on and it doesn't behave the way you want it to. Getting fencing to work right is one of, if not the, hardest parts of setting up RHCS. At least it was for me.
I'd recommend biting the bullet and getting that working first before you add any services.
* - because of this: http://www.standalone-sysadmin.com/blog/2009/04/howto-redhat-cluster-suite/
- 20,584
you can backup /sbin/fence* and replace the files with empty scripts, that maybe will just log a received command, but will not do any actual fencing
- 19,257
Thank you dyasny, I used your answer to solve my similar issue. This is how I did it.
[saurap@node1 sbin]# find . -name "fence*" -exec mv {} /fencebackup \;
switch to /fencebackup
[saurap@node1 fencebackup]# ls >sbinnames
then write a script to put the same named empty script on /sbin
#!/bin/bash
for i in `cat sbinnames`
do
cd /sbin
touch $i
echo "#!/bin/bash" > $i
chmod 755 $i
done
Now you have backup of all your fence* scripts under /fencebackup and empty fence* scripts under /sbin.