How to install and configure a monitoring machine for supervision
Contents
Software version | |
---|---|
Operating System | Debian 7 |
Website | {{{infobox_website}}} |
Last Update | 08/08/2013 |
Others |
1 Introduction
The goal of this documentation is how to quickly setup a monitoring machine on Nagios/Shinken :
The idea is to have a machine that nobody never touch once installed. It's always boring to plug a keyboard and a mouse when somethings goes wrong on this kind of machine. That's why we'll see how to setup a minimal installation with all requirements to satisfy those needs.
2 Installation
Install a Debian wheezy with a SSH server and additional utilities but without any X server or Window Manager and create an 'monitoring' user. Once done, connect with SSH on the machine install install those packages :
aptitude |
aptitude install xserver-xorg-core xorg awesome slim iceweasel wmctrl |
We're installing iceweasel to get all dependencies of Firefox satisfied, but as we don't want any Iceweasel update break our configuration, we're going to install firefox :
Now we're ready for the configuration.
3 Configuration
3.1 slim
The configuration of slim is simple : we want to boot awesome without any credentials questions :
3.2 Awesome
Awesome should be configured to launch firefox in fullscreen mode automatically at startup. That's why we need to create a configuration file and then modify it. Login with monitoring user and copy the default config :
mkdir -p .config/awesome cp /etc/xdg/awesome/rc.lua .config/awesome/ |
Then edit the configuration file and modify/add those lines :
As you can see, we're moving the mouse at boot instead of hiding it with slim. It's preferable to have the possibility to use it if we really need it than changing the configuration and reboot instead.
3.3 Firefox
Launch firefox and install a fullscreen extension to autohide everything. You also need to change the "about:config" to set to false this parameter :
browser.sessionstore.resume_from_crash
To finish, disable automatic update and configure the URL with Nagios :
https://nagios.deimos.fr/cgi-bin/status.cgi?host=all&servicestatustypes=28&hoststatustypes=3&serviceprops=42&sorttype=1&sortoption=6&noheader
Or if you prefer Thruk :
https://nagios.deimos.fr/thruk/cgi-bin/status.cgi?serviceprops=42&servicestatustypes=28&sortoption=6&type=detail&sorttype=1&host=all&hostprops=10&minimal=1
3.4 Screensaver
Another interesting thing is to disable the screensaver :-D. And add in xinitrc :
~/.xinitrc |
#!/bin/sh # Disable screen shutdown xset -dpms xset s off # Launch Window Manager exec awesome >> ~/.cache/awesome/stdout 2>> ~/.cache/awesome/stderr |
And create the folder that doesn't exist :
mkdir -p ~/.cache/awesome |
3.5 Powersaving
As I'm a green IT, I don't want the monitoring machine to be up & running 24/24h 7/7j. That's why in the BIOS, I've set it up to start automatically at the wished hour. And I added this in the root crontab to autoswitch off correctly Firefox (using wmctrl is necessary are there is a bug on Firefox with SIGINT for more than 10 years) :
PATH=/usr/bin:/sbin:/bin 0 20 * * * export DISPLAY=:0 ; su - monitoring -c "wmctrl -c firefox" ; halt