Created
April 30, 2012 18:37
-
-
Save devpopol/2560885 to your computer and use it in GitHub Desktop.
Installing cluster glue on CentOS 6.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install flex net-snmp OpenIPMI autoconf automake libtool glib2-devel libxml2 libxml2-devel bzip2 bzip2-devel uuidd e2fsprogs-devel e2fsprogs-libs libtool-ltdl-devel libuuid-devel -y | |
WD=/usr/local/src | |
TAR=glue-1.0.9.tar.gz | |
UNTAR_TGT=Reusable-Cluster-Components-glue--glue-1.0.9 | |
mkdir -p $WD | |
cd $WD | |
wget http://hg.linux-ha.org/glue/archive/$TAR | |
tar xf $TAR | |
cd $UNTAR_TGT | |
./autogen.sh | |
./configure \ | |
--prefix=/usr \ | |
--sysconfdir=/etc \ | |
--localstatedir=/var \ | |
--with-ltdl-lib=/usr/lib \ | |
--enable-fatal-warnings=no \ | |
--with-daemon-group=deploy \ | |
--with-daemon-user=deploy \ | |
--libdir=/usr/lib | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment