Search found 234 matches

by danderson
Mon Jan 27, 2025 11:42 am
Forum: Nagios XI
Topic: Very slow web interface in Nagios XI
Replies: 3
Views: 1770

Re: Very slow web interface in Nagios XI

Thanks for reaching out,

Do you know what the load on the system is? You can use a tool like htop to check this. Otherwise, maybe it's a network connection speed issue? Which theme are you using that's experiencing the slow page loads and is it different between Modern and Neptune?
by danderson
Wed Jan 22, 2025 11:37 am
Forum: Open Source Nagios Projects
Topic: Unable to Access Nagios Web Interface After Updating Nagios Core to 4.5.9
Replies: 11
Views: 31083

Re: Unable to Access Nagios Web Interface After Updating Nagios Core to 4.5.9

The null coalescing operator is some syntactic sugar added in PHP 7. From https://www.php.net/manual/en/migration70.new-features.php <?php // Fetches the value of $_GET['user'] and returns 'nobody' // if it does not exist. $username = $_GET['user'] ?? 'nobody'; // This is equivalent to: $username = ...
by danderson
Wed Jan 22, 2025 11:29 am
Forum: Open Source Nagios Projects
Topic: Problem compiling nagios core on rocky linux 9 (i.e. gcc 11)
Replies: 3
Views: 6124

Re: Problem compiling nagios core on rocky linux 9 (i.e. gcc 11)

Nice! I'm glad that resolved your issue!
by danderson
Tue Jan 21, 2025 11:10 am
Forum: Open Source Nagios Projects
Topic: Unable to Access Nagios Web Interface After Updating Nagios Core to 4.5.9
Replies: 11
Views: 31083

Re: Unable to Access Nagios Web Interface After Updating Nagios Core to 4.5.9

The null coalescing operator was added to PHP 7, which released around 9 years ago. Which distribution are you using that's using PHP 5?
by danderson
Tue Jan 21, 2025 11:02 am
Forum: Open Source Nagios Projects
Topic: Problem compiling nagios core on rocky linux 9 (i.e. gcc 11)
Replies: 3
Views: 6124

Re: Problem compiling nagios core on rocky linux 9 (i.e. gcc 11)

Thanks for reaching out,

I was able to manually trigger your issue by running configure like so CFLAGS=-std=c99 ./configure, are you doing something similar? Otherwise I can look into why this CFLAG is getting added.
by danderson
Mon Jan 20, 2025 4:21 pm
Forum: Nagios XI
Topic: NagiosXI 2024 Offline Installation - Failed to create /usr/local/nagiosxi
Replies: 4
Views: 2163

Re: NagiosXI 2024 Offline Installation - Failed to create /usr/local/nagiosxi

Do you see anything interesting in /tmp/xi-install.log
by danderson
Thu Jan 16, 2025 4:53 pm
Forum: Nagios XI
Topic: Failed upgrade from 2024R1.1.5 to 2024r1.3.2
Replies: 2
Views: 1154

Re: Failed upgrade from 2024R1.1.5 to 2024r1.3.2

Thanks for reaching out,

This is a bug, I have created an internal ticket with ID #1445. Check the changelog for this fix.
by danderson
Thu Jan 09, 2025 12:17 pm
Forum: Nagios XI
Topic: RESOLVED: Caught SIGSEGV after upgrade
Replies: 10
Views: 5991

Re: Caught SIGSEGV after upgrade

You will have to upgrade your ndoutils version, I believe you will have 2.1.3, which is incompatible with nagios core versions 4.5.0 and above, so you will need to install ndoutils version 2.1.4. This is available on the github website. There are some XI specific patches required, here's an example ...
by danderson
Mon Jan 06, 2025 11:08 am
Forum: Open Source Nagios Projects
Topic: check_hostgroup command
Replies: 3
Views: 10429

Re: check_hostgroup command

This looks awesome! Thank you