3

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?

Jon Topper
  • 802
  • 9
  • 17

5 Answers5

2

you can use manual fencing for testing. search for fence_manual in this doc

this will not disable fencing, but nothing will happen when you not want to.

Christian
  • 4,645
  • 2
  • 23
  • 27
2

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/

Matt Simmons
  • 20,218
  • 10
  • 67
  • 114
1

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

dyasny
  • 18,482
  • 6
  • 48
  • 63
1

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.

user9517
  • 114,104
  • 20
  • 206
  • 289
saurap
  • 11
  • 1
1

You just put:

FENCE_JOIN="no"

into /etc/sysconfig/cman

hidden_4003
  • 164
  • 3