Search found 3722 matches

by mcapra
Mon Feb 20, 2017 3:49 pm
Forum: Nagios XI
Topic: HTTP ERROR 500
Replies: 18
Views: 24331

Re: HTTP ERROR 500

Could you also share the contents of the following file (an attachment is fine):

Code: Select all

/usr/local/nagiosxi/html/login.php
Also the outputs of these commands:

Code: Select all

ls -al /usr/local/nagiosxi/html/
ls -al /var/www/html
php /usr/local/nagiosxi/html/login.php
by mcapra
Mon Feb 20, 2017 3:40 pm
Forum: Open Source Nagios Projects
Topic: check_as400 Unknown option [S00175]
Replies: 4
Views: 1430

Re: check_as400 Unknown option [S00175]

It looks as if this plugin is hitting the application's front-end for some reason and failing there while waiting for a "token request". Without knowing more about the application, it'd be hard to offer specific advice. Do you know why this application is waiting for token Request...?
by mcapra
Mon Feb 20, 2017 3:33 pm
Forum: Nagios XI
Topic: NCPA Question
Replies: 3
Views: 88

Re: NCPA Question

It would, but it would also disable the "active checks" portion of NCPA. From here: https://www.nagios.org/ncpa/help.php The NCPA Listener service does the following: Serves and handles connections to the web GUI Handles external API requests (including those for active checks) Provides AP...
by mcapra
Mon Feb 20, 2017 3:29 pm
Forum: Nagios XI
Topic: HTTP ERROR 500
Replies: 18
Views: 24331

Re: HTTP ERROR 500

It looks as if one of the SourceGuardian protected files was modified: [Sat Feb 18 04:51:34 2017] [error] [client 192.168.110.105] PHP Fatal error: SourceGuardian Loader - Protected script's header is broken. Probably the encoded file was modified. Please install an original unmodified file or conta...
by mcapra
Mon Feb 20, 2017 2:26 pm
Forum: Nagios XI
Topic: Nagios mass check not working
Replies: 5
Views: 2147

Re: Nagios mass check not working

I am unable to reproduce this on a fresh 5.2.8 installation. It looks as if the initial bugfix was included as of version 5.2.1 or version 2.1.6 of the "Mass Acknowledge" component: 2.1.6 - 10/29/2015 ================== - Fixed garbled Japanese characters -JO - Fixed schedule immediate che...
by mcapra
Mon Feb 20, 2017 1:28 pm
Forum: Nagios XI
Topic: Migrating Nagios Core to XI
Replies: 21
Views: 3031

Re: Migrating Nagios Core to XI

Can you share the specific error message that Nagios XI is churning out? You can usually view it like so: 2017_02_20_12_27_28_CCM_Nagios_XI.png If you could PM a system profile, that would also be helpful. From the Nagios XI GUI, you can gather a system profile via Admin -> System Profile -> Downloa...
by mcapra
Mon Feb 20, 2017 1:24 pm
Forum: Nagios XI
Topic: Nagios Dashboard
Replies: 5
Views: 1244

Re: Nagios Dashboard

The new Nagios Fusion will include a similar hostgroup summary dashlet that is leveraged by Nagios XI:
2017_02_20_12_18_38_Dashboards_Nagios_Fusion.png
The same dashlet is also available on the current version of Nagios Fusion:
2017_02_20_12_24_01_Nagios_Fusion_Dashboards.png
by mcapra
Mon Feb 20, 2017 12:51 pm
Forum: Nagios Log Server
Topic: Waiting for Database Startup Nagios
Replies: 1
Views: 737

Re: Waiting for Database Startup Nagios

Can you share the outputs of the following commands executed from the CLI of your Nagios Log Server machine:

Code: Select all

service elasticsearch start
ps aux | grep java
tail -n 50 /var/log/elasticsearch/*.log
curl -XGET 'http://localhost:9200'
java -version
which java
rpm -qa | grep java
cat /etc/*-release
by mcapra
Mon Feb 20, 2017 12:49 pm
Forum: Open Source Nagios Projects
Topic: Moving from Check_NT to Check_NRPE
Replies: 11
Views: 5968

Re: Moving from Check_NT to Check_NRPE

Thanks for sharing your solution! Locking this up.
by mcapra
Mon Feb 20, 2017 12:46 pm
Forum: Nagios XI
Topic: How to map multiple instances of resources to a service.
Replies: 5
Views: 1042

Re: How to map multiple instances of resources to a service.

Nagios XI does have a back-end API that could be leveraged to do what you've proposed. You can find documentation under the "Help" section of your Nagios XI GUI. Other than that, you would need to modify the JMXQuery class (for jmxquery.jar) to account for many-to-one pools. It's only good...