To prevent munin to run with system boot which
is default. ===================================== /etc/init/munin-node.conf #start on (filesystem and net-device-up IFACE=lo) #stop on runlevel [!2345] /etc/cron.d/munin comment two lines /etc/cron.d/munin-node comment one line To allow munin to run with system boot *(you have to do this) ====================================== /etc/init/munin-node.conf start on (filesystem and net-device-up IFACE=lo) stop on runlevel [!2345] /etc/cron.d/munin comment two lines /etc/cron.d/munin-node comment one line To view munin graph 1. Start service with comand: sut@server:~$ sudo service munin-node start munin-node start/running, process 2112 Then you have to wait for at least 5 minutes for report graphs to be generated. 2. Use firefox, goto http://localhost/munin/ Note: graph will be re-generated every 5 minutes automatically by munin-node |