THIS KNOWLEDGE BASE HAS BEEN ARCHIVED AND IS NO LONGER BEING UPDATED
Please visit library.nagios.com/docs for the latest and most up-to-date documentation.
Home » Categories » Products » Nagios XI » Documentation » Advanced Topics

Database Storage Engine and High CPU usage in Nagios XI

Storage Engine Overview 

A storage engine is a software module that a database management system uses to create, read, update data from a database.

For MySQL 5.5 and later, the default storage engine is InnoDB. The default storage engine for MySQL prior to version 5.5 was MyISAM.

InnoDB is the most widely used storage engine with transaction support. It supports row-level locking, crash recovery and multi-version concurrency control. It is the only engine which provides foreign key referential integrity constraint. 

MyISAM is the original storage engine. It is a fast storage engine. It is used mostly in Web and data warehousing.

If your database tables have a proclivity for crashing, it is better to use InnoDB as the storage engine. For more information, read the following:

Benefits of using InnoDB 

Checking Storage Engine Type

Run the following within mysql to determine the storage engine type for your database:

USE <database>;
SHOW TABLE STATUS\G

Nagios XI Databases

Database Name Default Storage Engine
nagios MyISAM
nagiosxi InnoDB
nagiosql InnoDB

 

Potential Nagios XI Symptoms

Your server is very slow and operates at high CPU. You also experience crashed tables frequently and must run the Nagios XI repair script to solve the error on a regular basis.

Possible Solution

Please read this article below to ensure that the steps presented in the article do not fix your issue before attempting the commands below:

Crashed Database Tables

Note: Ensure that you create a backup before attempting the below database commands.

The following commands will convert the storage engine to InnoDB for all Nagios XI tables. This should decrease the probability of crashed tables and other table errors that may cause high cpu usage.

mysql -h 127.0.0.1 -uroot -pnagiosxi nagios -e "SELECT CONCAT('ALTER TABLE ', table_name, ' ENGINE=InnoDB;') as '' FROM information_schema.tables AS tb WHERE table_schema = 'nagios' AND ENGINE = 'MyISAM' AND TABLE_TYPE = 'BASE TABLE' ORDER BY table_name DESC;" > /tmp/nagios_convert_myisam_to_innodb.sql
mysql -h 127.0.0.1 -uroot -pnagiosxi nagiosql -e "SELECT CONCAT('ALTER TABLE ', table_name, ' ENGINE=InnoDB;') as '' FROM information_schema.tables AS tb WHERE table_schema = 'nagiosql' AND ENGINE = 'MyISAM' AND TABLE_TYPE = 'BASE TABLE' ORDER BY table_name DESC;" > /tmp/nagiosql_convert_myisam_to_innodb.sql
mysql -h 127.0.0.1 -uroot -pnagiosxi -e "SELECT CONCAT('ALTER TABLE ', table_name, ' ENGINE=InnoDB;') as '' FROM information_schema.tables AS tb WHERE table_schema = 'nagiosxi' AND ENGINE = 'MyISAM' AND TABLE_TYPE = 'BASE TABLE' ORDER BY table_name DESC;" > /tmp/nagiosxi_convert_myisam_to_innodb.sql
mysql -h 127.0.0.1 -uroot -pnagiosxi nagios < /tmp/nagios_convert_myisam_to_innodb.sql
mysql -h 127.0.0.1 -uroot -pnagiosxi nagiosql < /tmp/nagiosql_convert_myisam_to_innodb.sql
mysql -h 127.0.0.1 -uroot -pnagiosxi nagiosxi < /tmp/nagiosxi_convert_myisam_to_innodb.sql


Special Offer For Knowledgebase Visitors! Get a huge discount on Nagios Log Server by clicking below.

Get 60% Off Nagios Log Server!

Did you know? Nagios provides complete monitoring of: Windows, Linux, UNIX, Servers, Websites, SNMP, DHCP, DNS, Email, Storage, Files, Apache, IIS, EC2, and more!

0 (0)
Article Rating (No Votes)
Rate this article
  • Icon PDFExport to PDF
  • Icon MS-WordExport to MS Word
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
Nagios XI - Exporting the Config Database
Viewed 10677 times since Wed, Jan 27, 2016
Nagios XI - Automated Host Management In Nagios XI
Viewed 8096 times since Wed, Jan 27, 2016
Nagios XI - Integrating Mod-Gearman With Nagios XI
Viewed 9963 times since Thu, Jan 28, 2016
Nagios XI - Maximizing Performance In Nagios XI
Viewed 7052 times since Thu, Jan 28, 2016
Nagios XI - Migrating From Nagios Core
Viewed 7836 times since Thu, Jan 28, 2016
Nagios XI - Plain Text Password Considerations
Viewed 14046 times since Mon, Jun 18, 2018
Nagios XI - Adding Services To Pre-existing Switch or Router
Viewed 12010 times since Wed, Jan 27, 2016
Nagios XI - SNMP Trap Hardening
Viewed 14250 times since Tue, Nov 6, 2018
SNMP Traps - Standard Handler vs Embedded Handler
Viewed 16320 times since Mon, Oct 24, 2016
Migrating Nagios XI to a different Server
Viewed 21761 times since Tue, Feb 16, 2021