Last active
December 13, 2015 21:38
-
-
Save dlutzy/4978949 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
#install script for ganglia monitor node | |
#using Vladimir Vuksan's RPMs | |
yum -y install rrdtool mod_php php-gd make | |
chkconfig httpd on | |
/etc/init.d/httpd start | |
cd /lib64 | |
ln -s libexpat.so.1 libexpat.so.0 | |
rpm -ivh --nodeps \ | |
http://dlutzy-pub.s3-website-us-west-1.amazonaws.com/libconfuse-2.6-3.el6.x86_64.rpm \ | |
http://vuksan.com/centos/RPMS/x86_64/ganglia-gmond-3.5.0-1.x86_64.rpm \ | |
http://vuksan.com/centos/RPMS/x86_64/libganglia-3.5.0-1.x86_64.rpm \ | |
http://vuksan.com/centos/RPMS/x86_64/ganglia-gmetad-3.5.0-1.x86_64.rpm \ | |
http://dlutzy-pub.s3-website-us-west-1.amazonaws.com/ganglia-web-3.5.7-1.noarch.rpm | |
#then hit http://yourserver/ganglia | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment