How to install NagiosQL on CentOS 7

Share on Social Media

In this configuration guide, you will learn, how to install NagiosSQL on CentOS 7 or other Redhat based Linux OS. #centlinux #linux #nagios

What is NagiosSQL? :

Nagios Core is an free and open source Network, Server and Application monitoring software. A drawback of Nagios Core is that it lacks a configuration tool, therefore we have to edit configurations files using a text editor. Manually editing configuration files is always a headache and highly prone to typo static errors.

NagiosQL is a web based configurator for Nagios Core. It completely integrates with Nagios Core and makes configuration management much easier. We have configured another Nagios configurator: Lilac Reloaded in our previous article.

In this article, we will install NagiosQL on CentOS 7 based Nagios Core server. We are assuming that, you already have basic understanding of Nagios and related technologies. Otherwise, it is recommended that, you should read Learning Nagios – Third Edition (PAID LINK) by Packt Publishing to enhance your knowledge in this area.

System Specification:

We are using the same CentOS 7 virtual machine, on which we have configured Nagios Core.

  • Hostname – nagios-01.example.com
  • IP Address – 192.168.116.143/24
  • Operating System – CentOS 7.6
  • Nagios Version – Nagios Core 4.4
  • NagiosQL Version – 3.4

Install MariaDB on CentOS 7:

NagiosQL requires MariaDB or MySQL database for creating its repository. Therefore, we are installing the available MariaDB server from CentOS 7 yum repository.

# yum install -y mariadb-server

Start and enable MariaDB service.

# systemctl enable mariadb.service
Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
# systemctl start mariadb.service

Configure MariaDB database instance.

# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] Y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] Y
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] Y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] Y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!

Install Apache on CentOS 7:

Since, we are installing on the same server, on which we are running Nagios Core, then there is no need to install Apache HTTP server, because it was already installed during Nagios Core configurations.

Install PHP on CentOS 7:

Since, we are installing on the same server, on which we have configured Nagios Core. Therefore, we have already installed PHP 5.4 on it during Nagios Core configurations. But NagiosQL required PHP 5.5 or above, therefore, we have to upgrade PHP from 5.4 to 5.5.

PHP 5.5 is available through various third party yum repositories. Therefore, we are installing webtatic yum repository.

But first, install EPEL (Extra Packages for Enterprise Linux) as a prerequisite for webtatic yum repository.

# yum install -y epel-release

Download and install Webtatic yum repository RPM from Webtatic Website according to your Linux version.

# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
Retrieving https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
warning: /var/tmp/rpm-tmp.OjmyAU: Header V4 RSA/SHA1 Signature, key ID 62e74ca5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...
   1:webtatic-release-7-3             ################################# [100%]

Build yum cache for newly added yum repositories.

# yum makecache fast
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
epel/x86_64/metalink                                     | 7.7 kB     00:00
 * base: mirrors.ges.net.pk
 * epel: mirror1.ku.ac.th
 * extras: mirrors.ges.net.pk
 * updates: mirrors.ges.net.pk
 * webtatic: uk.repo.webtatic.com
base                                                     | 3.6 kB     00:00
extras                                                   | 3.4 kB     00:00
updates                                                  | 3.4 kB     00:00
webtatic                                                 | 3.6 kB     00:00
(1/2): webtatic/x86_64/group_gz                            |  448 B   00:00
(2/2): webtatic/x86_64/primary_db                          | 144 kB   00:02
Metadata Cache Created

Remove current version of PHP.

# yum remove -y php-common php php-gd php-cli

Install PHP 5.5 from webtatic yum repository.

# yum install -y php55w-common php55w php55w-gd php55w-cli php55w-mysql php55w-devel php55w-pear

Install libssh2-devel package required by PHP.

# yum install -y libssh2-devel

Install ssh2 extension for PHP from PECL (PHP Extension Community Library).

# pecl channel-update pecl.php.net
Updating channel "pecl.php.net"
Update of Channel "pecl.php.net" succeeded
# pecl install ssh2
...
Build process completed successfully
Installing '/usr/lib64/php/modules/ssh2.so'
install ok: channel://pecl.php.net/ssh2-0.13
configuration option "php_ini" is not set to php.ini location
You should add "extension=ssh2.so" to php.ini

Add following directives in /etc/php.ini.

# echo "date.timezone='Asia/Karachi'" >> /etc/php.ini
# echo "extension=ssh2.so" >> /etc/php.ini

Restart Apache service.

# systemctl restart httpd

We have installed all the NagiosQL prerequisite packages on our CentOS 7 server.

Install NagiosQL on CentOS 7:

NagiosQL is available at Nagios Exchange and SourceForge. While you can also download NagiosQL Documentation from SourceForge website.

Download NagiosQL latest version and copy it in home directory of root user.

# tar xjf nagiosql-3.4.0.tar.bz2 -C /var/www/html/

# mv /var/www/html/nagiosql-3.4.0/ /var/www/html/nagiosql

Reapply SELinux security context for /var/www/html/nagiosql/ directory.

# restorecon -Rv /var/www/html/nagiosql/

Create a directory for NagiosQL to place Nagios Core configuration files.

# mkdir /usr/local/nagios/etc/nagiosql
# chown apache:apache /usr/local/nagios/etc/nagiosql/

Give write permission to all users on config directory for creating configuration files.

# chmod o+w /var/www/html/nagiosql/config

Browse URL http://nagios-01.example.com/nagiosql/ to run NagiosQL installation wizard.

nagiosql-installation-wizard-01

Since, we are running NagiosQL installation wizard for the first time and there isn’t any settings.php file exists in config folder, therefore the wizard is giving us the following warning

“Settings file not found or not readable (config/settings.php). Upgrade not available!”

It is save to ignore it.

Click on START INSTALLATION.

nagiosql-installation-requirements-01

NagiosQL installation wizard is checking for requirments and will give warnings, if a prerequisite is missing.

If you have followed the steps above correctly, then it won’t give you any warning.

Click on Next.

nagiosql-installation-setup-01

Define the settings according to the above screenshot.

Click on Next.

nagiosql-installation-finishing-setup-01

Click on Next.

If everything goes fine, then you will reach at the NagiosQL login page.

NagiosSQL Login

Login as admin user.

NagioSQL Dashboard

NagiosQL Post Installation Configurations:

NagiosQL has been installed, we can now delete install directory to prevent anyone to run installation wizard again.

# rm -rf /var/www/html/nagiosql/nagiosql-3.4.0/install/

We have successfully generated settings.php file. Therefore, revoke write permissions from other users for security.

# chmod o-w /var/www/html/nagiosql/config

Import Nagios Core configuration:

NagiosQL is installed with zero configurations, therefore, we have to import our existing Nagios Core configurations.

Go to Administration > Config Targets.

nagiosql-config-target-01

Click on Modify under Function column.

nagiosql-domain-administration-01

Adjust directory paths according to you environment and click on Save.

Go to Tools > Data Import.

Select all import files and click on Import.

NagioSQL Configuration import

Go to Supervision tab and you may observe that there are now some active groups has been imported.

nagiosql-define-services-01

File status is missed because we haven’t save our files yet. Therefore, Click on Write all config files.

nagiosql-define-services-02

You may observe that the file status is now up-to-date.

Repeat the process for other targets/configurations like hosts, commands, templates, etc to save them in NagiosQL configure directory.

Finally, we have to edit nagios.cfg file to remove current cfg_dir directives and add our new configuration directory actively managed by NagiosQL. This can be achieved by following two commands.

# sed -i 's/^cfg/#cfg/' /usr/local/nagios/etc/nagios.cfg
# echo "cfg_dir=/usr/local/nagios/etc/nagiosql/" >> /usr/local/nagios/etc/nagios.cfg

Restart nagios.service to check is there any configuration errors.

# systemctl restart nagios.service

If you have performed above steps correctly, then there should be no error.

Now, Nagios Core is using configurations from NagiosQL configuration directory.

Conclusion – Install NagiosQL on CentOS 7:

In this configuration guide, you have learned, how to install NagiosQL on CentOS 7 or other Redhat based Linux OS.

Scroll to Top