Search found 20 matches
- Wed Feb 09, 2022 1:03 pm
- Forum: Nagios XI
- Topic: Using ncpa and nagiosxi-nagiosplugins from nagios-base
- Replies: 6
- Views: 886
Re: Using ncpa and nagiosxi-nagiosplugins from nagios-base
Ok, thanks. That answers my question. We can close this thread.
- Tue Feb 08, 2022 8:39 pm
- Forum: Nagios XI
- Topic: Using ncpa and nagiosxi-nagiosplugins from nagios-base
- Replies: 6
- Views: 886
Re: Using ncpa and nagiosxi-nagiosplugins from nagios-base
Using the symbolic link seems to work, but I'm not sure of that could create future issues after ncpa updates, for example.
Based upon your experience, would you say that the most common practice is to just copy or move the plugins, as needed?
Trying to get a gauge here on best-practice.
Thanks.
Based upon your experience, would you say that the most common practice is to just copy or move the plugins, as needed?
Trying to get a gauge here on best-practice.
Thanks.
- Tue Feb 08, 2022 3:21 pm
- Forum: Nagios XI
- Topic: Using ncpa and nagiosxi-nagiosplugins from nagios-base
- Replies: 6
- Views: 886
Re: Using ncpa and nagiosxi-nagiosplugins from nagios-base
Hi, pbroste . Thanks for the reply. To confirm, the recommended approach is to move or copy the plugins to the ncpa plugins/ directory. And, the following approach would not be recommended, correct? # rm -rf /usr/local/ncpa/plugins/ # ln -sf /usr/local/nagios/libexec/ /usr/local/ncpa/plugins Thanks ...
- Mon Feb 07, 2022 10:07 pm
- Forum: Nagios XI
- Topic: Using ncpa and nagiosxi-nagiosplugins from nagios-base
- Replies: 6
- Views: 886
Using ncpa and nagiosxi-nagiosplugins from nagios-base
Hello. Looking for guidance regarding using nagiosxi-nagiosplugins with ncpa. On a RHEL 8 monitored host, I've installed ncpa 2.4.0 from the nagios-base repo. For ncpa, the plugins directory is located here: /usr/local/ncpa/plugins/ To get plugins on the monitored host for ncpa to use, I installed t...
- Tue Jun 15, 2021 11:17 am
- Forum: Nagios XI
- Topic: Inbound Mail: Unique Inbox username for Prod vs Test?
- Replies: 2
- Views: 515
Re: Inbound Mail: Unique Inbox username for Prod vs Test?
Makes sense. Just wanted to make sure I wasn't overlooking something.
That answers my question.
Thanks.
That answers my question.
Thanks.
- Mon Jun 14, 2021 10:59 am
- Forum: Nagios XI
- Topic: Inbound Mail: Unique Inbox username for Prod vs Test?
- Replies: 2
- Views: 515
Inbound Mail: Unique Inbox username for Prod vs Test?
Greetings... When running multiple Nagios XI instances (e.g. Prod and Test), and when using the same Inbox username for Inbound Mail, a reply to an alert in Prod (e.g. ack) is resulting in a hash error from Test, which makes sense. Is the best practice to use a unique Inbox username for Prod and a u...
- Thu May 27, 2021 2:21 pm
- Forum: Nagios XI
- Topic: Auto adding new logical disk added on Linux NCPA?
- Replies: 2
- Views: 446
- Tue May 25, 2021 3:26 pm
- Forum: Nagios XI
- Topic: Auto adding new logical disk added on Linux NCPA?
- Replies: 2
- Views: 446
Auto adding new logical disk added on Linux NCPA?
Hello. We have Nagios XI monitoring various Linux servers via NCPA. When a new logical disk is added on a Linux NCPA, what would be best approach for automating creation of a new service check? For example, if a new logical disk is added on a Linux NCPA, I would like to do something similar to the f...
- Thu Aug 20, 2020 4:23 pm
- Forum: Nagios XI
- Topic: Inbound Mail hash errors: "^M" in cleaner.log
- Replies: 25
- Views: 7770
Re: Inbound Mail hash errors: "^M" in cleaner.log
Hi, jomann . Good news to report.. Seems my issue is resolved by using "quoted_printable_decode" [1]: // Convert quoted-printable $email['body'] = quoted_printable_decode($email['body']); That works with the original xicore.inc.php, as well as the new xicore.inc.php. # diff xicore.inc.php....
- Thu Aug 20, 2020 2:47 pm
- Forum: Nagios XI
- Topic: Inbound Mail hash errors: "^M" in cleaner.log
- Replies: 25
- Views: 7770
Re: Inbound Mail hash errors: "^M" in cleaner.log
Hi, lmiltchev . I installed the new xicore.inc.php file, but no luck. Here is a diff of the original xicore.inc.php vs the new xicore.inc.php: # diff xicore.inc.php.orig xicore.inc.php 552a553,555 > > // Replace all Windows line endings with Linux ones > $email['body'] = preg_replace("/[\\r\\n]...