Munin

From wiki
Revision as of 08:28, 9 January 2017 by Vincent (talk | contribs) (Better SSH instructions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


Warning Warning: This page is a work in progress and is not completed. Important informations might be missing or wrong.

Prerequisite

For the master server:

For a node:

  • Possibility to connect in SSH from the master server

Master Server

Install

$ sudo apt install munin spawn-fcgi

Webserver

TODO

SSH

If you want to collect data from nodes on other machines, you need to generate an SSH key to connect to them.

Simply run the following command and keep the default answers (key location: /var/lib/munin/.ssh/id_ed25519, no password)

$ sudo -u munin ssh-keygen -t ed25519 -o -a 100

Node

Install

$ sudo apt install munin-node

Configure SSH

Whitelist

If SSH users are whitelisted, edit file /etc/ssh/sshd_config and add munin to the list AllowUsers.

$ sudo systemctl reload ssh.service

Configure munin User

$ sudo mkdir /var/lib/munin
$ sudo chown munin: /var/lib/munin
$ sudo -u munin mkdir /var/lib/munin/.ssh