mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
8c066764d9
Some users report munin is broken because munin and munin-node disagree about the name of the machine. I think this occurs if hostname (used by munin-node) reports a different name than PRIMARY_HOSTNAME (which we put in the munin config). Hard-code PRIMARY_HOSTNAME in munin-node.conf. Fixes #474. See https://discourse.mailinabox.email/t/404-not-found-on-admin-munin/623/24.
37 lines
919 B
Bash
Executable File
37 lines
919 B
Bash
Executable File
#!/bin/bash
|
|
# Munin: resource monitoring tool
|
|
#################################################
|
|
|
|
source setup/functions.sh # load our functions
|
|
source /etc/mailinabox.conf # load global vars
|
|
|
|
# install Munin
|
|
apt_install munin munin-node
|
|
|
|
# edit config
|
|
cat > /etc/munin/munin.conf <<EOF;
|
|
dbdir /var/lib/munin
|
|
htmldir /var/cache/munin/www
|
|
logdir /var/log/munin
|
|
rundir /var/run/munin
|
|
tmpldir /etc/munin/templates
|
|
|
|
includedir /etc/munin/munin-conf.d
|
|
|
|
# a simple host tree
|
|
[$PRIMARY_HOSTNAME]
|
|
address 127.0.0.1
|
|
|
|
# send alerts to the following address
|
|
contacts admin
|
|
contact.admin.command mail -s "Munin notification ${var:host}" administrator@$PRIMARY_HOSTNAME
|
|
contact.admin.always_send warning critical
|
|
EOF
|
|
|
|
# ensure munin-node knows the name of this machine
|
|
tools/editconf.py /etc/munin/munin-node.conf -s \
|
|
host_name=$PRIMARY_HOSTNAME
|
|
|
|
# generate initial statistics so the directory isn't empty
|
|
sudo -u munin munin-cron
|