Skip to content

Instantly share code, notes, and snippets.

@devpopol
Created April 30, 2012 18:37
Show Gist options
  • Save devpopol/2560885 to your computer and use it in GitHub Desktop.
Save devpopol/2560885 to your computer and use it in GitHub Desktop.
Installing cluster glue on CentOS 6.2
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