Search found 9010 matches

by tgriep
Fri Jan 19, 2024 10:08 am
Forum: Nagios XI
Topic: No space left on device
Replies: 66
Views: 6853

Re: No space left on device

I suspect it could be a permission issue for the folders. Make sure the nagios user can read and write to the 2 folders shown in the errors. Else it may be that the inodes on the drive is filled up. Rhu the following as root and post the output. df -i df -h ls -al / ls -al /usr/local/nagios/var/spoo...
by tgriep
Thu Oct 26, 2023 12:57 pm
Forum: Nagios XI
Topic: Wrong disk size reported by check_snmp_storage
Replies: 3
Views: 13235

Re: Wrong disk size reported by check_snmp_storage

The check_snmp_storage.pl plugin was probably updated to a newer version that supported drives larger than 2 Terabytes and when XI was updated, the plugin was reverted back to an older version. Here is a link for an updated plugin that functions for larger drives. https://github.com/dnsmichi/manubul...
by tgriep
Fri Sep 22, 2023 8:38 am
Forum: Open Source Nagios Projects
Topic: CPU-Load > 100%
Replies: 4
Views: 21156

Re: CPU-Load > 100%

The check_nt plugin used the NSClient++ agent that is running on the Windows system and it may be a bug wit the version that you are using and you should upgrade it. You can find it here https://nsclient.org/ Another cause is the counters need to be rebuilt on the Windows server. https://learn.micro...
by tgriep
Thu Sep 14, 2023 9:09 am
Forum: Open Source Nagios Projects
Topic: DB is not connected
Replies: 1
Views: 17086

Re: DB is not connected

See this link for instructions on stopping the PHP Notices from getting logged.

viewtopic.php?p=344873#p344873
by tgriep
Wed Sep 06, 2023 9:08 am
Forum: Nagios XI
Topic: Error update nagios 5.10.0
Replies: 11
Views: 13594

Re: Error update nagios 5.10.0

See this link for instructions on stopping the PHP Notices from getting logged.

viewtopic.php?p=344873#p344873
by tgriep
Fri Aug 25, 2023 8:53 am
Forum: Open Source Nagios Projects
Topic: Return code of 4 is out of bounds
Replies: 12
Views: 12605

Re: Return code of 4 is out of bounds

What I see is an conflict is the arguments in the command definition and the arguments in the service check's arguments. Your command line is command_line $USER1$/check_port.pl -p $ARG1$ -h $HOSTADDRESS$ And the service check command is this check_command check_port.pl! -p 80 -h www.google.com '-w 1...
by tgriep
Thu Aug 10, 2023 9:22 am
Forum: Nagios XI
Topic: Broken Services Post Update
Replies: 5
Views: 24379

Re: Broken Services Post Update

The PHP script is loading the reactor component that talks to an obsolete product called Nagios Reactor and that is causing the messages. It can be moved from the XI system folders by running the following as root. It will make a backup in the /root folder. mv /usr/local/nagiosxi/html/includes/compo...
by tgriep
Thu Aug 10, 2023 9:13 am
Forum: Nagios XI
Topic: PHP Notice: DB is not connected.....
Replies: 5
Views: 10958

Re: PHP Notice: DB is not connected.....

The PHP script is loading the reactor component that talks to an obsolete product called Nagios Reactor and that is causing the messages. It can be moved from the XI system folders by running the following as root. It will make a backup in the /root folder. mv /usr/local/nagiosxi/html/includes/compo...
by tgriep
Mon Jul 17, 2023 9:10 am
Forum: Nagios XI
Topic: Problems with the Nagvis back-end
Replies: 1
Views: 3898

Re: Problems with the Nagvis back-end

To update the instance_name to localhost, run this in a root ssh session on the nagios server.
mysql -uroot -pnagiosxi nagios -e 'UPDATE nagios_instances SET instance_name = "localhost";'

Then Restart Apache and re-login to XI and go to Nagvis to see if the error is gone.

Thank You
by tgriep
Mon Jul 17, 2023 9:09 am
Forum: Nagios XI
Topic: Problem with Nagvis after upgrade to 5.11.1
Replies: 7
Views: 11585

Re: Problem with Nagvis after upgrade to 5.11.1

To update the instance_name to localhost, run this in a root ssh session on the nagios server.
mysql -uroot -pnagiosxi nagios -e 'UPDATE nagios_instances SET instance_name = "localhost";'

Then Restart Apache and re-login to XI and go to Nagvis to see if the error is gone.

Thank You