Distro:Slackware (10.2)
Kernel: 2.4.31
My Munin Page:hxxp://zombie.homeunix.org
Well i installed everything i had no errors of any kind but the weird part was that munin doesn't schedule the damn updates for both graph and html.Here's the result of running munin update manually: hxxp://zombie.homeunix.org/localhost/localhost-cpu-day.png. I am not familiar with using crontab or nice Here's whats in the Munin-cron file:
Code:
#!/bin/sh
[ -x /opt/munin/lib/munin-update ] && /opt/munin/lib/munin-update $@;
[ -x /opt/munin/lib/munin-limits ] && /opt/munin/lib/munin-limits $@;
[ -x /opt/munin/lib/munin-graph ] && nice /opt/munin/lib/munin-graph --cron $@ 2>&1 | while read line; do [ x"$line" = x"*** attempt to put segment in horiz list twice" ] && continue; echo $line; done;
[ -x /opt/munin/lib/munin-html ] && nice /opt/munin/lib/munin-html $@;
Here's my crontab schedule after running munin:
Code:
# Run hourly cron jobs at 47 minutes after the hour:
47 * * * * /usr/bin/run-parts /etc/cron.hourly 1> /dev/null
#
# Run daily cron jobs at 4:40 every day:
40 4 * * * /usr/bin/run-parts /etc/cron.daily 1> /dev/null
#
# Run weekly cron jobs at 4:30 on the first day of the week:
30 4 * * 0 /usr/bin/run-parts /etc/cron.weekly 1> /dev/null
#
# Run monthly cron jobs at 4:20 on the first day of the month:
20 4 1 * * /usr/bin/run-parts /etc/cron.monthly 1> /dev/null