Search found 138 matches

by bbahn
Fri May 31, 2024 3:28 pm
Forum: Nagios Fusion
Topic: PHP sybase_connect from nagios script
Replies: 2
Views: 24814

Re: PHP sybase_connect from nagios script

Hello @NaarimanMudoduma, I am sorry to hear that you are having such difficulties. I have a few questions that may help narrow down where things are going wrong. You said it's working on your production server, but not on your new server. What versions of Nagios XI are running on those servers? Have...
by bbahn
Thu May 30, 2024 2:42 pm
Forum: Nagios Log Server
Topic: Nagios XI Installation error
Replies: 1
Views: 50

Re: Nagios XI Installation error

Hello @patrickm1, It seems you have some broken packages. To begin with, I suggest running the following: sudo apt update sudo apt upgrade After that, you can try manually installing the libharfbuzz0b package, check for held packages with sudo apt-mark showhold and try unholding them with sudo apt-m...
by bbahn
Wed May 29, 2024 4:55 pm
Forum: Nagios XI
Topic: NCPA Powershell Plugin trouble passing arguments
Replies: 9
Views: 447

Re: NCPA Powershell Plugin trouble passing arguments

@rfaulkner, it seems your issue is that your wrapping of the path in quotes is breaking your plugin.

I see a few methods to handle this:
  1. Use single quotes
  2. Have your script convert the escaped double quotes to unescaped double quotes (($path -replace '\"', '"'))
by bbahn
Tue May 28, 2024 10:18 am
Forum: Nagios XI
Topic: NCPA Powershell Plugin trouble passing arguments
Replies: 1
Views: 155

Re: NCPA Powershell Plugin trouble passing arguments

Hello @cordeliaf40, This topic has already been answered here: https://support.nagios.com/forum/viewtopic.php?p=356824&hilit=ncpa+powershell#p356824 For your PowerShell script to process the arguments correctly, you want the CLI input to be plugins/plugin.ps1 "arg1" "arg2" &q...
by bbahn
Fri May 24, 2024 10:47 am
Forum: Nagios XI
Topic: How to change SNMP strings in servers en masse
Replies: 9
Views: 536

Re: How to change SNMP strings in servers en masse

@adamsj,

Assuming you have the standard setup for Nagios Core, updating your host files in /usr/local/nagios/etc/hosts/[hostname].cfg (or the services folder) should update Nagios Core. Have you restarted the Nagios service?

Code: Select all

sudo systemctl restart nagios
by bbahn
Thu May 23, 2024 11:41 am
Forum: Nagios XI
Topic: How to change SNMP strings in servers en masse
Replies: 9
Views: 536

Re: How to change SNMP strings in servers en masse

Hello @adamsj, So long as there are the same number of perfdata points for the given host, just changing the data source for a host will not stop the perfdata as the check is controlled by Nagios Core and the check listed in the XML is ornamental and is updated when the check is ran. Is it not updat...
by bbahn
Wed May 22, 2024 10:12 am
Forum: Nagios XI
Topic: Operations Center Audio Alerts Not Consistent
Replies: 2
Views: 255

Re: Operations Center Audio Alerts Not Consistent

Hello @Bbbontrager,

Can you describe in more detail what your problems are, including what version of XI you are using and on what OS it is hosted?
by bbahn
Tue May 21, 2024 10:18 am
Forum: Nagios XI
Topic: Artemis ActiveMQ Plugins for Nagios?
Replies: 2
Views: 2277

Re: Artemis ActiveMQ Plugins for Nagios?

Hello,

As Artemis ActiveMQ isn't a project that we develop/maintain and it seems you may need more extensive assistance (likely a new plugin is needed), you can create a support ticket at https://answerhub.nagios.com/support/s/ to get assistance in this.
by bbahn
Mon May 20, 2024 10:28 am
Forum: Nagios XI
Topic: NCPA Check Interval not working
Replies: 2
Views: 192

Re: NCPA Check Interval not working

Hello @BanditBBS,

Thanks for letting us know about this issue. I will file an issue on the NCPA github and will investigate it when I get time.
by bbahn
Fri May 17, 2024 1:26 pm
Forum: Open Source Nagios Projects
Topic: Other Apache URL for Nagios
Replies: 1
Views: 278

Re: Other Apache URL for Nagios

Hello @Hans van Leeuwen, You can change this by updating your apache configuration files. I believe on Ubuntu that the configuration files should be in /etc/apache2/conf-available . In the file, there is a directory defined <Directory "/usr/local/nagios/share"> , for which an Alias has bee...