1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| cd /tmp wget http://hg.linux-ha.org/heartbeat-STABLE_3_0/archive/7e3a82377fa8.tar.bz2 tar xjf 7e3a82377fa8.tar.bz2 cd Heartbeat-3-0-7e3a82377fa8/ ./bootstrap export CFLAGS="$CFLAGS -I/usr/local/heartbeat/include -L/usr/local/heartbeat/lib" ./configure --prefix=/usr/local/heartbeat make && make install cp doc/ha.cf /usr/local/heartbeat/etc/ha.d/ cp doc/haresources /usr/local/heartbeat/etc/ha.d/ cp doc/authkeys /usr/local/heartbeat/etc/ha.d/ cp heartbeat/init.d/heartbeat /etc/rc.d/init.d/ chkconfig --add heartbeat chkconfig heartbeat on chmod 600 /usr/local/heartbeat/etc/ha.d/authkeys sed -i 's#/usr/lib/ocf#/usr/local/heartbeat/usr/lib/ocf#g' /usr/local/heartbeat/etc/ha.d/shellfuncs sed -i 's#/usr/lib/ocf#/usr/local/heartbeat/usr/lib/ocf#g' /usr/local/heartbeat/usr/lib/ocf/lib//heartbeat/ocf-shellfuncs sed -i 's#/usr/lib/ocf#/usr/local/heartbeat/usr/lib/ocf#g' /usr/local/heartbeat/etc/ha.d/resource.d//hto-mapfuncs
|