Setting up Nagios on Ubuntu 16.04 (Xenial)


The best guide I found for installing Nagios on Ubuntu 16.04 (Xenial) was How To Install Nagios on Ubuntu 16.04, with only a couple of amendments. First of all, it’s not using the absolute latest version of Nagios or the Nagios plugins. And secondly, it’s missing a command in terms of untarring the downloaded Nagios.

So, as of this writing, the first part of step #4 should be:

cd /tmp
wget -c https://assets.nagios.com/downloads/nagioscore/releases/nagios-4.2.1.tar.gz
tar -zxvf nagios-4.2.1.tar.gz
cd /tmp/nagios-4.2.1
and, similarly, the third part of step #4 should be:
cd /tmp
wget -c https://nagios-plugins.org/download/nagios-plugins-2.1.3.tar.gz
tar xzf nagios-plugins-2.1.3.tar.gz
cd /tmp/nagios-plugins-2.1.3
./configure –with-nagios-user=nagios –with-nagios-group=nagios
make
make install

One response to “Setting up Nagios on Ubuntu 16.04 (Xenial)”

Leave a Reply to Betty Ann Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.