Re: No Data Showing (configured
Posted: Sun Jan 17, 2016 10:12 pm
I had a similar problem, it had to do with the python components. Here are the steps I took to resolve it:
Then after about 15 minutes the graphs should start to appear. You can watch the RRD file to make sure it's being updated, it's in your source directory (this example has a source called "pfSense"):
watch 'ls -al /usr/local/nagiosna/var/pfSense/'
Does this fix your problem?
Code: Select all
mkdir /usr/local/lib64/python2.6/site-packages_backup
mv /usr/local/lib64/python2.6/site-packages/*rrd* /usr/local/lib64/python2.6/site-packages_backup
mv /usr/lib/python2.6/site-packages/rrdtool-0.1.1-py2.6-linux-x86_64.egg /usr/lib/python2.6/site-packages/rrdtool-0.1.1-py2.6-linux-x86_64.egg_backup
cd /tmp
wget https://assets.nagios.com/downloads/nagios-network-analyzer/2/nagiosna-2r1.0.tar.gz
tar xzf nagiosna-2r1.0.tar.gz
cd /tmp/nagiosna/
tar xf rrdtool-1.4.9.tar.gz
cd rrdtool-1.4.9
./configure --prefix=/usr/local --disable-perl --enable-python
make
make install
service nagiosna restartwatch 'ls -al /usr/local/nagiosna/var/pfSense/'
Does this fix your problem?