Server load avarage in critical state.

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
biroby
Posts: 21
Joined: Wed Nov 30, 2016 4:29 am

Server load avarage in critical state.

Post by biroby »

Hi to all,
we have a server nagios that since today are in server load avarage in critical state.
I've stopped, cleaned .lock file, repair DB but problem still active.

Can anyone help me? :shock:
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Server load avarage in critical state.

Post by benjaminsmith »

Hi @biroby,

Can you PM your system profile and we can take a look?

To send us your system profile. Login to the Nagios XI GUI using a web browser.

Click the "Admin" > "System Profile" Menu
Click the "Download Profile" button
Save the profile.zip file and upload it to a cloud storage of your choice. You can share a link with me in a personal message.
After you upload the profile please post something in this thread to bring it up in the support queue.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
benjaminsmith
Posts: 5324
Joined: Wed Aug 22, 2018 4:39 pm
Location: saint paul

Re: Server load avarage in critical state.

Post by benjaminsmith »

Hello @biroby

Thank you for the profile. Log in as root and run the following from the command line:

Code: Select all

mysqlcheck -r -f -uroot -pnagiosxi --all-databases
systemctl stop crond
systemctl stop npcd
systemctl stop nagios
systemctl stop ndo2db
pkill -9 -u nagios
for i in $(ipcs -q | grep nagios |awk '{print $2}'); do ipcrm -q $i; done
rm -rf /usr/local/nagiosxi/var/dbmaint.lock
rm -rf /usr/local/nagiosxi/var/event_handler.lock
rm -rf /usr/local/nagiosxi/scripts/reconfigure_nagios.lock
systemctl restart mariadb
systemctl start ndo2db
systemctl start nagios
systemctl start npcd
systemctl start crond
Let me know if that takes care of the issue.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.

Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked