Search found 3 matches

by nagiosbeginner
Tue Oct 13, 2020 4:41 am
Forum: Open Source Nagios Projects
Topic: Disbale nagios shell access
Replies: 1
Views: 752

Disbale nagios shell access

Hi All,

cat /etc/passwd | grep nagios
nagios:x:992:989::/home/nagios:/bin/bash

What's the impact if I disable the nagios shell ?

Command to disable:
usermod -s /bin/false nagios

nagios:x:992:989::/home/nagios:/bin/false

How it affects the performance of nagios
by nagiosbeginner
Thu Oct 01, 2020 4:42 am
Forum: Open Source Nagios Projects
Topic: Send alerts based on states
Replies: 1
Views: 803

Send alerts based on states

Hi All,

I want to send alerts like this


If the state is critical I want to send it to one particular group

If the state is warning I want to send it to another group.


How can I achieve this task ?
by nagiosbeginner
Wed Jun 24, 2020 6:50 am
Forum: Open Source Nagios Projects
Topic: Nagios Downtime using Ansible
Replies: 1
Views: 1262

Nagios Downtime using Ansible

Hi, I tried to schedule downtime using ansible for nagios core. But I'm getting Error: External command failed -> SCHEDULE_SVC_DOWNTIME;localhost;httpd;1592999244;1592999544;1;0;300;Ansible;test --- - name: Nagios Downtime hosts: localhost become: true tasks: - name: Downtime for swap nagios: action...