Munin Installation auf examplesite.de
apt-get install munin munin-node munin-plugins-extra
nano /etc/munin/munin.conf
a simple host tree
[spiralmunin.examplesite.de]
nano /etc/apache2/conf.d/munin
Allow from all
Munin und Apache neu starten
/etc/init.d/apache2 restart
/etc/init.d/munin-node restart
Unter http://example.de/munin/index.html
ist der Munin jetzt zu finden
Mit Passwort absichern:
htpasswd -c /etc/munin/munin-htpasswd admin
Passwort eingeben
dann
nano /etc/apache2/conf.d/munin
… und folgende Sektion auskommentieren:
[...]
AuthUserFile /etc/munin/munin-htpasswd
AuthName „Munin“
AuthType Basic
require valid-user
[…]
Starten Sie Apache dann neu:
/etc/init.d/apache2 restart
Quelle: https://www.howtoforge.de/anleitung/serveruberwachung-mit-munin-und-monit-unter-debian-squeeze/
