Friday 5 July 2013

Installing and configuring Ganglia

[Done on CentOS 6.3]
================


Download ganglia latest release from here

Untar
$ tar xvf <your ganglia tar file>


packages you need to install if it asks for any (in my case these are the ones):

pakage 'apr-1' not found
$ ... install apr-devel


package 'libconfuse' not found
download libconfuse package here
manually install by using

$./configure --enable-shared
$make
$make install




package 'libexpat' not found
$..install expat expat-devel

package 'libpcre' not found
$..install pcre-devel

zlib library not configured properly
$..install zlib-devel
nfigure --sysconfdir=/opt/ganglia/ --sbindir=/usr/sbin/ --with-gmetad --enable-static-build CC=/tmp/gcc-4.8.1/rtf/bin/gcc
./configure --sysconfdir=/opt/ganglia/ --sbindir=/usr/sbin/ --with-gmetad --enable-static-build CC=/tmp/gcc-4.8.1/rtf/bin/gcc

No comments:

Post a Comment