Last active
August 29, 2015 13:56
-
-
Save paul91/8960519 to your computer and use it in GitHub Desktop.
Install credis dependencies for the Redis Collectd plugin on CentOS 6.4
This file contains 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 | |
wget https://credis.googlecode.com/files/credis-0.2.3.tar.gz | |
tar -zxvf credis-0.2.3.tar.gz | |
cd credis-0.2.3 | |
make | |
cp *.h /usr/local/include/ | |
cp *.so /usr/local/lib64/ | |
cp *.a /usr/local/lib64/ | |
cp libcredis.so /usr/lib64/ | |
## Then configure collectd to install the redis plugin | |
# cd collectd-5.4.1 | |
# ./configure --with-redis | |
# make && make install | |
# vim /etc/collectd.conf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment