So I am rebuilding a server from Ubuntu 12.04 to Ubuntu 14.04; not doing the upgrade path because I would rather build from scratch in this case. I have installed Munin as I have done before in Ubuntu 12.04 like this:
sudo aptitude install munin munin-node
Then I enabled the Apache modules for Munin like this:
sudo ln -s /usr/share/munin/plugins/apache_accesses /etc/munin/plugins/apache_accesses
sudo ln -s /usr/share/munin/plugins/apache_processes /etc/munin/plugins/apache_processes
sudo ln -s /usr/share/munin/plugins/apache_volume /etc/munin/plugins/apache_volume
Then I restarted the Munin node like this:
sudo service munin-node restart
And waited the requisite 5-10 minutes to get data and related graphs generated. And happily the graphs showed up! But unhappily, all the values were -nan
, meaning somehow the data was not being processed by Munin; see screenshot below:
Usually this means Munin is having problems reaching the localhost’s Apache service-status
page, but checking that URL on the system with Lynx shows everything works fine:
lynx http://localhost/server-status
So I am stumped as to what might have happened. Did a full system restart and 100% no improvement. What could be happening?