Search found 40 matches

by Stuart Watts
Tue May 27, 2014 5:21 am
Forum: Nagios XI
Topic: rrd does not exist
Replies: 25
Views: 4100

Re: rrd does not exist

You could be hitting limits for the number of open files a process is allowed to have, or the limit on the total number of files the system can have open.

Please provide the output from:

Code: Select all

su - nagios -c "ulimit -Sn; ulimit Hn"

Code: Select all

lsof -u nagios | wc -l
and

Code: Select all

sysctl fs.file-nr
by Stuart Watts
Tue May 27, 2014 3:47 am
Forum: Open Source Nagios Projects
Topic: Exit code - Python script
Replies: 18
Views: 13876

Re: Exit code - Python script

This sort of thing catches me out far too often!

I'm trying to make a habit of testing plugins like:

Code: Select all

su - nagios -c "/usr/local/nagios/libexec/check_something -H somehost -w 1 -c 2"
Also, you shouldn't be logged in as 'root', ideally!
by Stuart Watts
Fri May 23, 2014 9:01 am
Forum: Open Source Nagios Projects
Topic: Email notification from Nagios
Replies: 24
Views: 14628

Re: Email notification from Nagios

Postfix is the default MTA in CentOS 6.5. I'm not sure how you might have installed it again! Still, the issue is Postfix is timing out trying to get to port 25 on a remote mail server, and that's normally network related (a firewall is stopping you).
by Stuart Watts
Fri May 23, 2014 8:48 am
Forum: Open Source Nagios Projects
Topic: [SOLVED] - Host notifications not always sent
Replies: 10
Views: 7083

Re: Host notifications not always sent

tapp wrote: Nagios detected the host down at 18:24, but didn't send the notification until 09:00:
The host has "notification_period" set to "workhours" which by default is 0900-1700 Monday to Friday. This might explain what you're referring to here.
by Stuart Watts
Fri May 09, 2014 9:10 am
Forum: Nagios XI
Topic: Changing the from e-mail address in Nagios
Replies: 13
Views: 2948

Re: Changing the from e-mail address in Nagios

Hi PO How does your Nagios server send mail? Directly ("Sendmail" in Admin->Manage Email Settings), or through a relay ("SMTP" in Admin->Manage Email Settings)? You can have the MTA (local sendmail or the remote SMTP server) rewrite sender fields as the mail is sent - I may be ov...
by Stuart Watts
Wed May 07, 2014 10:45 am
Forum: Nagios XI
Topic: Misc Settings Page - Notes URL export
Replies: 4
Views: 915

Re: Misc Settings Page - Notes URL export

All of the service configurations for each host are contained in /usr/local/nagios/etc/services/"HOSTNAME".cfg - these are plain text files, so if you're okay with tools like grep, knock yourself out (something like "grep -hi -B5 notes_url /usr/local/nagios/etc/services/* | grep -e &q...
by Stuart Watts
Wed May 07, 2014 9:34 am
Forum: Nagios XI
Topic: Install Nagios for MS SQL Server DB monitoring
Replies: 8
Views: 3357

Re: Install Nagios for MS SQL Server DB monitoring

So to setup the monitoring through Nagios, I need a Linux machine on which I need to install Nagios XI + MS SQL plugins. There's a pre-installed NagiosXI VM you can use (assuming you have a virtualized environment somewhere). Or perform a 'Minimal' installation of CentOS 6.5 , and manually install ...
by Stuart Watts
Wed May 07, 2014 9:12 am
Forum: Nagios XI
Topic: Service Status CRITICAL
Replies: 6
Views: 1105

Re: Service Status CRITICAL

Those errors smack of network issues to me - your Ping service is losing 100% of packets, which isn't good! Those 4 services for that machine are also "flapping" (switching between OK and not OK a lot), which may indicate a troublesome network connection to that machine.
by Stuart Watts
Fri May 02, 2014 4:13 am
Forum: Nagios XI
Topic: check_openmanage - Performance Graphs (revisited)
Replies: 3
Views: 590

Re: check_openmanage - Performance Graphs (revisited)

That's the same version as ships in 2012R2.9, I think.

Time to start hacking the PHP then, I think.
by Stuart Watts
Thu May 01, 2014 4:07 am
Forum: Nagios XI
Topic: check_openmanage - Performance Graphs (revisited)
Replies: 3
Views: 590

check_openmanage - Performance Graphs (revisited)

According to this thread from a year ago, the check_openmanage plugin PHP template for graphing isn't compatible with the PNP4Nagios version in the latest (stable) NagiosXI. I don't see any mention of PNP4Nagios getting an upgrade in the 2014 release that's just gone Beta. Can anyone confirm if PNP4...