Search found 5 matches

by pomtomm
Fri Nov 13, 2020 10:41 am
Forum: Open Source Nagios Projects
Topic: Implement deduplication in Nagios Core
Replies: 4
Views: 3164

Re: Implement deduplication in Nagios Core

There are several ways to achieve this. "notification_interval 0" will work fine if this is your only notification configuration. Just make sure there are no other host / service notifications which might interfere. "is_volatile" needs to be set to 0, IIRC. Here's one example usi...
by pomtomm
Fri Nov 13, 2020 9:55 am
Forum: Open Source Nagios Projects
Topic: Protect nagios configuration files
Replies: 2
Views: 2100

Re: Protect nagios configuration files

Does your server allow root access without authentication?

You surely do have a working backup system and - even better - you keep track of configuration changes by using some version control system like git and the like.
by pomtomm
Fri Nov 13, 2020 7:44 am
Forum: Open Source Nagios Projects
Topic: [SOLVED] check_ldap: Could not init startTLS at port 389
Replies: 3
Views: 3718

Re: check_ldap: Could not init startTLS at port 389 [Debian

I changed the command definition to command_line sudo /usr/lib/nagios/plugins/check_ldap -H $ARG1$ -b $ARG2$ -D $ARG3$ -P $USER7$ -T and in fact, it worked. Which pointed me in the right direction - I really forgot to check whether the nagios user can access the Letsencrypt CA certificate file :mrgr...
by pomtomm
Thu Nov 12, 2020 4:36 pm
Forum: Open Source Nagios Projects
Topic: Scheduling Downtime for Bulk services in Nagios core
Replies: 3
Views: 3835

Re: Scheduling Downtime for Bulk services in Nagios core

Check the external command reference regarding SCHEDULE_SVC_DOWNTIME SCHEDULE_HOST_DOWNTIME DEL_SVC_DOWNTIME DEL_HOST_DOWNTIME Basically, you need a (Bash, Perl, Python) loop iterating through your list of hosts and services, writing the appropriate downtime command to the Nagios command pipe (nagio...
by pomtomm
Thu Nov 12, 2020 4:11 pm
Forum: Open Source Nagios Projects
Topic: [SOLVED] check_ldap: Could not init startTLS at port 389
Replies: 3
Views: 3718

[SOLVED] check_ldap: Could not init startTLS at port 389

Nagios server is running on Debian 10 with software from the standard repos (nagios4-4.3.4-3, monitoring-plugins-standard-2.2-6) I'm getting a "Could not init startTLS at port 389" error from check_ldap when executed as a Nagios service check. If I run the plugin from the shell, it's worki...