Search found 11 matches

by BettyRNorahDeniels
Tue Dec 13, 2022 6:13 am
Forum: Nagios Log Server
Topic: Connection Problems
Replies: 0
Views: 10626

Connection Problems

I'm new to Nagios, and I'm trying to set up a server at work so that I can monitor the status of about 15 computers around the world. I'm having issues when it comes to keeping connection to the host. When I initially run Nagios, I can usually connect from a non-host PC for about 5 minutes, until it...
by BettyRNorahDeniels
Tue Nov 29, 2022 12:29 am
Forum: Open Source Nagios Projects
Topic: Nagios & Check_MK certain notifications?
Replies: 0
Views: 10437

Nagios & Check_MK certain notifications?

I run nagios3 on a debian system and I want to separate notifications. Now all notifications get sent to e-mail and SMS. What I want is that when a certain service gives either a warning or critical it gets send to SMS. So let's say I have service A, B, C and D. I want to be notified by SMS if omegl...
by BettyRNorahDeniels
Mon Aug 29, 2022 6:56 am
Forum: Open Source Nagios Projects
Topic: monitoring the number of RDP users using nagios core?
Replies: 0
Views: 1950

monitoring the number of RDP users using nagios core?

I'm using Nagios Core 4.3.4. Is there any way to monitor the number of users connected to the server RDP on a omegle.2yu.co Windows server like nrpe check_users? Please omeglz echat tell me if you have.
by BettyRNorahDeniels
Mon Jul 25, 2022 6:46 am
Forum: Open Source Nagios Projects
Topic: Monitor a service running on a port other than 80 in Nagios
Replies: 3
Views: 1536

Monitor a service running on a port other than 80 in Nagios

How do we monitor a remote service running on a machine using Nagios. I have created a cfg file as follows: define command { command_name check_http command_line /usr/lib64/nagios/plugins/check_http -H $HOSTADDRESS$ -p 8082 } Now when I reload the configuration file, it throws following error: Warni...
by BettyRNorahDeniels
Fri Jun 17, 2022 12:26 am
Forum: Open Source Nagios Projects
Topic: Nagios contacts configuration
Replies: 1
Views: 1074

Nagios contacts configuration

I am new at learning the Nagios of 4.4.6 version. I have configured host configuration and service configuration in my Nagios CLI and restarted then everything updated on Nagios Web GUI (localhost/nagiosxi). When I was updating "contact" in web GUI, it is updating on Nagios CLI of /usr/loc...
by BettyRNorahDeniels
Mon Jun 13, 2022 7:23 am
Forum: Open Source Nagios Projects
Topic: Nagios plugin check_logfiles users and implementers usage on
Replies: 0
Views: 997

Nagios plugin check_logfiles users and implementers usage on

I'm looking for anyone that is using the Nagios Plugin check_logfiles for Windows. I have this plugin working under Linux OS. I am really struggling getting it built and working under Windows OS. so many things, but I can't get a good plugin built for Windows. I must be doing something wrong, as I s...
by BettyRNorahDeniels
Mon Jun 06, 2022 7:09 am
Forum: Open Source Nagios Projects
Topic: Starting java process using nagios
Replies: 2
Views: 1612

Re: Starting java process using nagios

I want to monitor a java process on a windows machine with nagios. On the windows server with process explorer I can see that the java process is started with "java -jar myApp.jar" in the command line. I've installed the NSClient++ and want to use the CheckProcState plugin. check_nrpe -H 1...
by BettyRNorahDeniels
Tue May 31, 2022 5:44 am
Forum: Open Source Nagios Projects
Topic: Nagios plugins location
Replies: 0
Views: 967

Nagios plugins location

Hi I have ubuntu ec2 instance I want to monitor. I haven't installed plugins on NRPE server which is using xinetd but instead I have configured and installed plugins on Nagios server. However except check_ssh nothing gets executed when I test from libexec directory from Nagios server.I have elastics...
by BettyRNorahDeniels
Wed Apr 27, 2022 2:31 am
Forum: Open Source Nagios Projects
Topic: Nagios return status unknow
Replies: 1
Views: 1535

Re: Nagios return status unknow

One thing that's caught me out in the past with Nagios scripts is user rights. When testing your script directly on the command line be sure to precede it with: sudo -u nagios So yours would be: sudo -u nagios /usr/lib64/nagios/plugins/check_tsm db -v6 This assumes that your nagios instance is being...
by BettyRNorahDeniels
Wed Apr 27, 2022 2:30 am
Forum: Open Source Nagios Projects
Topic: Nagios - Status UNKNOWN for bash script
Replies: 0
Views: 858

Nagios - Status UNKNOWN for bash script

Hi I am trying to monitor my EC2 loadblancer through Nagios using a bash script. Below is the script which I am trying to implement with Nagios. #!/bin/sh ST_OK=0 ST_WR=1 ST_CR=2 ST_UK=3 LB_NAME="xxx" AWS_REGION="us-west-2" PROFILE="default" CMD=$(/usr/bin/aws elb descr...