Offloading MySQL To Remote Server
Offloading MySQL To Remote Server
Purpose
This document is meant to show a step-by-step guide for offloading the MySQL services from
the central Nagios XI server to an external, remote server.
Target Audience
This document is intended for use by Nagios XI Administrators who are desiring to reduce CPU load on their
central Nagios XI server.
Important Information
Historically MySQL has been the database used by Nagios XI, however in more recent operating systems
(OS) MariaDB is used instead of MySQL. MariaDB is simply a fork of the MySQL database however some of
the command differ slightly. This document will highlight the different commands for each scenario.
Separate to this, Nagios XI versions before 5.x used a PostgreSQL database for storing the Nagios XI
preferences. In Nagios XI 5.x this was moved over to the MySQL database. The following applies:
• Fresh installations of Nagios XI will no longer use PostgreSQL
• Upgrading a previous version of Nagios XI will continue to use the PostgreSQL database
This is highlighted where necessary in the steps below. If you are unsure, execute the following command on
your Nagios XI server:
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 1 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
The following guide creates three separate use accounts in MySQL / MariaDB. It is very important that you do
not try and use one account as this will break Nagios XI. You MUST follow the instructions to create
separate accounts.
It's also worth considering implementing jumbo frames for the network traffic between the Nagios XI server
and the offloaded database server. Please refer to the Jumbo Frames section in this documentation for more
information.
Summary
This document walks you through setting up a remote MySQL server for Nagios XI. Here is a list of the steps
that will be performed:
• Create Remote DB Server
◦ Setup/Install MySQL server
◦ Create Databases
◦ Adjust firewall rules to allow the MySQL traffic
◦ Test Databases
◦ Rollover Databases *Requires Downtime
• Adjust settings on Nagios Server
◦ Edit ndo2db.cfg (XI 5.6.x and lower) OR ndo.cfg (XI 5.7.x and higher) to make NDOUtils use an
external database
◦ Edit config.inc.php to make Nagios XI use an external database
◦ Edit settings.php for NagiosQL to use an external database
◦ Start Nagios XI Services
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 2 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
Editing Files
In many steps of this documentation you will be required to edit files. This documentation will use the vi text
editor. When using the vi editor:
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 3 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
Initiate and check the install of MariaDB and install root password:
This should show MariaDB running, please proceed to the Edit Config File section of this document.
Ubuntu
Follow these steps if your offloaded server is running Ubuntu. On your remote server install MySQL with these
steps:
apt-get update
apt-get install -y mysql-server libmysqlclient-dev libdbd-mysql-perl
During the install you will be prompted for the password of the root user (except Ubuntu 18.x +).
Debian 9.x
Follow these steps if your offloaded server is running Debian 9. On your remote server install MySQL with
these steps:
apt-get update
apt-get install -y mysql-server default-libmysqlclient-dev
Debian 10.x
Follow these steps if your offloaded server is running Debian 10. On your remote server install MySQL with
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 4 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
these steps:
apt-get update
apt-get install -y default-mysql-server default-libmysqlclient-dev
Ubuntu 16.x/18.x +
Debian 9.x +
This should show MySQL running, please proceed to the Edit Config File section of this document.
vi /etc/my.cnf
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 5 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
Ubuntu 16.x/18.x +
vi /etc/mysql/mysql.conf.d/mysqld.cnf
Debian 9.x +
vi /etc/mysql/mariadb.conf.d/50-server.cnf
Add the following two lines under the [mysqld] section, or edit them if they already exist (if the [mysqld]
section header does not exist you need to add it):
[mysqld]
bind-address=<IP address of this computer, the computer with MySQL or MariaDB>
port=3306
The following parameters are OPTIONAL however they are implemented as part of a default Nagios XI
installation and hence it would be beneficial to also implement on the offloaded DB server.
query_cache_size=16M
query_cache_limit=4M
tmp_table_size=64M
max_heap_table_size=64M
key_buffer_size=32M
table_open_cache=32
innodb_file_per_table=1
Save the file and restart the service to apply the changes:
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 6 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
Ubuntu 16.x/18.x +
Create Databases
You will now create the nagios, nagiosql and nagiosxi databases along with the respective user
accounts. You should use your own username and passwords, this entire documented example will be using:
• nagios database:
◦ username = nagios
◦ password = nagiosP@ssw0rd
• nagiosql database:
◦ username = nagiosql
◦ password = nagiosqlP@ssw0rd
• nagiosxi database:
◦ username = nagiosxi
◦ password = nagiosxiP@ssw0rd
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 7 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
It is very important that you do not try and use one account as this will break Nagios XI. You MUST follow
the instructions to create separate accounts.
In the following commands you need to replace <IP_OF_NAGIOS_XI_SERVER> with the IP Address of your
Nagios XI server, for example nagios@'10.26.5.12'. It is very important that the address is enclosed
within 'single quotes'.
Execute the following command to enter the mysql command interface (replace mYr00tP@ssw0rd with your
password):
You are now logged into the mysql command interface, this is indicated by the mysql> OR MariaDB
[(none0]> prompt.
NOTE: If you are using MySQL 8.0 or above, you can no longer create a user directly from the GRANT
command. You will need to use the CREATE USER command to create the user and then grant privileges.
Also, to properly connect to MySQL clients before 8.0 you will need to run an ALTER USER command to use
the MySQL native password to authenticate. The concept is presented in this example:
Execute the following commands to create the nagios and nagiosql databases.
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 8 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
The next commands only apply if this instance of Nagios XI was deployed from 5.x onwards (refer to the
Important Information section at the beginning of this document).
The last command grants the root user full access to all the databases (used by the
/root/scripts/automysqlbackup on the Nagios XI server) [replace mYr00tP@ssw0rd with your
password]:
quit;
The databases have been created and you are ready to proceed to the Firewall Rules step.
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 9 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
firewall-cmd --reload
Ubuntu
Debian
Test Databases
Now you need to test that your Nagios XI server can actually access these databases. In the following
commands you need to replace <IP_ADDRESS_OF_MYSQL_OR_MARIADB_SERVER> with the IP Address of
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 10 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
your offloaded MySQL / MariaDB server, for example -h 10.26.7.11. Make sure you are using your
usernames/passwords in these commands.
Execute the following commands from your Nagios XI server to perform the tests:
The next command only applies if this instance of Nagios XI was deployed from 5.x onwards (refer to the
Important Information section at the beginning of this document).
If these commands do not output some status text then you need to go back over the previous steps to
ensure you have correctly followed them. An example error message would appear like:
If the commands produce valid database status output you can proceed to the Rollover Databases step.
Rollover Databases
Now it is time to move the data in the local Nagios XI MySQL/MariaBD databases to the remote
MySQL/MariaDB databases. This task will require downtime as you need to stop the nagios and ndo2db
services using the following commands on your Nagios XI server:
RHEL 7.x +| CentOS 7.x +| Oracle Linux 7.x +| Debian | Ubuntu 16.x/18.x +
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 11 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
The following commands to copy the databases need to be executed on the Nagios XI server with the
following considerations:
• The -u and -p for the mysqldump command (left side of the pipe | symbol) are for the databases on
the Nagios XI server. The commands are using the MySQL/MariabDB root user account with the
default password nagiosxi.
• The -u and -p for the mysql command (right side of the pipe | symbol) are associated with the remote
MySQL/MariaDB server. Make sure you are using your usernames/passwords in these commands.
• You must be logged onto the Nagios XI server as a linux root user
These commands can take a while to run if the Nagios XI server has been in production for some time as the
databases will have grown in size.
For simplicity, the following commands will use ip_mysql as the IP address of the MySQL/MariaDB server,
please change this to the correct IP address.
mysqldump -u root -p'nagiosxi' nagios | mysql -u nagios -p'nagiosP@ssw0rd' -h ip_mysql nagios
mysqldump -u root -p'nagiosxi' nagiosql | mysql -u nagiosql -p'nagiosqlP@ssw0rd' -h ip_mysql nagiosql
The next command only applies if this instance of Nagios XI was deployed from 5.x onwards (refer to the
Important Information section at the beginning of this document).
It's worth noting that if you have a corrupt database, you will experience errors when running these
commands. Refer to the Common Problems section at the end of this documentation if you experience such
issues.
If the commands completed successfully you can move onto the next step.
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 12 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
cp /usr/local/nagios/etc/ndo2db.cfg /usr/local/nagios/etc/ndo2db.bak
OR
cp /usr/local/nagios/etc/ndo.cfg /usr/local/nagios/etc/ndo.bak
vi /usr/local/nagios/etc/ndo2db.cfg
OR
vi /usr/local/nagios/etc/ndo.cfg
db_host=localhost
Change this to the IP address of your remote MySQL/MariaDB server, for example:
db_host=10.26.7.11
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 13 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
db_user=ndoutils
db_pass=n@gweb
Change this to the username and password of the nagios database on your remote MySQL/MariaDB server,
for example:
db_user=nagios
db_pass=nagiosP@ssw0rd
Edit config.inc.php
The /usr/local/nagiosxi/html/config.inc.php file needs to be updated, for safety reasons its a
good idea to make a backup first:
cd /usr/local/nagiosxi/html/
cp config.inc.php config.inc.php.bak
vi config.inc.php
This file contains credentials for the databases that Nagios XI uses. Find the line:
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 14 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
This entry is for the nagios database. Under this entry, update the dbserver, user and pwd values:
This entry is for the nagiosql database. Under this entry, update the dbserver, user and pwd values:
The next section only applies if this instance of Nagios XI was deployed from 5.x onwards (refer to the
Important Information section at the beginning of this document).
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 15 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
Edit settings.php
This section only applies to versions of Nagios XI before 5.5.0. If you are running 5.5.0 or newer please
proceed to the Start Nagios XI Services section.
cd /var/www/html/nagiosql/config/
cp settings.php settings.php.bak
vi settings.php
This file contains credentials for the database that the Core Config Manager uses. Find the lines that say:
server = localhost
port = 3306
database = nagiosql
username = nagiosql
password = n@gweb
server = <IP_OF_MYSQL_OR_MARIADB_SERVER>
port = 3306
database = nagiosql
username = nagiosql
password = nagiosql
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 16 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
RHEL 7.x +| CentOS 7.x +| Oracle Linux 7.x +| Debian | Ubuntu 16.x/18.x +
At this point you should go into the Nagios XI web interface and check that it is all working as expected. The
main items to check are:
• You can login
• Core Configuration Manager works (objects appear)
• Force an immediate check on a host/service and make sure the Last Check/Next Check fields update
If you've made it this far then you have successfully migrated your databases to an offline server and Nagios
XI is now back online.
The following steps need to be completed to ensure additional functionality (like backups) continue to work.
vi /root/scripts/automysqlbackup
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 17 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
DBHOST=localhost
DBHOST=<IP_OF_MYSQL_OR MARIADB_SERVER>
PASSWORD=nagiosxi
PASSWORD=mYr00tP@ssw0rd
Ubuntu 16.x/18.x +
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 18 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
Now refresh the Nagios XI interface, if the screen goes blank, go back and review the previous steps. If the
web interface is working and it's receiving fresh data, the offload was successful! If everything is working OK
after stopping MySQL / MariaDB then you can disable it from starting on boot as it is no longer required.
Ubuntu 16.x/18.x +
cd /var/lib/mysql/
rm -rf nagios nagiosql nagiosxi
This completes the steps required to offload MySQL to a remote server. The remaining documentation talks
about jumbo frames and some troubleshooting tips.
Jumbo Frames
Offloading MySQL to an external server means that all of the database traffic must pass through the network.
It's important to make sure that the network connectivity is optimally configured between the Nagios XI server
and the MySQL server. This is where jumbo frames can make a difference.
Jumbo Frames allow each network packet to be 9,000 bytes in size, compared to the default of 1,500 bytes in
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 19 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
size. However using jumbo frames require all devices that the network traffic passes through need to support
it. This can add complexities which are outside the scope of this document, needless to say the benefits of
jumbo frames are worth mentioning in this document.
In an ideal scenario, you would add an extra network card (NIC) in both the Nagios XI server and MySQL
server with jumbo frames enabled. Those NICs should be connected to a separate network that supports
jumbo frames. The switches those NICs are connected to need to support jumbo frames.
In a virtual environment, if both the Nagios XI server and the MySQL server are on the same hypervisor (e.g.
ESXi) then you need to create an additional virtual switch (with jumbo frames enabled) to connect the two
VM's. If the VM's are running on separate hypervisors then you will need to make sure each hypervisor has a
virtual switch (with jumbo frames enabled) and the physical switches that connect the virtual switches support
jumbo frames.
The best way to confirm that jumbo frames is correctly configured is to perform a ping test that forces jumbo
sized packets to be sent. The command to use is:
Where xxx.xxx.xxx.xxx is the address of the other server you are testing against. If it is NOT correctly
configured then you will see messages like the following:
When implementing jumbo frames with dedicated NICs, in all of the steps in this document you will need to
make sure that you use the IP addresses of these NICs. For example:
That would need to be the IP address of the NIC with jumbo frames enabled.
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 20 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
That would need to be the IP address of the NIC on the Nagios XI server with jumbo frames enabled.
Common Problems
Issue - Now everything is blank, none of my tables show up.
This means that Nagios XI cannot access the nagiosql database. Make sure the:
• Credentials given in the config.inc.php under the "nagiosql" => array ( are correct
• Firewall on the MySQL / MariaDB server is allowing traffic through
• nagiosql database has been created on the remote MySQL / MariaDB server
• Check the file /usr/local/nagiosxi/etc/components/ccm_config.inc.php to ensure the
nagiosql settings are correctly defined, these should automatically be updated.
Issue - The tables show up but they don't hold any information
Blank tables mean that Nagios XI can access the nagiosql database but cannot access the nagios
database.
• Make sure that the credentials in config.inc.php under "ndoutils" => array( are correct.
This is a problem with ndomod.cfg and/or ndo2db.cfg. The log is written if Nagios cannot connect to the
nagios database on the remote server. Make sure the:
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 21 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
This is due to a MySQL table being corrupt and you must fix it. The following documentation explains how to
repair the MySQL / MariaDB databases: https://support.nagios.com/kb/article.php?id=24
In all of the steps you follow it should be clear when you need to change the port from the default. The only
section where it is not clear is in the config.inc.php file, you need to define it as:
Finishing Up
This completes the documentation on how to offload the Nagios XI databases to an external MySQL /
MariaDB server.
If you have additional questions or other support related questions, please visit us at our Nagios Support
Forums:
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 22 / 23
Updated – January, 2021
The Industry Standard In Infrastructure Monitoring
https://support.nagios.com/forum
https://support.nagios.com/kb
1295 Bandana Blvd N, St. Paul, MN 55108 [email protected] US: 1-888-624-4671 INTL: 1-651-204-9102
www.nagios.com
© 2017 Nagios Enterprises, LLC. All rights reserved. Nagios, the Nagios logo, and Nagios graphics are the servicemarks, trademarks, or
registered trademarks owned by Nagios Enterprises. All other servicemarks and trademarks are the property of their respective owner. Page 23 / 23
Updated – January, 2021