The system is a Debian 7 (Wheezy), 64bit.
Here's how you setup Munin with lighttpd quickly:
1) Install Munin & Munin-node:
Code: Select all
$ apt-get install munin munin-node
Code: Select all
$ apt-get install lighttpd
With Apache, installing Munin automatically configures Apache to forward "/munin" to "/var/cache/munin/www/", but that's not happening with lighttpd
Just go to "/var/www" and create a symbolic link to "/var/cache/munin/www/":
Code: Select all
$ cd /var/www
$ ln -s /var/cache/munin/www/ munin
That's it.