Nagios Graph not identifying RRDtool [Solved]

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
msachikanta
Posts: 58
Joined: Tue Jan 03, 2012 2:35 am

Nagios Graph not identifying RRDtool [Solved]

Post by msachikanta »

Hi,

I have installed Nagiosgraph tool. but while running ./install.pl --check-prereq and getting RRDs... ***FAIL***, but RRDtool is installed properly. Please find the below details for reference. Can anyone help me on this..? Thanks in advance.

[root@apl05038simvt1 nagiosgraph-1.4.4]# ./install.pl --check-prereq
checking required PERL modules
Carp...1.04
CGI...3.15
Data::Dumper...2.121_08
File::Basename...2.74
File::Find...1.10
MIME::Base64...3.07
POSIX...1.09
RRDs... ***FAIL***
Time::HiRes...1.9717
checking optional PERL modules
GD...2.45
checking nagios installation
found nagios at /usr/local/nagios/bin/nagios
checking web server installation
found apache at /usr/sbin/httpd

*** one or more problems were detected!

Let me know in case of any more information required regarding this issue so that I can provide the same.

Regards,
Sachikanta
Last edited by msachikanta on Wed Jun 20, 2012 7:43 am, edited 1 time in total.
msachikanta
Posts: 58
Joined: Tue Jan 03, 2012 2:35 am

Re: Nagios Graph not identifying RRDtool [Solved]

Post by msachikanta »

Issue got resolve after following the below steps for rrdtool installation.

# tar -zxf rrdtool-1.x.xx.tar.gz
# cd rrdtool-1.x.xx
# ./configure && make && make install
# cd perl-shared # Version 1.0.x
# cd bindings/perl-shared # Version 1.2.x
# make clean
# perl Makefile.PL && make && make install
# echo "/usr/local/rrdtool-1.x.xx/lib" >> /etc/ld.so.conf
# /sbin/ldconfig

Regards,
Sachikanta
agriffin
Posts: 876
Joined: Mon May 09, 2011 9:36 am

Re: Nagios Graph not identifying RRDtool [Solved]

Post by agriffin »

Glad you got it working, and thanks for posting the solution too!
msachikanta
Posts: 58
Joined: Tue Jan 03, 2012 2:35 am

Re: Nagios Graph not identifying RRDtool [Solved]

Post by msachikanta »

Always welcome... :)
Locked