I'm seeing a lot of services timed out messages. Let's do this, try these commands and let me know what the output is.
Code: Select all
systemctl stop nagios.service
ps aux | grep nagios
Once Nagios is shut down, we can clear out the nagios_logentries table to make space, just know that this does delete historical data.
Code: Select all
echo 'DELETE FROM nagios_logentries WHERE entry_time < (NOW() - INTERVAL 30 DAY);' |mysql -t -u root -pnagiosxi nagios
Check in on the size of nagios_logentries, give it a few minutes to make sure that with Nagios not running, it's not growing in size. Also check your system load with
top, and make sure that the system load is not particularly high (not above 4 or 5). If everything on the system seems calm, go ahead and start Nagios again, and watch the nagios_logentries table to see if the database growth issue persists.