Install NagiosQL Nagios Configurator on CentOS 7

Install NagiosQL Nagios Configurator on CentOS 7

Nagios Core is an free and open source Nework, 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 typostatic 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 Nagios configurator 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 by Packt Publishing to enhance your knowledge in this area.

 

This Article Provides:

     

    System Specification:

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

    • 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

     

    Installing MariaDB Database 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.

    [root@nagios-01 ~]# yum install -y mariadb-server
    ...
    Installed:
    mariadb-server.x86_64 1:5.5.60-1.el7_5

    Dependency Installed:
    mariadb.x86_64 1:5.5.60-1.el7_5
    perl-Compress-Raw-Bzip2.x86_64 0:2.061-3.el7
    perl-Compress-Raw-Zlib.x86_64 1:2.061-4.el7
    perl-DBD-MySQL.x86_64 0:4.023-6.el7
    perl-DBI.x86_64 0:1.627-4.el7
    perl-IO-Compress.noarch 0:2.061-2.el7
    perl-Net-Daemon.noarch 0:0.48-5.el7
    perl-PlRPC.noarch 0:0.2020-14.el7

    Complete!

    Start and enable MariaDB service.

    [root@nagios-01 ~]# systemctl enable mariadb.service
    Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
    [root@nagios-01 ~]# systemctl start mariadb.service

    Configure MariaDB database instance.

    [root@nagios-01 ~]# 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!

     

    Installing Apache HTTP server 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.

     

    Installing or Upgrading 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.

    [root@nagios-01 ~]# yum install -y epel-release
    ...
    Installed:
    epel-release.noarch 0:7-11

    Complete!

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

    [root@nagios-01 ~]# 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.

    [root@nagios-01 ~]# 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.

    [root@nagios-01 ~]# yum remove -y php-common php php-gd php-cli
    ...
    Removed:
    php.x86_64 0:5.4.16-46.el7 php-cli.x86_64 0:5.4.16-46.el7
    php-common.x86_64 0:5.4.16-46.el7 php-gd.x86_64 0:5.4.16-46.el7

    Dependency Removed:
    rrdtool-php.x86_64 0:1.4.8-9.el7

    Complete!

    Install PHP 5.5 from webtatic yum repository.

    [root@nagios-01 ~]# yum install -y php55w-common php55w php55w-gd php55w-cli php55w-mysql php55w-devel php55w-pear
    ...
    Installed:
    php55w.x86_64 0:5.5.38-1.w7 php55w-cli.x86_64 0:5.5.38-1.w7
    php55w-common.x86_64 0:5.5.38-1.w7 php55w-devel.x86_64 0:5.5.38-1.w7
    php55w-gd.x86_64 0:5.5.38-1.w7 php55w-mysql.x86_64 0:5.5.38-1.w7
    php55w-pear.noarch 1:1.10.1-1.w7

    Dependency Installed:
    php55w-pdo.x86_64 0:5.5.38-1.w7 php55w-process.x86_64 0:5.5.38-1.w7
    php55w-xml.x86_64 0:5.5.38-1.w7

    Complete!

    Install libssh2-devel package required by PHP.


    [root@nagios-01 ~]# yum install -y libssh2-devel
    ...
    Installed:
    libssh2-devel.x86_64 0:1.4.3-12.el7

    Complete!

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

    [root@nagios-01 ~]# pecl channel-update pecl.php.net
    Updating channel "pecl.php.net"
    Update of Channel "pecl.php.net" succeeded
    [root@nagios-01 ~]# 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.

    [root@nagios-01 ~]# echo "date.timezone='Asia/Karachi'" >> /etc/php.ini
    [root@nagios-01 ~]# echo "extension=ssh2.so" >> /etc/php.ini

    Restart Apache service.

    [root@nagios-01 ~]# systemctl restart httpd

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

     

    Installing 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.

    [root@nagios-01 ~]# tar xvjf nagiosql-3.4.0.tar.bz2 -C /var/www/html/
    ...
    nagiosql-3.4.0/templates/files/hosts.tpl.dat
    nagiosql-3.4.0/templates/files/hosttemplates.tpl.dat
    nagiosql-3.4.0/templates/files/servicedependencies.tpl.dat
    nagiosql-3.4.0/templates/files/serviceescalations.tpl.dat
    nagiosql-3.4.0/templates/files/serviceextinfo.tpl.dat
    nagiosql-3.4.0/templates/files/servicegroups.tpl.dat
    nagiosql-3.4.0/templates/files/services.tpl.dat
    nagiosql-3.4.0/templates/files/servicetemplates.tpl.dat
    nagiosql-3.4.0/templates/files/timeperiods.tpl.dat
    nagiosql-3.4.0/templates/index.htm.tpl
    nagiosql-3.4.0/templates/main.htm.tpl
    [root@nagios-01 ~]# mv /var/www/html/nagiosql-3.4.0/ /var/www/html/nagiosql

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

    [root@nagios-01 ~]# restorecon -Rv /var/www/html/nagiosql/

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

    [root@nagios-01 ~]# mkdir /usr/local/nagios/etc/nagiosql
    [root@nagios-01 ~]# chown apache:apache /usr/local/nagios/etc/nagiosql/

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

    [root@nagios-01 config]# 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.

    nagiosql-login-01

    Login as admin user.

    nagiosql-dashboard-01

     

    NagiosQL Post Installation Configurations:

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

    [root@nagios-01 config]# 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.

    [root@nagios-01 config]# chmod o-w /var/www/html/nagiosql/config

     

    Import Nagios Core configuration in NagiosQL:

    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-import-files-01

    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.

    [root@nagios-01 ~]# sed -i 's/^cfg/#cfg/' /usr/local/nagios/etc/nagios.cfg
    [root@nagios-01 ~]# echo "cfg_dir=/usr/local/nagios/etc/nagiosql/" >> /usr/local/nagios/etc/nagios.cfg

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

    [root@nagios-01 hosts]# 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.

    We have successfully installed NagiosQL Nagios Configurator on CentOS 7 server.

    0 Comments