How to Install Nagios 4.1.1 on Ubuntu
Nagios is an open source, effective monitoring system. It empowers associations to recognize and resolve IT foundation issues before they affect critical business processes. Nagios has ability of monitoring application, services, entire IT infrastructure. Nagios will be configured to monitor a few aspects of your local system (CPU load, disk usage, etc.)
This article will help you to install and configure Nagios on CentOS, RHEL and Fedora system.
Nagios and the plugins will be install in /usr/local/nagios
Step 1: Install Dependencies
We have to installed all require packages first. Use the following commands to install all require packages.
# sudo apt-get install wget apache2 apache2-utils php5 libapache2-mod-php5 build-essential libgd2-xpm-dev
Step 2: Create new User & Group
Create a new user account and group for nagios and assign a password. After creating new user and group for nagios now assign both the nagios user and the apache user to the group.
# useradd -m nagios # passwd nagios # groupadd nagcmd # usermod -a -G nagcmd nagios # usermod -a -G nagcmd www-data
Step 2: Download & Extract Nagios Core
Download the source code of Nagios Core latest versions from official site( https://www.nagios.org/download/ ). After download the source file extract that archive. Also you can download it using following commands.
# cd /opt # wget http://download.techoism.com/nagios-4.1.1.tar.gz # tar xvf nagios-4.1.1.tar.gz
Step 3: Compile and Install Nagios Core
Now, first we configure Nagios Core and to do as such we have to go to Nagios directory and run configure file.
# cd nagios-4.1.1 # ./configure --with-command-group=nagcmd
After configuring we need to Compile and install all the binaries. Run the Nagios configure script, passing the name of the group you made before like so:
# make all # make install
Install binaries, init script, sample config files and set permissions on the external command directory.
# make install-init # make install-config # make install-commandmode
Step 4: Customize Configuration
Edit the /usr/local/nagios/etc/objects/contacts.cfg config file with your editor and change the email address associated with the nagiosadmin contact definition to receiving alerts.
# vi /usr/local/nagios/etc/objects/contacts.cfg
Step 5: Configure the Web Interface
Install the Nagios web config file using following command:
# make install-webconf
Now we will create nagios configuration file in /etc/apache2/sites-enabled/ location.
# sudo vim /etc/apache2/sites-enabled/nagios.conf
ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin" <Directory "/usr/local/nagios/sbin"> Options ExecCGI AllowOverride None Order allow,deny Allow from all AuthName "Restricted Area" AuthType Basic AuthUserFile /usr/local/nagios/etc/htpasswd.users Require valid-user </Directory> Alias /nagios "/usr/local/nagios/share" <Directory "/usr/local/nagios/share"> Options None AllowOverride None Order allow,deny Allow from all AuthName "Restricted Area" AuthType Basic AuthUserFile /usr/local/nagios/etc/htpasswd.users Require valid-user </Directory>
Now, we will be create a password for “nagiosadmin” user. Use following command to create password:
# htpasswd -s -c /usr/local/nagios/etc/htpasswd.users nagiosadmin
Restart Apache to make the new settings take effect.
# service apache2 restart
Step 6: Compile and Install Nagios Plugin
Download & Extract the Nagios plugins source code and compile it.
# cd /opt # wget http://www.nagios-plugins.org/download/nagios-plugins-2.0.3.tar.gz # tar xvf nagios-plugins-2.0.3.tar.gz # cd nagios-plugins-2.0.3 # ./configure --with-nagios-user=nagios --with-nagios-group=nagios # make # make install
Step 7: Start Nagios
Add Nagios to the list of system services and have it automatically start when the system boots.
# ln -s /etc/init.d/nagios /etc/rcS.d/S99nagios
Verify the sample Nagios configuration files.
/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
If there are no errors, start Nagios service.
# service nagios start
Step 8: Login to the Web Interface
You should now be able to access the Nagios web interface at the URL below.
http://server-ip/nagios/
Enjoy it!
You might also need to:
sudo mkdir /usr/local/nagios/var/rw
sudo chmod nagios:nagios /usr/local/nagios/rw