From gwichman at zantaz.com Sat Mar 1 00:55:46 2003 From: gwichman at zantaz.com (Gerald Wichmann) Date: Fri, 28 Feb 2003 15:55:46 -0800 Subject: NRPE and Solaris Problem Message-ID: <12C7D768CC8ED4118A9200508BEEC6FB02CB4282@zanexch.zantaz.com> When I run the NRPE daemon on solaris, it works fine when running in stand alone mode. However if I try to run it using inetd, I just get [root at PS-NAT libexec]# ./check_nrpe 10.1.82.52 -c check_smtp CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? Tcpwrapper isn't installed on this server, so I would say yes it should be allowed to connect. A netstat -a | grep nrpe shows the box *is* listening for nrpe.. The nrpe.cfg file is set for port 5666 as is the entry in /etc/services Nothing gets logged in syslog or messages.. root at PS-DB-E250-01:/usr/sbin:!$ netstat -a | grep nrpe *.nrpe *.* 0 0 24576 0 LISTEN PS-DB-E250-01.nrpe 10.1.82.21.52311 7299 0 24616 0 TIME_WAIT root at PS-DB-E250-01:/usr/sbin:!$ As you can see above, when I do a check there is a connection that opens and says "TIME_WAIT".. Question is why isn't NRPE servicing that connection? Gerald Wichmann Senior Systems Development Engineer Zantaz, Inc. 925.598.3099 (w) This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm) service. For more information, visit us at www.zantaz.com. IMPORTANT: This electronic mail message is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone or directly reply to the original message(s) sent. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gwichman at zantaz.com Sat Mar 1 01:05:40 2003 From: gwichman at zantaz.com (Gerald Wichmann) Date: Fri, 28 Feb 2003 16:05:40 -0800 Subject: NRPE on Solaris Info #2 Message-ID: <12C7D768CC8ED4118A9200508BEEC6FB02CB4284@zanexch.zantaz.com> Some additional cut/paste's of various config files.. Far as I can tell this is all correct.. so why doesn't it work with inetd and only works with -daemon (stand alone)? /etc/service entry: nrpe 5666/tcp # Nagios NRPE daemon /etc/inetd.conf entry: # # Nagios NRPE Daemon # nrpe stream tcp nowait nagios /usr/sbin/nrpe -c /usr/local/nagios/nrpe.cfg --inetd NRPE - Nagios Remote Plugin Executor Copyright (c) 1999-2003 Ethan Galstad (nagios at nagios.org) Version: 1.8 Last Modified: 01-16-2003 License: GPL Usage: ./nrpe -c [mode] Options: = Name of config file to use [mode] = Determines how NRPE should run. Valid modes: --inetd = Run as a service under inetd or xinetd --daemon = Run as a standalone daemon Notes: This program is designed to process requests from the check_nrpe plugin on the host(s) running Nagios. It can run as a service under inetd or xinetd (read the docs for info on this), or as a standalone daemon. Once a request is received from an authorized host, NRPE will execute the command/plugin (as defined in the config file) and return the plugin output and return code to the check_nrpe plugin. root at PS-DB-E250-01:/usr/sbin:!$ cat /usr/local/nagios/nrpe.cfg ############################################################################ # # Sample NRPE Config File # Written by: Ethan Galstad (nagios at nagios.org) # # Last Modified: 06-03-2002 # # NOTES: # This is a sample configuration file for the NRPE daemon. It needs to be # located on the remote host that is running the NRPE daemon, not the host # from which the check_nrpe client is being executed. ############################################################################ # # PORT NUMBER # Port number we should wait for connections on. # NOTE: This must be a non-priviledged port (i.e. > 1024). # NOTE: This option is ignored if NRPE is running under either inetd or xinetd server_port=5666 # SERVER ADDRESS # Address that nrpe should bind to in case there are more than one interface # and you do not want nrpe to bind on all interfaces. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd #server_address=10.1.82.21 # ALLOWED HOST ADDRESSES # This is a comma-delimited list of IP address of hosts that are allowed # to talk to the NRPE daemon. # # NOTE: The daemon only does rudimentary checking of the client's IP # address. I would highly recommend adding entries in your # /etc/hosts.allow file to allow only the specified host to connect # to the port you are running this daemon on. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd allowed_hosts=10.1.82.21 # NRPE USER # This determines the effective user that the NRPE daemon should run as. # You can either supply a username or a UID. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd nrpe_user=nagios # NRPE GROUP # This determines the effective group that the NRPE daemon should run as. # You can either supply a group name or a GID. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd nrpe_group=nagios # DEBUGGING OPTION # This option determines whether or not debugging messages are logged to the # syslog facility. # Values: 0=debugging off, 1=debugging on debug=1 # COMMAND DEFINITIONS # Command definitions that this daemon will run. Definitions # are in the following format: # # command[]= # # When the daemon receives a request to return the results of # it will execute the command specified by the argument. # # Unlike Nagios, the command line cannot contain macros - it must be # typed exactly as it should be executed. # # Note: Any plugins that are used in the command lines must reside # on the machine that this daemon is running on! The examples below # assume that you have plugins installed in a /usr/local/nagios/libexec # directory. command[check_users]=/usr/local/nagios/libexec/check_users 5 10 command[check_load]=/usr/local/nagios/libexec/check_load 5 10 15 20 25 30 command[check_disk_hda5]=/usr/local/nagios/libexec/check_disk 80 95 /dev/hda5 command[check_disk_hda6]=/usr/local/nagios/libexec/check_disk 80 95 /dev/hda6 command[check_disk_hda10]=/usr/local/nagios/libexec/check_disk 80 95 /dev/hda10 command[check_disk_sda1]=/usr/local/nagios/libexec/check_disk 50 95 /dev/sda1 command[check_disk_md0]=/usr/local/nagios/libexec/check_disk 50 95 /dev/md0 command[check_disk_d30]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d30 command[check_disk_d32]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d32 command[check_disk_d35]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d35 command[check_disk_d36]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d36 command[check_disk_d37]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d37 command[check_disk_d38]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d38 command[check_disk_d39]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d39 command[check_disk_d40]=/usr/local/nagios/libexec/check_disk 50 90 /dev/md/dsk/d40 command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs 5 10 Z command[check_total_procs]=/usr/local/nagios/libexec/check_procs 150 200 command[check_smtp]=/usr/local/nagios/libexec/check_smtp -w 1 -c 5 command[check_mailsend]=/usr/local/nagios/libexec/calc_speed command[check_mailsendeta]=/usr/local/nagios/libexec/check_eta Gerald Wichmann Senior Systems Development Engineer Zantaz, Inc. 925.598.3099 (w) This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm) service. For more information, visit us at www.zantaz.com. IMPORTANT: This electronic mail message is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone or directly reply to the original message(s) sent. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From mwarner57 at hotmail.com Sat Mar 1 02:19:42 2003 From: mwarner57 at hotmail.com (Michael Warner) Date: Fri, 28 Feb 2003 17:19:42 -0800 Subject: Checking remote disk space with check_disk. Message-ID: I am setting up Nagios for the first time, and am having some problems getting disk usage stats from a remote hosts (capra). I am getting disk stats on Nagios, but they appear to be coming from the machine Nagios is running on (marlin). Is there anything special I need to to to get the command to execute remotely? My .cfg syntax is as follows: services.cfg: # Service definition for Linux local disk free space /dev/hda3 define service{ use generic-service ; Name of service template to use host_name capra service_description /dev/hda3 Disk Space is_volatile 0 check_period 24x7 contact_groups sys notification_options w,u,c,r check_command check_local_disk!"/dev/hda3" } checkcommands.cfg # 'check_local_disk' command definition define command{ command_name check_local_disk command_line /usr/lib/nagios/plugins/check_disk -w 10% -c 5% -p $ARG1$ -v } Thanks! Mike Warner _________________________________________________________________ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdunlap_z at yahoo.com Sat Mar 1 03:16:07 2003 From: tdunlap_z at yahoo.com (Tom Dunlap) Date: Fri, 28 Feb 2003 18:16:07 -0800 (PST) Subject: Nagios plugins and Windows2000 hosts Message-ID: <20030301021607.33362.qmail@web14108.mail.yahoo.com> Are there any plugins for doing service checks on Win2k hosts? I used check_disk but the values are incorrect. Thanks Tom Dunlap [newbie] __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chris at xecu.net Sat Mar 1 04:59:08 2003 From: chris at xecu.net (Chris McGee) Date: Fri, 28 Feb 2003 22:59:08 -0500 (EST) Subject: FreeBSD & Nagios with statusmap.cgi | How?? In-Reply-To: References: Message-ID: All of the logging options are in the nagios.cfg file. I have no problems with the logs. I have all the host and service issues logged and they are all being logged. You should definitely read the documentation on the various log options for the main configuration file. I hate to give you this read the manual answer but I think everything you need is in there. If all config options are set properly and it still doesn't work, please give us some details of your logging configuration. Chris On Fri, 28 Feb 2003, Otmar Conradus wrote: > Hi All, > > I am another FreeBSD nagios user. > Unfortunately I still have problems with the host logging which I posted > a week ago. > Are you guys experiencing the same problem? > - I did set the log rotation for daily and it's not rotating. > - The nagios.log only has startup times of the nagios process and all > host warnings etc are not logged. > > Otmar Conradus > Curacao, Netherlands Antilles > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Bas van > der Veen > Sent: Thursday, February 27, 2003 5:39 PM > To: Chris McGee > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] FreeBSD & Nagios with statusmap.cgi | How?? > > > Thanks, Chris. > Just got it working the same way you solved it :) > > Telling Nagios where the gd files are indeed did the trick. > > -----Original Message----- > From: Chris McGee [mailto:chris at xecu.net] > Sent: donderdag 27 februari 2003 22:23 > To: Bas van der Veen > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] FreeBSD & Nagios with statusmap.cgi | How?? > > > > Alright, got this problem solved. Anyone having problems with the > statusmap.cgi on FreeBSD, here is the solution. In short, this > particular cgi relies on gd and the configure script can't find it if > you've installed the port. It must be gd 1.6.3 or higher. Check > pkg_info and see if you have gd installed. If not, it should be in > /usr/ports/graphics/gd. Run your configure script with > --with-gd-lib=/usr/local/lib/ --with-gd-inc=/usr/local/include/gd/ > as options and it should detect the port version of gd. Continue with > installation as normal and it should install the statusmap.cgi. This > worked for me. If you have any trouble, feel free to contact me. > > On Thu, 27 Feb 2003, Bas van der Veen wrote: > > > Chris, > > > > Thanks. > > I too noticed the prefix change. > > > > I'll compile it again from source then. > > I'd really appreciate the info on the statusmap. :) > > > > Bas > > > > -----Original Message----- > > From: Chris McGee [mailto:chris at xecu.net] > > Sent: donderdag 27 februari 2003 21:24 > > To: Bas van der Veen > > Subject: RE: [Nagios-users] FreeBSD & Nagios with statusmap.cgi | > > How?? > > > > > > On Thu, 27 Feb 2003, Bas van der Veen wrote: > > > > > Hi Chris, > > > > > > Could you please tell me how you installed Nagios on your FreeBSD > > > machine? I got it working without statusmap.cgi by compiling. I > > > somehow got it all working running the ported version. Which one > > > would you recommend? > > > > > > Bas > > > > Actually, it's funny you ask about this because since I've upgraded to > > > the non-beta version, the statusmap stopped working. I've built mine > > from source and as soon as I figure out why it doesn't install, I'll > > gladly tell you. I just recently upgraded so I'm still sorting out a > > few upgrade bugs. I did have it running from teh port on one machine > > but you'll notice everything goes to strange places. It uses > > /usr/local as the prefix instead of /usr/local/nagios. I prefer the > > source. I'll fill you in when I solve the mysterious statusmap > > problem. > > > > Chris > > > > > -----Original Message----- > > > From: Chris McGee [mailto:chris at xecu.net] > > > Sent: donderdag 27 februari 2003 16:27 > > > To: Bas van der Veen > > > Cc: Karl DeBisschop; nagios-users at lists.sourceforge.net > > > Subject: RE: [Nagios-users] FreeBSD & Nagios with statusmap.cgi | > > > How?? > > > > > > > > > > > > I'm one "Nagios on FreeBSD" user. I agree that it is very hard for > > > the Nagios development team to keep track of all the ports for > > > various OS's. The nice thing is that the OS developers/port > > > developers do it for us. If you're using freebsd and looking for a > > > port/package for it, the freebsd team has been nice enough to > > > provide us with a page to search through the ported applications > > > > > > http://www.freebsd.org/ports/index.html > > > > > > Chris > > > > > > On Thu, 27 Feb 2003, Bas van der Veen wrote: > > > > > > > You're right. > > > > > > > > I suppose there are too much *NIX and *BSD types around, and the > > > > last thing I expect is the Nagios developers being too busy > > > > keeping track of all used OSes instead of improving Nagios. > > > > > > > > Let's just say I was surprised I couldn't find (almost) anything > > > > about Nagios on FreeBSD. I thought FreeBSD was a commonly used OS, > > > > > to my surprise there aren't much Nagios fans using it. > > > > > > > > If you'd like me to provide you with some info about the FreeBSD > > > > port, let me know... I'll see what I can do (please keep in mind > > > > that I have nothing to do with the ported install and that I > > > > mostly use RedHat Linux (up till now). > > > > > > > > Regards, > > > > > > > > Bas > > > > > > > > -----Original Message----- > > > > From: Karl DeBisschop [mailto:karl at debisschop.net] > > > > Sent: donderdag 27 februari 2003 13:29 > > > > To: Bas van der Veen > > > > Cc: nagios-users at lists.sourceforge.net > > > > Subject: RE: [Nagios-users] FreeBSD & Nagios with statusmap.cgi | > > > > How?? > > > > > > > > > > > > On Thu, 2003-02-27 at 07:12, Bas van der Veen wrote: > > > > > Karl, > > > > > > > > > > I didn't mean to imply that the developers of Nagios should make > > > > > > the *total* faq for running Nagios on FreeBSD. > > > > > > > > > > > > > Just a little note stating that FreeBSD users can use the ported > > > > > > version (without any warranty about it functioning or not) would > > > > > > have been nice. I had Nagios up and running in 3 hours on a > > > > > linux box (fully working that is). FreeBSD takes 2 days now and > > > > > it ain't finished yet :-( (FreeBSD = company policy). > > > > > > > > My point is that I don't know except through you that nagios is in > > > > > ports (though apparently some on the list do). I still don't know > > > > if the plugins are in ports. And I don't really know how to find > > > > out. > > > > > > > > Then there the other BSD's, sunfreeware, debian, mandrake, gentoo, > > > > > caldra, and a variety of other porting/packaging facilites. Would > > > > you have us track all those too? > > > > > > > > IMHO, the maintainers should feel free to come forward and ask for > > > > > posting, and try to help keep those FAQ items up to date. As a > > > > general proposition, it is not in our scope, unless we add > > > > advocacy to our scope. > > > > > > > > Do you see my point? Maybe I'm being thick, but I think it's a > > > > point worth at least considering. > > > > > > > > -- > > > > Karl > > > > > > > > > -----Original Message----- > > > > > From: Karl DeBisschop [mailto:karl at debisschop.net] > > > > > > > > > On Thu, 2003-02-27 at 05:52, Bas van der Veen wrote: > > > > > > Ok, looks like nagios is a ported application for FreeBSD. > > > > > > > > > > > > I am now checking whether this install works :-) > > > > > > > > > > > > Would have been nice if I could have found this in the FAQ's > > > > > > or the FM though... > > > > > > > > > > I'm not sure I agree. We have nothing to do with the port. It > > > > > can come or go, the version in ports can change, the maintainer > > > > > could forsake the material world and run off the a convent at > > > > > the north pole and we'd know nothing about it. So why shoould we > > > > > > be responsible for making that FAQ. Shouldn't the ports > > > > > maintainer make that information readily available, rather than > > > > > us? > > > > > > > > > > (Not trying to be sarcastic -- nor do I rule the idea out. But > > > > > it does seem like our standing in FreeBSD ports is simply not > > > > > best placed in our FAQ, or if there is a placement, it should be > > > > > > quite general.) > > > > > > > > > > Or the port maintainer should be more communicative about it to > > > > > us so we can know the above things. (Maybe s/he has been and > > > > > I've missed it, bu > > > > > > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > > > Chris McGee 301-682-9972 > > > Xecunet, LLC www.xecu.net > > > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > > > Dialup * Webhosting * E-Commerce * High-Speed Access > > > > > > > > > > > > > > > > > > > > > > > > ****************************************************************** > > > This footnote also confirms that this email message has been swept > > > by MIMEsweeper for the presence of computer viruses. > > > ****************************************************************** > > > http://www.kahuna.nl > > > > > > > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > > Chris McGee 301-682-9972 > > Xecunet, LLC www.xecu.net > > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > > Dialup * Webhosting * E-Commerce * High-Speed Access > > > > > > > > > > > > > > > > ****************************************************************** > > This footnote also confirms that this email message has > > been swept by MIMEsweeper for the presence of > > computer viruses. > > ****************************************************************** > > http://www.kahuna.nl > > > > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > Chris McGee 301-682-9972 > Xecunet, LLC www.xecu.net > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx > Dialup * Webhosting * E-Commerce * High-Speed Access > > > > > > > > > ****************************************************************** > This footnote also confirms that this email message has > been swept by MIMEsweeper for the presence of > computer viruses. > ****************************************************************** > http://www.kahuna.nl > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Chris McGee 301-682-9972 Xecunet, LLC www.xecu.net xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Dialup * Webhosting * E-Commerce * High-Speed Access ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdunlap_z at yahoo.com Sat Mar 1 05:33:22 2003 From: tdunlap_z at yahoo.com (Tom Dunlap) Date: Fri, 28 Feb 2003 20:33:22 -0800 (PST) Subject: RedHat 8.0, latest Nagios install and GD Libs not found Message-ID: <20030301043323.50171.qmail@web14106.mail.yahoo.com> I installed Nagios on a RH8.0 server. I installed all the appropriate graphics libraries according to Boutwell's web site (ljpeg, ljpeg-devel,...) but the Nagios configure still tells me that the gd libs are not found. I located them manually, checked that they were installed and their LIB and INC locations. I ran Nagios configure with the --with-gd-lib and --with-gd-inc settings - still no luck. All the graphics packages were installed with RPM except for the GD libs - could not find an RPM for this so I had to compile them manually. Any ideas? Thank you Tom Dunlap __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jmhowell at jmhowell.com Sat Mar 1 07:28:23 2003 From: jmhowell at jmhowell.com (jmhowell at jmhowell.com) Date: Fri, 28 Feb 2003 23:28:23 -0700 (MST) Subject: RedHat 8.0, latest Nagios install and GD Libs not found In-Reply-To: <20030301043323.50171.qmail@web14106.mail.yahoo.com> References: <20030301043323.50171.qmail@web14106.mail.yahoo.com> Message-ID: <2327.12.219.122.2.1046500103.squirrel@private.vosn.net> > I installed Nagios on a RH8.0 server. > I installed all the appropriate graphics libraries > according to Boutwell's web site (ljpeg, ljpeg-devel,...) > but the Nagios configure still tells me that the gd libs > are not found. I located them manually, checked that > they were installed and their LIB and INC locations. I > ran Nagios configure with the --with-gd-lib and > --with-gd-inc settings - still no luck. > > All the graphics packages were installed with RPM except > for the GD libs - could not find an RPM for this so I had > to compile them manually. > Did you install the RPM's Or the source? I know from experience installing RPM's will stick some of the files in peculiar places and the source wont locate them. Also I think your /etc/ld.conf file lists all your lib paths, give that a try. Jerry M. Howell II ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hobbs at mongeese.co.uk Sat Mar 1 11:21:22 2003 From: hobbs at mongeese.co.uk (Hobbs, Richard) Date: Sat, 1 Mar 2003 10:21:22 -0000 Subject: Help! Can't compile... In-Reply-To: <1046468548.30195.0.camel@allah> References: <1046468548.30195.0.camel@allah> Message-ID: <004001c2dfdc$4e8a4980$66fea8c0@mongoose> Hello, Yes, there is a libgd in '/usr/local/lib', and the ./configure program found it... but... I compiled GD without JPEG support. This is obviuosly why it's failing ...but I thought we didn't need JPEG support for Nagios to work. It has PNG support and zlib support, so I thought that was enough to be able to make the graphics. turnip:/usr/local/lib# ls -l total 1848 drwxr-sr-x 3 root staff 4096 Jan 28 01:02 hugs98 -rw-r--r-- 1 root staff 720632 Feb 28 19:53 libgd.a -rwxr-xr-x 1 root staff 747 Feb 28 19:53 libgd.la lrwxrwxrwx 1 root staff 14 Feb 28 19:53 libgd.so -> libgd.so.2.0.0 lrwxrwxrwx 1 root staff 14 Feb 28 19:53 libgd.so.2 -> libgd.so.2.0.0 -rwxr-xr-x 1 root staff 432079 Feb 28 19:53 libgd.so.2.0.0 lrwxrwxrwx 1 root staff 10 Feb 28 17:39 libpng.a -> libpng12.a lrwxrwxrwx 1 root staff 11 Feb 28 17:39 libpng.so -> libpng.so.3 lrwxrwxrwx 1 root staff 17 Feb 28 17:39 libpng.so.3 -> libpng.so.3.1.2.5 -rwxr-xr-x 1 root staff 200076 Feb 28 17:39 libpng.so.3.1.2.5 -rw-r--r-- 1 root staff 224406 Feb 28 17:39 libpng12.a lrwxrwxrwx 1 root staff 13 Feb 28 17:39 libpng12.so -> libpng12.so.0 lrwxrwxrwx 1 root staff 19 Feb 28 17:39 libpng12.so.0 -> libpng12.so.0.1.2.5 -rwxr-xr-x 1 root staff 200076 Feb 28 17:39 libpng12.so.0.1.2.5 -rwxr-xr-x 1 root staff 65526 Feb 28 16:28 libz.a drwxrwsr-x 4 root staff 4096 Jan 26 02:23 mon drwxr-sr-x 2 root staff 4096 Feb 28 17:39 pkgconfig drwxrwsr-x 3 root staff 4096 Jan 26 02:16 python2.1 turnip:/usr/local/lib# I've been trying some other things this morning, but nothing has worked... I hope someone can help! Thanks, Richard. > Is there a libgd in /usr/local/lib? Or did you install it > somewhere else? > > Just curious what OS are you using? > > On Fri, 2003-02-28 at 15:13, Hobbs, Richard wrote: > > Hello, > > > > I'm trying to compile, but I'm receiving this error: > > > > > ====================================================================== > > turnip:~/installs/nagios/nagios-1.0# make all > > cd ./base && make > > make[1]: Entering directory `/root/installs/nagios/nagios-1.0/base' > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -L/usr/local/lib nagios.c > > checks.o config.o commands.o flapping.o logging.o notifications.o > > sehandlers.o utils.o sretention.o ../xdata/xrddefault.c > > ../common/comments.c ../xdata/xcddefault.c ../common/objects.c > > ../xdata/xodtemplate.c ../common/statusdata.c > ../xdata/xsddefault.c perfdata.o ../xdata/xpddefault.c > ../common/downtime.c > > ../xdata/xdddefault.c -lm -o nagios > > make[1]: Leaving directory `/root/installs/nagios/nagios-1.0/base' > > cd ./cgi && make > > make[1]: Entering directory `/root/installs/nagios/nagios-1.0/cgi' > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI -L/usr/local/lib statusmap.c > > getcgi.o cgiutils.o auth.o popen.o ../common/objects.c > > ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/xsddefault.c > > -lgd -lz -lm -lpng edata.o ../xdata/xedtemplate.c -o statusmap.cgi > > /tmp/ccyjmRWt.o: In function `load_image_from_file': > > /root/installs/nagios/nagios-1.0/cgi/statusmap.c:2222: undefined > > reference to `gdImageCreateFromJpeg' > > collect2: ld returned 1 exit status > > make[1]: *** [statusmap.cgi] Error 1 > > make[1]: Leaving directory `/root/installs/nagios/nagios-1.0/cgi' > > make: *** [all] Error 2 > > turnip:~/installs/nagios/nagios-1.0# > > > ====================================================================== > > > > Why is this happening? I've installed the GD libraries, the PNG > > libraries, the JPEG libraries, and the ZLIB libraries... But I'm > > stuck! > > > > I've tried everything.... Someone please help! lol > > > > Thanks, > > Richard. > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- Richard Hobbs hobbs at mongeese.co.uk http://mongeese.co.uk | http://unixforum.co.uk "There's only one way of life, and that's your own" - The Levellers _____________________________________________________ Send all your jokes to: jokes at fishsponge.co.uk !! To subscribe, email: jokes-subscribe at fishsponge.co.uk -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3226 bytes Desc: not available URL: From mailinglist at ichilton.co.uk Sat Mar 1 10:53:00 2003 From: mailinglist at ichilton.co.uk (Ian Chilton) Date: Sat, 1 Mar 2003 09:53:00 +0000 Subject: WML interface & Nokia 7650 In-Reply-To: <20030227140025.GA1378@roadrunner.ichilton.net> References: <20030227140025.GA1378@roadrunner.ichilton.net> Message-ID: <20030301095300.GB11254@roadrunner.ichilton.net> Hello, I have worked it out - it looks like the Nokia 7650 doesn't like the forms and post for some reason. I have changed some of the links in the source code to the format href='%s?param=value?parm2=value2' and this seems to fix it in some places but not work in other places :-( Anyone else have any ideas? Does the Nagios author ever reply to e-mails? - it would be nice to hear his take on this problem. Thanks --ian ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at pointpub.net Sat Mar 1 15:42:30 2003 From: nagios at pointpub.net (Sebastien Roy) Date: Sat, 1 Mar 2003 09:42:30 -0500 Subject: check_nt under AIX Message-ID: <003b01c2e000$c9aff910$fa7b12d8@SEBASTIEN> Hi folks, Someone can send me a compiled version of check_nt for AIX 4.3.3 ? Thanks in advance! SR -------------- next part -------------- An HTML attachment was scrubbed... URL: From d.johannson at web.de Sat Mar 1 16:36:00 2003 From: d.johannson at web.de (Dirk Johannson) Date: Sat, 01 Mar 2003 16:36:00 +0100 Subject: Notification In-Reply-To: References: Message-ID: <3E60D360.8020409@web.de> You must NOT put a sendmail-command into the misccommands.cfg, mail -s should do as it is. Sendmail is not intended as a user-interface, but as a MTA. Simply speaking, sendmail acts as the real mailserver, whereas "mail -s ..." in the misccommands.cfg acts as the mailclient, but both on the physically same machine. With a out-of the-box-installation of sendmail you should at least be able to receive mail locally on your nagios-box. If that part works, you can go on by configuring sendmail to forward mail to your "main" mailserver to receive notifications in the mailclient on your windows-, linux- or whatever-workstation. But I think, we drift away from the topic of this list a little bit. "man sendmail" could help you to get ahead. Sorry for my bad english... dj Hugo Rebello schrieb: > Could you tell me which sintaxe of sendmail that I put in misccommands.cfg > Nagios file ? Because in this file is "mail -s" sintaxe. > > Thank you > Hugo > > -----Original Message----- > From: Dirk Johannson [mailto:d.johannson at web.de] > Sent: quinta-feira, 27 de fevereiro de 2003 18:07 > To: Hugo Rebello > Cc: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Notification > > > Nagios itself has no SMTP Server configuration. You'll have to install > sendmail (or postfix or whatever you like) on your nagios box. Then you > can configure sendmail for sending all mails via your "normal" > mailserver (smarthost). You could also set up a pop3/imap server and get > mails direct from your nagios box. > > dj > > Hugo Rebello schrieb: > >>Where is the SMTP SERVER configuration in Nagios ? >>Because I don't receive the notifications by e-mail. >> >>Thank you. >>Hugo >> >> >> >> >>------------------------------------------------------- >>This sf.net email is sponsored by:ThinkGeek >>Welcome to geek heaven. >>http://thinkgeek.com/sf >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > >>::: Messages without supporting info will risk being sent to /dev/null > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From d.johannson at web.de Sat Mar 1 20:25:26 2003 From: d.johannson at web.de (Dirk Johannson) Date: Sat, 01 Mar 2003 20:25:26 +0100 Subject: define variables for notification Message-ID: <3E610926.20501@web.de> Hi, as far as I can see there are two hardcoded variables for notifications: mail ($CONTACTEMAIL$) and pager ($CONTACTPAGER$). Is it possible to define more variables, e.g. $CONTACTMACHINE$ for notifications via winpopup like "smbclient -M $CONTACTMACHINE$ "$NOTIFICATIONTYPE$ alert.........", or $CONTACTFAX$ for notifications via hylafax or something like that? [ ] I'm completely stupid and should read the docs ten times more ... [ ] I put this on the wish list for Nagios 2.0 ... [ ] ... Sorry for my bad english... dj ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdunlap_z at yahoo.com Sat Mar 1 22:48:01 2003 From: tdunlap_z at yahoo.com (Tom Dunlap) Date: Sat, 1 Mar 2003 13:48:01 -0800 (PST) Subject: RedHat 8.0, latest Nagios install and GD Libs not found In-Reply-To: <2327.12.219.122.2.1046500103.squirrel@private.vosn.net> References: <2327.12.219.122.2.1046500103.squirrel@private.vosn.net> Message-ID: <20030301214801.52279.qmail@web14103.mail.yahoo.com> I installed all libs except gd from RPMs, not source. I was manually able to locate all libs. --- jmhowell at jmhowell.com wrote: > > I installed Nagios on a RH8.0 server. > > I installed all the appropriate graphics libraries > > according to Boutwell's web site (ljpeg, > ljpeg-devel,...) > > but the Nagios configure still tells me that the gd > libs > > are not found. I located them manually, checked that > > they were installed and their LIB and INC locations. > I > > ran Nagios configure with the --with-gd-lib and > > --with-gd-inc settings - still no luck. > > > > All the graphics packages were installed with RPM > except > > for the GD libs - could not find an RPM for this so I > had > > to compile them manually. > > > > Did you install the RPM's Or the source? I know from > experience > installing RPM's will stick some of the files in > peculiar places > and the source wont locate them. Also I think your > /etc/ld.conf > file lists all your lib paths, give that a try. > > Jerry M. Howell II > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) > and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark_leddy at hotmail.com Sun Mar 2 03:58:56 2003 From: mark_leddy at hotmail.com (Mark Leddy) Date: Sun, 02 Mar 2003 02:58:56 +0000 Subject: cygwin and Nagios Message-ID: I have had Nagios running on a Redhat 7.3, I recently started playing with cygwin and found I was able to get check_nt compiled on a machine running Windows 2000 and cygwin, check_http also worked. I was real happy when all I needed to run these on another machine was to copy the check_nt.exe and cygwin1.dll. However - I had gotten on error trying to make all for the plugins gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib -g -O2 -c check_procs.c check_procs.c: In function `main': check_procs.c:106: `PS_COMMAND' undeclared (first use in this function) check_procs.c:106: (Each undeclared identifier is reported only once check_procs.c:106: for each function it appears in.) check_procs.c:123: `PS_FORMAT' undeclared (first use in this function) make[1]: *** [check_procs.o] Error 1 make[1]: Leaving directory `/cygdrive/c/temp/nagios/nagios-plugins-1.3.0-beta3/p lugins' make: *** [all-recursive] Error 1 Two questions: 1. How do I get around the error above? 2. Anyone ever tired to compile the full Nagios package using cygwin? I know that may sound foolish...but I gotta ask. Thanks, Mark (If anyone would be interested in the compiled check_nt.exe and check_http.exe let me know.) _________________________________________________________________ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at nagios.org Sun Mar 2 03:58:56 2003 From: nagios at nagios.org (Ethan Galstad) Date: Sat, 01 Mar 2003 20:58:56 -0600 Subject: define variables for notification In-Reply-To: <3E610926.20501@web.de> References: <3E610926.20501@web.de> Message-ID: <3E611F10.12498.1603A9@localhost> I'll be adding 8 (or so) generic address macros for contacts in 2.0 ($CONTACTADDRESS1$ through $CONTACTADDRESS8$). Since there are a zillion different types of addresses, it makes more sense to name them in a generic fashion. On 1 Mar 2003 at 20:25, Dirk Johannson wrote: > Hi, > > as far as I can see there are two hardcoded variables for notifications: > mail ($CONTACTEMAIL$) and pager ($CONTACTPAGER$). > > Is it possible to define more variables, e.g. $CONTACTMACHINE$ for > notifications via winpopup like "smbclient -M $CONTACTMACHINE$ > "$NOTIFICATIONTYPE$ alert.........", or $CONTACTFAX$ for notifications > via hylafax or something like that? > > [ ] I'm completely stupid and should read the docs ten times more ... > [ ] I put this on the wish list for Nagios 2.0 ... > [ ] ... > > > Sorry for my bad english... > > dj Ethan Galstad, Nagios Developer --- Email: nagios at nagios.org Website: http://www.nagios.org ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From manfred.steinbacher at scheucher.at Sun Mar 2 08:25:39 2003 From: manfred.steinbacher at scheucher.at (Steinbacher Manfred) Date: Sun, 2 Mar 2003 08:25:39 +0100 Subject: Network documentation Message-ID: Hello Is it possibly to make a physical documentation about a network (hub, switch, router ,outlet) with nagios. thanks manfred ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From showkilr at showkilr.com Sun Mar 2 13:16:13 2003 From: showkilr at showkilr.com (James Peterson) Date: Sun, 2 Mar 2003 06:16:13 -0600 Subject: RedHat 8.0, latest Nagios install and GD Libs not found References: <20030301214801.52279.qmail@web14103.mail.yahoo.com> Message-ID: <000701c2e0b5$855ecc40$d500a8c0@playnet.com> you need to have gd-devel-1.8.4-9 installed this is a rpm on the RedHat install cdrom.. James "Showkilr" Peterson Playnet Systems Administration www.playnet.com Anything Else is Just A Game! ----- Original Message ----- From: "Tom Dunlap" To: ; Sent: Saturday, March 01, 2003 3:48 PM Subject: Re: [Nagios-users] RedHat 8.0, latest Nagios install and GD Libs not found I installed all libs except gd from RPMs, not source. I was manually able to locate all libs. --- jmhowell at jmhowell.com wrote: > > I installed Nagios on a RH8.0 server. > > I installed all the appropriate graphics libraries > > according to Boutwell's web site (ljpeg, > ljpeg-devel,...) > > but the Nagios configure still tells me that the gd > libs > > are not found. I located them manually, checked that > > they were installed and their LIB and INC locations. > I > > ran Nagios configure with the --with-gd-lib and > > --with-gd-inc settings - still no luck. > > > > All the graphics packages were installed with RPM > except > > for the GD libs - could not find an RPM for this so I > had > > to compile them manually. > > > > Did you install the RPM's Or the source? I know from > experience > installing RPM's will stick some of the files in > peculiar places > and the source wont locate them. Also I think your > /etc/ld.conf > file lists all your lib paths, give that a try. > > Jerry M. Howell II > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) > and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fes at users.sourceforge.net Sun Mar 2 16:14:45 2003 From: fes at users.sourceforge.net (Frank Sweetser) Date: Sun, 2 Mar 2003 10:14:45 -0500 Subject: Network documentation In-Reply-To: References: Message-ID: <20030302151445.GA32474@erwin.wpi.edu> On Sun, Mar 02, 2003 at 08:25:39AM +0100, Steinbacher Manfred wrote: > Hello > > Is it possibly to make a physical documentation about a network (hub, > switch, router ,outlet) with nagios. You could probably do some of it with extended info, but you might be better off using LANdb. http://sf.net/projects/landb/ -- Frank Sweetser fs at wpi.edu WPI Network Engineer ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Hardy.Boehm at internetinfocenter.net Sun Mar 2 16:21:37 2003 From: Hardy.Boehm at internetinfocenter.net (Hardy Boehm) Date: Sun, 2 Mar 2003 16:21:37 +0100 Subject: Too many notifications Message-ID: <155102933453.20030302162137@internetinfocenter.net> Hello Folks, I installed nagios and so far everything works quite fine. I have one Problem though: I am monitoring a set of hosts, which are connected to my network via a slow connection. These hosts have the anoying habit of sometimes timing out on the first try. This always produces an eMail. How can I set up nagio, so that notifications are ONLY sent out after a certain number of tests? -- bye...hardy mailto:Hardy.Boehm at internetinfocenter.net http://www.hardy-boehm.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Sun Mar 2 17:06:12 2003 From: russell at quadrix.com (Russell Scibetti) Date: Sun, 02 Mar 2003 11:06:12 -0500 Subject: "Host assumed to be up" References: <75634F04BFCFD511BF69009027DC86495C5F9F@mailman.thenap.com> Message-ID: <3E622BF4.8070000@quadrix.com> Check the FAQ or look through the list archives. Hosts are only checked if a service check fails. Otherwise, if all services for that host are OK, the host is assumed to be up. Russell Drew Weaver wrote: >What does that mean? I have about 30 devices im monitoring with Nagios 1.0, >and 27 of them say "Host assumed to be up" and 3 of them say variants of : >PING OK - Packet loss = 0%, RTA = 1.10 ms, now. They all have 'check_ping' >as one of their services, but only 3 of them appear to be working correctly. > >Thanks, >-Drew > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Sun Mar 2 17:07:46 2003 From: russell at quadrix.com (Russell Scibetti) Date: Sun, 02 Mar 2003 11:07:46 -0500 Subject: Checking remote disk space with check_disk. References: Message-ID: <3E622C52.6070701@quadrix.com> check_disk only checks the local machine it is run on. You need to use either check_by_ssh or nrpe if you want to use check_disk to check remote machines. You could also get disk data via check_snmp if you have ucd-snmp running. Russell Michael Warner wrote: > I am setting up Nagios for the first time, and am having some problems > getting disk usage stats from a remote hosts (capra). I am getting > disk stats on Nagios, but they appear to be coming from the machine > Nagios is running on (marlin). Is there anything special I need to to > to get the command to execute remotely? My .cfg syntax is as follows: > > services.cfg: > > # Service definition for Linux local disk free space /dev/hda3 > define service{ > use generic-service ; Name of service template to use > host_name capra > service_description /dev/hda3 Disk Space > is_volatile 0 > check_period 24x7 > contact_groups sys > notification_options w,u,c,r > check_command check_local_disk!"/dev/hda3" > } > > checkcommands.cfg > # 'check_local_disk' command definition > define command{ > command_name check_local_disk > command_line /usr/lib/nagios/plugins/check_disk -w 10% -c 5% -p $ARG1$ -v > } > > Thanks! > > Mike Warner > > > > > > > > _________________________________________________________________ > Add photos to your e-mail with MSN 8. Get 2 months FREE*. > http://join.msn.com/?page=features/featuredemail > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk > being sent to /dev/null > > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Sun Mar 2 18:09:43 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Sun, 02 Mar 2003 12:09:43 -0500 (EST) Subject: Help! Can't compile... In-Reply-To: <000001c2df65$e17509f0$66fea8c0@mongoose> References: <000001c2df65$e17509f0$66fea8c0@mongoose> Message-ID: On Fri, 28 Feb 2003, Hobbs, Richard wrote: > Hello, > > I'm trying to compile, but I'm receiving this error: > > ====================================================================== > turnip:~/installs/nagios/nagios-1.0# make all > cd ./base && make > make[1]: Entering directory `/root/installs/nagios/nagios-1.0/base' > gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -L/usr/local/lib nagios.c checks.o config.o > commands.o flapping.o logging.o notifications.o sehandlers.o utils.o > sretention.o ../xdata/xrddefault.c ../common/comments.c ../xdata/xcddefault.c > ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c > ../xdata/xsddefault.c perfdata.o ../xdata/xpddefault.c ../common/downtime.c > ../xdata/xdddefault.c -lm -o nagios > make[1]: Leaving directory `/root/installs/nagios/nagios-1.0/base' > cd ./cgi && make > make[1]: Entering directory `/root/installs/nagios/nagios-1.0/cgi' > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI -L/usr/local/lib statusmap.c getcgi.o > cgiutils.o auth.o popen.o ../common/objects.c ../xdata/xodtemplate.c > ../common/statusdata.c ../xdata/xsddefault.c -lgd -lz -lm -lpng edata.o > ../xdata/xedtemplate.c -o statusmap.cgi > /tmp/ccyjmRWt.o: In function `load_image_from_file': > /root/installs/nagios/nagios-1.0/cgi/statusmap.c:2222: undefined reference to > `gdImageCreateFromJpeg' > collect2: ld returned 1 exit status > make[1]: *** [statusmap.cgi] Error 1 > make[1]: Leaving directory `/root/installs/nagios/nagios-1.0/cgi' > make: *** [all] Error 2 > turnip:~/installs/nagios/nagios-1.0# > ====================================================================== > > Why is this happening? I've installed the GD libraries, the PNG libraries, the > JPEG libraries, and the ZLIB libraries... But I'm stuck! > > I've tried everything.... Someone please help! lol > > Thanks, > Richard. > > what did configure say about having found the GD libraries? -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mailinglist at ichilton.co.uk Sun Mar 2 18:37:19 2003 From: mailinglist at ichilton.co.uk (Ian Chilton) Date: Sun, 2 Mar 2003 17:37:19 +0000 Subject: Too many notifications In-Reply-To: <155102933453.20030302162137@internetinfocenter.net> References: <155102933453.20030302162137@internetinfocenter.net> Message-ID: <20030302173719.GC11254@roadrunner.ichilton.net> Hello, > How can I set up nagio, so that notifications are ONLY sent out after > a certain number of tests? In hosts.cfg, when you setup the host, use something like this: max_check_attempts 5 This means, when the host is found down, it is only marked as "soft down" - it needs to fail 5 checks to be marked as "hard down" and a notification to be sent. Or, as the docs describe it: max_check_attempts: This directive is used to define the number of times that Nagios will retry the host check command if it returns any state other than an OK state. Setting this value to 1 will cause Nagios to generate an alert without retrying the host check again. Note: If you do not want to check the status of the host, you must still set this to a minimum value of 1. To bypass the host check, just leave the check_command option blank. Hope this helps --ian ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Sun Mar 2 18:32:29 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Sun, 02 Mar 2003 12:32:29 -0500 (EST) Subject: OT: mailing list administrivia re: Sender Verification Request In-Reply-To: References: Message-ID: Brian Watters (brwatters at revol.com) has been unsubscribed. Anybody who posted to the list recently received the messages. As a reminder to all Nagios users, if somebody you don't know, wants you to authenticate yourself - please don't. -sg On Fri, 28 Feb 2003, Carroll, Jim P [Contractor] wrote: > Is anyone else getting this sort of cruft from this guy? > > Could the moderator of the list please take appropriate action? I've > received 8 such msgs from this guy today. All at once, no less. > > I would consider simply replying to this as requested, except for an > unfortunate story which has strongly similar overtones: > > http://static.samspade.org/spamarrest.html > > jc > > > -----Original Message----- > From: brwatters at revol.com [mailto:brwatters at revol.com] > Sent: Friday, February 28, 2003 3:35 PM > To: Carroll, Jim P [Contractor] > Subject: Sender Verification Request > > > Hello, > > I have an anti-spam service named SpamWall screening my e-mail. You are > not currently on my "authorized sender" list and I need you to follow the > directions below to authenticate yourself. This is a quick, one-time > process, > so you'll never receive another verfication request from me again. > > Please reply to this message and copy and paste the following authorization > code into the "Subject:" line of the reply message: > > bbcbfc7ae303020542a46b87bec064c1 > > Thank you for helping the fight against spam. I look forward to reading > your e-mail, once you've been authenticated. > > Sincerely, > > > Brian Watters > > ----------------------------------------------------------------------- > Powered by SpamWall Services LLC http://www.SpamWall.net > Leading the Anti-Spam Revolution > > > From jcarro10 at sprintspectrum.com Fri Feb 28 15:35:09 2003 > > Received: from sc8-sf-list2.sourceforge.net [66.35.250.206] by revol.com > with ESMTP > > (SMTPD32-7.14) id A5C115A0236; Fri, 28 Feb 2003 13:33:53 -0800 > > Received: from sc8-sf-list1-b.sourceforge.net ([10.3.1.13] > helo=sc8-sf-list1.sourceforge.net) > > by sc8-sf-list2.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 > (Debian)) > > id 18orj7-000836-00; Fri, 28 Feb 2003 13:07:29 -0800 > > Received: from smtpgw5.sprintspectrum.com ([207.40.188.13]) > > by sc8-sf-list1.sourceforge.net with esmtp (Exim 3.31-VA-mm2 #1 > (Debian)) > > id 18orhX-0005cX-00 > > for ; Fri, 28 Feb 2003 13:05:51 > -0800 > > Received: from pkcex003.sprintspectrum.com (pkcex003.sprintspectrum.com > [208.10.75.138]) > > by smtpgw5.sprintspectrum.com (8.11.2/8.11.3) with ESMTP id > h1SL5JE18782; > > Fri, 28 Feb 2003 15:05:34 -0600 (CST) > > Received: by pkcex003.sprintspectrum.com with Internet Mail Service > (5.5.2654.89) > > id <1PXH9GCG>; Fri, 28 Feb 2003 14:38:19 -0600 > > Message-ID: > > > From: "Carroll, Jim P [Contractor]" > > To: "'Hugo Rebello'" , > > nagios-users at lists.sourceforge.net > > Subject: RE: [Nagios-users] Notification by e-mail > > MIME-Version: 1.0 > > X-Mailer: Internet Mail Service (5.5.2654.89) > > Content-Type: text/plain; > > charset="iso-8859-1" > > Sender: nagios-users-admin at lists.sourceforge.net > > Errors-To: nagios-users-admin at lists.sourceforge.net > > X-BeenThere: nagios-users at lists.sourceforge.net > > X-Mailman-Version: 2.0.9-sf.net > > Precedence: bulk > > List-Help: > > > List-Post: > > List-Subscribe: > , > > > > > List-Id: Nagios Users List > > List-Unsubscribe: > , > > > > > List-Archive: > > > X-Original-Date: Fri, 28 Feb 2003 14:38:11 -0600 > > Date: Fri, 28 Feb 2003 14:38:11 -0600 > > X-Note: This e-mail scanned for JunkMail with safE-Mail by American > Broadband Services - info at abs-internet.com > > X-Note: This E-mail was sent from 206.250.35.66.in-addr.arpa > ([66.35.250.206]). > > X-RCPT-TO: > > Status: U > > X-UIDL: 345702422 > > > > Does mail delivery from your Nagios host work at all? > > > > What happens when you try this command on the Nagios host: > > > > echo "hello" | mail hugo.rebello at br.danzas.com > > > > Do you get an e-mail in your inbox from the Nagios host? If not, your > > sendmail.cf could be misconfigured. If this is the case, you might want > to > > check the FAQ on www.nagios.org. > > > > jc > > > > > > > -----Original Message----- > > > From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] > > -- original message truncated for brevity > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From albler-b at chello.at Sun Mar 2 18:33:32 2003 From: albler-b at chello.at (Bernhard Albler) Date: Sun, 02 Mar 2003 18:33:32 +0100 Subject: Too many notifications In-Reply-To: <155102933453.20030302162137@internetinfocenter.net> References: <155102933453.20030302162137@internetinfocenter.net> Message-ID: <3E62406C.3030707@chello.at> Hardy Boehm wrote: >Hello Folks, > > I installed nagios and so far everything works quite fine. > I have one Problem though: > I am monitoring a set of hosts, which are connected to my network via > a slow connection. These hosts have the anoying habit of sometimes > timing out on the first try. This always produces an eMail. > > How can I set up nagio, so that notifications are ONLY sent out after > a certain number of tests? > > > > hi, this is pretty much standard functionality of nagios and is well described in in the docs: http://nagios.sourceforge.net/docs/1_0/xodtemplate.html a little cut and paste: *max_check_attempts*: This directive is used to define the number of times that Nagios will retry the host check command if it returns any state other than an OK state. Setting this value to 1 will cause Nagios to generate an alert without retrying the host check again. Note: If you do not want to check the status of the host, you must still set this to a minimum value of 1. To bypass the host check, just leave the /check_command/ option blank. btw: it looks like the nagios list archives at sf aren't working. -- Bernhard ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From albler-b at chello.at Sun Mar 2 18:32:15 2003 From: albler-b at chello.at (Bernhard Albler) Date: Sun, 02 Mar 2003 18:32:15 +0100 Subject: Too many notifications In-Reply-To: <155102933453.20030302162137@internetinfocenter.net> References: <155102933453.20030302162137@internetinfocenter.net> Message-ID: <3E62401F.1050507@chello.at> Hardy Boehm wrote: >Hello Folks, > > I installed nagios and so far everything works quite fine. > I have one Problem though: > I am monitoring a set of hosts, which are connected to my network via > a slow connection. These hosts have the anoying habit of sometimes > timing out on the first try. This always produces an eMail. > > How can I set up nagio, so that notifications are ONLY sent out after > a certain number of tests? > > > > hi, this is pretty much standard functionality of nagios and is well described in in the docs: http://nagios.sourceforge.net/docs/1_0/xodtemplate.html a little cut and paste: *max_check_attempts*: This directive is used to define the number of times that Nagios will retry the host check command if it returns any state other than an OK state. Setting this value to 1 will cause Nagios to generate an alert without retrying the host check again. Note: If you do not want to check the status of the host, you must still set this to a minimum value of 1. To bypass the host check, just leave the /check_command/ option blank. -- Bernhard ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Sun Mar 2 18:00:34 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Sun, 02 Mar 2003 12:00:34 -0500 (EST) Subject: Too many notifications In-Reply-To: <155102933453.20030302162137@internetinfocenter.net> References: <155102933453.20030302162137@internetinfocenter.net> Message-ID: On Sun, 2 Mar 2003, Hardy Boehm wrote: > Hello Folks, > > I installed nagios and so far everything works quite fine. > I have one Problem though: > I am monitoring a set of hosts, which are connected to my network via > a slow connection. These hosts have the anoying habit of sometimes > timing out on the first try. This always produces an eMail. > > How can I set up nagio, so that notifications are ONLY sent out after > a certain number of tests? > > > increase the number of retries and/or the retry interval -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Mon Mar 3 00:15:54 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Mon, 3 Mar 2003 10:15:54 +1100 Subject: FreeBSD & Nagios with statusmap.cgi | How?? In-Reply-To: ; from otmar@e-commercepark.com on Fri, Feb 28, 2003 at 06:01:05PM -0400 References: Message-ID: <20030303101552.B87482@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Fri, Feb 28, 2003 at 06:01:05PM -0400, Otmar Conradus wrote: > Hi All, > > I am another FreeBSD nagios user. > Unfortunately I still have problems with the host logging which I posted > a week ago. > Are you guys experiencing the same problem? > - I did set the log rotation for daily and it's not rotating. > - The nagios.log only has startup times of the nagios process and all > host warnings etc are not logged. > > Otmar Conradus > Curacao, Netherlands Antilles > that there at least two FreeBSD users using Nagios built from source without any problems (in logging or anywhere else). If you are using the FreeBSD Nagios port then I suggest you 1 make sure that Nagios is configured to log as you expect (I think I use most of the deafult values to see retries being logged and so on) Perhaps you have got a default FreeBSD port Nag config and it is sending the logged messages to Syslog (is there a /var/log/nagios.log ?). 2 If the Nag config looks Ok, then write to the FreeBSD port maintainer. HTH, Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Mon Mar 3 00:24:36 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Mon, 3 Mar 2003 10:24:36 +1100 Subject: WML interface & Nokia 7650 In-Reply-To: <20030301095300.GB11254@roadrunner.ichilton.net>; from mailinglist@ichilton.co.uk on Sat, Mar 01, 2003 at 09:53:00AM +0000 References: <20030227140025.GA1378@roadrunner.ichilton.net> <20030301095300.GB11254@roadrunner.ichilton.net> Message-ID: <20030303102434.C87482@IPAustralia.Gov.AU> On Sat, Mar 01, 2003 at 09:53:00AM +0000, Ian Chilton wrote: .. snip ... > > Does the Nagios author ever reply to e-mails? - it would be nice to hear > his take on this problem. > Yes, by developing Nagios. Perhaps you need to hire a Nokia WAP consultant. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Mon Mar 3 09:51:59 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-15?q?H=FCttig?=) Date: Mon, 3 Mar 2003 09:51:59 +0100 Subject: Nagios Notification problem Message-ID: <200303030951.59498.Michael.Huettig@Medien-Systempartner.de> Hi anyone, i have problem with outgoing-notifcations, on a host i've changed the notification-group, the config-cgi shows me the new group but notifications go out to the formerly configured group. Also stopped the complete nagios-process but it's working wrong, i'm using nagios 1.0b6. Has anyone seen the same problem or has a hint for me? -- Michael ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Mon Mar 3 10:39:43 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Mon, 3 Mar 2003 20:39:43 +1100 Subject: Nagios Notification problem In-Reply-To: <200303030951.59498.Michael.Huettig@Medien-Systempartner.de>; from Michael.Huettig@Medien-Systempartner.de on Mon, Mar 03, 2003 at 09:51:59AM +0100 References: <200303030951.59498.Michael.Huettig@Medien-Systempartner.de> Message-ID: <20030303203941.B238@IPAustralia.Gov.AU> Dear Sir, Please try the production release of Nagios 1.0 instead of a beta. if the problem persists with nagios-1.0, you may have found a bug. Your previous config should work unchanged with the new version. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ThomasScholten at schmuecker.de Mon Mar 3 11:16:18 2003 From: ThomasScholten at schmuecker.de (Scholten, Thomas) Date: Mon, 3 Mar 2003 11:16:18 +0100 Subject: ns_client + Win 2k = Division by Zero Message-ID: Hello All, i'm experiencing problem using the ns client in conjunction with nagios. Except one Win 2k Server all are doing fine, but the exception is the one posting "division by zero" in his event log and nagios saying strange things about CPU-Load in the statusscreen (NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&10). Is there any hint or mehthod to get more debugging info to track down the problem ? thanks Thomas ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mailinglist at ichilton.co.uk Mon Mar 3 11:21:28 2003 From: mailinglist at ichilton.co.uk (Ian Chilton) Date: Mon, 3 Mar 2003 10:21:28 +0000 Subject: WML interface & Nokia 7650 In-Reply-To: <20030303102434.C87482@IPAustralia.Gov.AU> References: <20030227140025.GA1378@roadrunner.ichilton.net> <20030301095300.GB11254@roadrunner.ichilton.net> <20030303102434.C87482@IPAustralia.Gov.AU> Message-ID: <20030303102128.GB18880@roadrunner.ichilton.net> Hello, > Perhaps you need to hire a Nokia WAP consultant. haha I've fixed the problem but it required changing every href (~45 of them) so I need to do more testing, then i'll post the patch to the devel list. --ian ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Hardy.Boehm at internetinfocenter.net Mon Mar 3 12:18:28 2003 From: Hardy.Boehm at internetinfocenter.net (Hardy Boehm) Date: Mon, 3 Mar 2003 12:18:28 +0100 Subject: Notifications sent allthough disabled Message-ID: <30174788546.20030303121828@internetinfocenter.net> Hi Folks! I am receiving notifications, allthough they are turned off for this specific service. What am i Missing here??? --------8><-------------------8><-------------------8><----------- define service { host_name max service_description Check Website apache.schaf.de check_command check-website!apache.schaf.de use tpl_website } define service { service_description Check Website check_command check-website max_check_attempts 5 normal_check_interval 20 retry_check_interval 2 check_period 24x7 notification_interval 60 notification_period 24x7 notification_options w,c,r contact_groups ADMINS name tpl_website notifications_enabled 0 register 0 } -- bye...hardy mailto:Hardy.Boehm at internetinfocenter.net http://www.hardy-boehm.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From francesco.albrizio at init.it Mon Mar 3 13:14:02 2003 From: francesco.albrizio at init.it (Francesco Albrizio) Date: Mon, 3 Mar 2003 13:14:02 +0100 Subject: plugins on nokia ipso Message-ID: <00b701c2e17e$60998d40$3302a8c0@init.it> Hi all, does anyone knows a way to compile and make run nagios plugins (and nrpe) on nokia ipso? Thanks, Francesco Albrizio E-mail: francesco.albrizio at init.it Network & Security Manager UNITEAM INIT InterNetworking & Information Technology via Imperia, 2 20142 MILANO Tel. 02-89546000 Fax. 02-8467832 -------------- next part -------------- An HTML attachment was scrubbed... URL: From hobbs at mongeese.co.uk Mon Mar 3 13:41:20 2003 From: hobbs at mongeese.co.uk (Hobbs, Richard) Date: Mon, 3 Mar 2003 12:41:20 +0000 Subject: Help! Can't compile... In-Reply-To: References: Message-ID: <1046695280.3e634d701fbe0@webmail.mongeese.co.uk> Hello, > what did configure say about having found the GD libraries? I have discarded the output now, but i remember distinctly looking for this, and it said (while compiling Nagios) that the GD libraries *were* found. However, i compiled the GD libraries without JPEG support. i only have PNG and ZLIB support in GD, cos i couldn't get it to recognise JPEG. I understand that Nagios doesn't need JPEG support though, so i don't know why this is failing. Thanks, Richard. Quoting Subhendu Ghosh : > On Fri, 28 Feb 2003, Hobbs, Richard wrote: > > > Hello, > > > > I'm trying to compile, but I'm receiving this error: > > > > ====================================================================== > > turnip:~/installs/nagios/nagios-1.0# make all > > cd ./base && make > > make[1]: Entering directory `/root/installs/nagios/nagios-1.0/base' > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -L/usr/local/lib nagios.c checks.o > config.o > > commands.o flapping.o logging.o notifications.o sehandlers.o utils.o > > sretention.o ../xdata/xrddefault.c ../common/comments.c > ../xdata/xcddefault.c > > ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c > > ../xdata/xsddefault.c perfdata.o ../xdata/xpddefault.c > ../common/downtime.c > > ../xdata/xdddefault.c -lm -o nagios > > make[1]: Leaving directory `/root/installs/nagios/nagios-1.0/base' > > cd ./cgi && make > > make[1]: Entering directory `/root/installs/nagios/nagios-1.0/cgi' > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI -L/usr/local/lib statusmap.c getcgi.o > > cgiutils.o auth.o popen.o ../common/objects.c ../xdata/xodtemplate.c > > ../common/statusdata.c ../xdata/xsddefault.c -lgd -lz -lm -lpng edata.o > > ../xdata/xedtemplate.c -o statusmap.cgi > > /tmp/ccyjmRWt.o: In function `load_image_from_file': > > /root/installs/nagios/nagios-1.0/cgi/statusmap.c:2222: undefined reference > to > > `gdImageCreateFromJpeg' > > collect2: ld returned 1 exit status > > make[1]: *** [statusmap.cgi] Error 1 > > make[1]: Leaving directory `/root/installs/nagios/nagios-1.0/cgi' > > make: *** [all] Error 2 > > turnip:~/installs/nagios/nagios-1.0# > > ====================================================================== > > > > Why is this happening? I've installed the GD libraries, the PNG libraries, > the > > JPEG libraries, and the ZLIB libraries... But I'm stuck! > > > > I've tried everything.... Someone please help! lol > > > > Thanks, > > Richard. > > > > > > > what did configure say about having found the GD libraries? > > -- > > -sg > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- Richard Hobbs hobbs at mongeese.co.uk http://mongeese.co.uk | http://fishsponge.co.uk "There's only one way of life, and that's your own" - The Levellers _____________________________________________________ Send all your jokes to jokes at fishsponge.co.uk !! To subscribe, email: jokes-subscribe at fishsponge.co.uk ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From francesco.albrizio at init.it Mon Mar 3 14:11:48 2003 From: francesco.albrizio at init.it (Francesco Albrizio) Date: Mon, 3 Mar 2003 14:11:48 +0100 Subject: plugins on nokia ipso References: <7E47A0E20913514C8F4CD1BC241A37030A4500@serv-075.icon-germany.local> Message-ID: <00e801c2e186$72cd0020$3302a8c0@init.it> I will try, thanks for the hint. Regards, Francesco Albrizio E-mail: francesco.albrizio at init.it Network & Security Manager UNITEAM INIT InterNetworking & Information Technology via Imperia, 2 20142 MILANO Tel. 02-89546000 Fax. 02-8467832 ----- Original Message ----- From: "Hagen Deike" To: Cc: "'Francesco Albrizio'" Sent: Monday, March 03, 2003 2:10 PM Subject: RE: [Nagios-users] plugins on nokia ipso > > > Hi all, does anyone knows a way to compile and make run nagios plugins > (and nrpe) > > on nokia ipso? > > Hi, > > Nope. But IPSO is build on FreeBSD as far as I know. Maybe you can compile > it on BSD and then run it under IPSO. > > Regards, > Hagen Deike ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Hagen_Deike at icon-scm.com Mon Mar 3 14:10:30 2003 From: Hagen_Deike at icon-scm.com (Hagen Deike) Date: Mon, 3 Mar 2003 14:10:30 +0100 Subject: plugins on nokia ipso Message-ID: <7E47A0E20913514C8F4CD1BC241A37030A4500@serv-075.icon-germany.local> > Hi all, does anyone knows a way to compile and make run nagios plugins (and nrpe) > on nokia ipso? Hi, Nope. But IPSO is build on FreeBSD as far as I know. Maybe you can compile it on BSD and then run it under IPSO. Regards, Hagen Deike ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ThomasScholten at schmuecker.de Mon Mar 3 14:37:20 2003 From: ThomasScholten at schmuecker.de (Scholten, Thomas) Date: Mon, 3 Mar 2003 14:37:20 +0100 Subject: hostextinfo + hostgroup_name Message-ID: Hello List, i'm currently playing around with the hostextinfo and wondering if its possible to set the icon onformation on a hostgroup and not on a single host to keep the typing stress low. Is there any valid keyword for hostgroups that does the job ? define hostextinfo{ host_name nt-ffm-001 <--- works # hostgroup_name nt-servers <--- doesn't work :( icon_image win40.png statusmap_image win40.gd2 } cheers Thomas ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From maxxik at mail.ru Mon Mar 3 15:54:29 2003 From: maxxik at mail.ru (maxxik) Date: Mon, 3 Mar 2003 16:54:29 +0200 Subject: cutted diagram in Status map Message-ID: <194834827488.20030303165429@mail.ru> ho ppl ! i have a question : why i have cutted diagram in Status map menu ? (drawn by statusmap.cgi) ? i use default_statusmap_layout=5 in cgi.cfg and when i try to see Status map - i see the cutted pic from the bottom and right side ... when i open my browser in fullscreen mode - i see it again ... why it appear and how i can see non-cutted diagram ? wbr,maxx ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From otmar at e-commercepark.com Mon Mar 3 16:06:17 2003 From: otmar at e-commercepark.com (Otmar Conradus) Date: Mon, 3 Mar 2003 11:06:17 -0400 Subject: FreeBSD & Nagios with statusmap.cgi | How?? In-Reply-To: <20030303101552.B87482@IPAustralia.Gov.AU> References: <20030303101552.B87482@IPAustralia.Gov.AU> Message-ID: Hi all, Thank you all for the replies. My problems has been fixed. I changed the log file location to /var/log/nagios.log but the file didn't have the right permissions on it. Please add me to the list of happy freebsd users of nagios! :-) Otmar Conradus Curacao, Netherlands Antilles -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Stanley Hopcroft Sent: Sunday, March 02, 2003 7:16 PM To: Otmar Conradus Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] FreeBSD & Nagios with statusmap.cgi | How?? Dear Sir, I am writing to thank you for your letter and say, On Fri, Feb 28, 2003 at 06:01:05PM -0400, Otmar Conradus wrote: > Hi All, > > I am another FreeBSD nagios user. > Unfortunately I still have problems with the host logging which I > posted a week ago. Are you guys experiencing the same problem? > - I did set the log rotation for daily and it's not rotating. > - The nagios.log only has startup times of the nagios process and all > host warnings etc are not logged. > > Otmar Conradus > Curacao, Netherlands Antilles > that there at least two FreeBSD users using Nagios built from source without any problems (in logging or anywhere else). If you are using the FreeBSD Nagios port then I suggest you 1 make sure that Nagios is configured to log as you expect (I think I use most of the deafult values to see retries being logged and so on) Perhaps you have got a default FreeBSD port Nag config and it is sending the logged messages to Syslog (is there a /var/log/nagios.log ?). 2 If the Nag config looks Ok, then write to the FreeBSD port maintainer. HTH, Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Mon Mar 3 16:42:18 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 3 Mar 2003 09:42:18 -0600 Subject: Viewing rights Message-ID: I think I already did, so here it is again: $ cd /usr/local/nagios/etc $ grep ^authorized_for_ cgi.cfg authorized_for_system_information=* authorized_for_configuration_information=* authorized_for_system_commands=nagiosadmin authorized_for_all_services=nagiosadmin,guest authorized_for_all_hosts=nagiosadmin,guest authorized_for_all_service_commands=nagiosadmin authorized_for_all_host_commands=nagiosadmin And here are some helpful links: http://nagios.sourceforge.net/docs/1_0/configcgi.html#use_authentication http://nagios.sourceforge.net/docs/1_0/configcgi.html HTH. jc > -----Original Message----- > From: Philip Brown [mailto:phil at bolthole.com] > Sent: Friday, February 28, 2003 7:02 PM > To: Carroll, Jim P [Contractor] > Subject: Re: [Nagios-users] Viewing rights > > > On Thu, Feb 27, 2003 at 03:05:57PM -0600, Carroll, Jim P > [Contractor] wrote: > > Instead, it would be preferable if the DBAs could see > host-related info > > (like a guest would), but have no power to do anything > about the hosts (like > > a guest would). This ability can be kludged today by > editing the cgi.cfg > > file and adding the individual contacts. Doable, yes. > Preferable, not > > really. It's a significant deviation from using contact groups. > > could you give details on how to do that, please? > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gv at ypsilon.net Mon Mar 3 17:09:46 2003 From: gv at ypsilon.net (Geert Vanderkelen) Date: 03 Mar 2003 17:09:46 +0100 Subject: check_mrttraf -f argument probs Message-ID: <1046707786.7005.88.camel@phobos> Hi, check_mrtgtraf gives me headaches. I'm using the one of the netsaint-plugin package. Nagios plugin there doesn't really go.. # check_mrtgtraf -f /path/to/mrtg/file/192.168.1.3_1.log -e 30 -A AVG \ -w 307200,51200 -c 409600,614400 Works great on command line. Running this same with parameters I get always 'Unable to open MRTG log file'. I've changed to the code and outputting the file when it says this message.. Permissions are ok since the webuser can even open this file. Putting this file into temp.. like /tmp/dlink.log gives me a '(No Output)' Information but status OK. Totally lost here.. :( thanks, Geert -- Geert Vanderkelen Ypsilon.Net AG http://www.ypsilon.net ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Mon Mar 3 17:54:58 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Mon, 3 Mar 2003 10:54:58 -0600 Subject: Nagios plugins and Windows2000 hosts Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B471B@gsmail.govst.edu> Check the Nagios faq! Also see http://nsclient.ready2run.nl Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: Tom Dunlap [mailto:tdunlap_z at yahoo.com] Sent: Friday, February 28, 2003 8:16 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Nagios plugins and Windows2000 hosts Are there any plugins for doing service checks on Win2k hosts? I used check_disk but the values are incorrect. Thanks Tom Dunlap [newbie] __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From drich at employees.org Mon Mar 3 17:57:20 2003 From: drich at employees.org (Dan Rich) Date: Mon, 3 Mar 2003 08:57:20 -0800 (PST) Subject: Dependencies Message-ID: <50011.63.237.201.12.1046710640.squirrel@www.lapseofthought.com> Has anyone done any work at building a tool to auto-generate the dependencies config? I'm thinking of writing some code to read parent information from the host config and build dependencies from it (with a hook for allowing additional dependencies to be added). I tried searching the sourceforge mailing list archives, but it looks like it is timing out trying to search the list. Anyone want to save me some work? :) -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ryano at ch-gifts.com Mon Mar 3 18:10:41 2003 From: ryano at ch-gifts.com (Ryan O'Rourke) Date: 03 Mar 2003 11:10:41 -0600 Subject: multiple host and service alerts Message-ID: <1046711441.1209.17.camel@ryano> Hello, I keep getting multiple alerts (usually two or three) within minutes of each other each time a host or service goes down or recovers. I only want one notice each time a host or service goes down and one when it recovers. Also, Nagios is only monitoring one service on each of these hosts so I don't understand why I would be getting multiple alerts at all. If someone could point me in the right direction I would appreciate it. There are examples of service.cfg and contacts.cfg. ********************************************************************** ## services.cfg ## # 'ping ROUTER' service definition define service{ use generic-service host_name r2030 service_description PING router contact_groups router-admin check_command check_ping!100.0,20%!500.0,60% } ## contacts.cfg ## # 'ryano' contact definition define contact{ contact_name ryano alias Ryan O service_notification_period 24x7 host_notification_period 24x7 service_notification_options c,r host_notification_options d,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email email at mydomain.com } ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at bolthole.com Mon Mar 3 19:41:03 2003 From: nagios at bolthole.com (Philip Brown) Date: Mon, 3 Mar 2003 10:41:03 -0800 Subject: Viewing rights In-Reply-To: ; from jcarro10@sprintspectrum.com on Mon, Mar 03, 2003 at 09:42:18AM -0600 References: Message-ID: <20030303104103.B24220@bolthole.com> On Mon, Mar 03, 2003 at 09:42:18AM -0600, Carroll, Jim P [Contractor] wrote: > > could you give details on how to [give dbas readonly view on hosts] > >, please? > > > I think I already did, so here it is again: > > $ cd /usr/local/nagios/etc > $ grep ^authorized_for_ cgi.cfg >.... > authorized_for_all_hosts=nagiosadmin,guest > authorized_for_all_service_commands=nagiosadmin I thought you meant you knew a hacky way to allow dbas to get readonly views on SPECIFIC hosts or hostgroups. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From otmar at e-commercepark.com Mon Mar 3 22:01:56 2003 From: otmar at e-commercepark.com (Otmar Conradus) Date: Mon, 3 Mar 2003 17:01:56 -0400 Subject: multiple host and service alerts In-Reply-To: <1046711441.1209.17.camel@ryano> References: <1046711441.1209.17.camel@ryano> Message-ID: Hi Ryan, Please include your contact-groups.cfg also Otmar Conradus Curacao, Netherlands Antilles -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Ryan O'Rourke Sent: Monday, March 03, 2003 1:11 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] multiple host and service alerts Hello, I keep getting multiple alerts (usually two or three) within minutes of each other each time a host or service goes down or recovers. I only want one notice each time a host or service goes down and one when it recovers. Also, Nagios is only monitoring one service on each of these hosts so I don't understand why I would be getting multiple alerts at all. If someone could point me in the right direction I would appreciate it. There are examples of service.cfg and contacts.cfg. ********************************************************************** ## services.cfg ## # 'ping ROUTER' service definition define service{ use generic-service host_name r2030 service_description PING router contact_groups router-admin check_command check_ping!100.0,20%!500.0,60% } ## contacts.cfg ## # 'ryano' contact definition define contact{ contact_name ryano alias Ryan O service_notification_period 24x7 host_notification_period 24x7 service_notification_options c,r host_notification_options d,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email email at mydomain.com } ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ryano at ch-gifts.com Mon Mar 3 22:14:07 2003 From: ryano at ch-gifts.com (Ryan O'Rourke) Date: 03 Mar 2003 15:14:07 -0600 Subject: multiple host and service alerts In-Reply-To: References: Message-ID: <1046726048.1524.51.camel@ryano> Thank you for your response. Here is an excerpt from hostgroups.cfg. ********************************************************************** ## hostgroups.cfg ## # 'router-admins' contact group definition define contactgroup{ contactgroup_name router-admin alias Router Admin members ryano } ********************************************************************** On Mon, 2003-03-03 at 15:01, Otmar Conradus wrote: > Hi Ryan, > > Please include your contact-groups.cfg also > > Otmar Conradus > Curacao, Netherlands Antilles > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Ryan > O'Rourke > Sent: Monday, March 03, 2003 1:11 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] multiple host and service alerts > > > Hello, > > I keep getting multiple alerts (usually two or three) within minutes of > each other each time a host or service goes down or recovers. I only > want one notice each time a host or service goes down and one when it > recovers. Also, Nagios is only monitoring one service on each of these > hosts so I don't understand why I would be getting multiple alerts at > all. > > If someone could point me in the right direction I would appreciate it. > > There are examples of service.cfg and contacts.cfg. > > ********************************************************************** > ## services.cfg ## > # 'ping ROUTER' service definition > define service{ > use generic-service > host_name r2030 > service_description PING router > contact_groups router-admin > check_command check_ping!100.0,20%!500.0,60% > } > > ## contacts.cfg ## > # 'ryano' contact definition > define contact{ > contact_name ryano > alias Ryan O > service_notification_period 24x7 > host_notification_period 24x7 > service_notification_options c,r > host_notification_options d,r > service_notification_commands notify-by-email > host_notification_commands host-notify-by-email > email email at mydomain.com > } > > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Mon Mar 3 23:41:11 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 3 Mar 2003 16:41:11 -0600 Subject: Viewing rights Message-ID: Nope. You can give them read-only access to all hosts, just like you would give 'guest' read-only access to all hosts. Failing that, you can give them zero host-level access and stick to their services. It really does make some of the views inhospitable, but.... jc > -----Original Message----- > From: Philip Brown [mailto:nagios at bolthole.com] > Sent: Monday, March 03, 2003 12:41 PM > To: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Viewing rights > > > On Mon, Mar 03, 2003 at 09:42:18AM -0600, Carroll, Jim P > [Contractor] wrote: > > > could you give details on how to [give dbas readonly view > on hosts] > > >, please? > > > > > > I think I already did, so here it is again: > > > > $ cd /usr/local/nagios/etc > > $ grep ^authorized_for_ cgi.cfg > >.... > > authorized_for_all_hosts=nagiosadmin,guest > > authorized_for_all_service_commands=nagiosadmin > > > I thought you meant you knew a hacky way to allow dbas to get readonly > views on SPECIFIC hosts or hostgroups. > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcoleman at lrn.com Tue Mar 4 01:05:03 2003 From: jcoleman at lrn.com (Jason Coleman) Date: Mon, 3 Mar 2003 16:05:03 -0800 Subject: Walking a Site Message-ID: <8A4F07369400D511B1890060CF204C2A05190308@lrnex01.corp.lrn.com> Does anyone know if there is a way to have Nagios walk a web site? We were able to configure it to check page content, but it would be beneficial if Nagios were able to walk a site to test content so that we can avoid a possible gateway error from the client side. Any feedback would be beneficial. Jason Coleman Systems Engineer LRN - The Legal Knowledge Company Inter Office: 5381 jcoleman at lrn.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdunlap_z at yahoo.com Tue Mar 4 01:08:53 2003 From: tdunlap_z at yahoo.com (Tom Dunlap) Date: Mon, 3 Mar 2003 16:08:53 -0800 (PST) Subject: Nagios plugins and Windows2000 hosts In-Reply-To: <7F76AA41FC7DD5119B1E00508BAF0444030B471B@gsmail.govst.edu> References: <7F76AA41FC7DD5119B1E00508BAF0444030B471B@gsmail.govst.edu> Message-ID: <20030304000853.1208.qmail@web14107.mail.yahoo.com> I was really looking for a plugin that would retrieve the values from SNMP correctly rather than use an NSC Client. TomD --- "VanZee, Timothy" wrote: > Check the Nagios faq! Also see > http://nsclient.ready2run.nl > > > Tim Van Zee > ITS Network Specialist > Governors State University > > > -----Original Message----- > From: Tom Dunlap [mailto:tdunlap_z at yahoo.com] > Sent: Friday, February 28, 2003 8:16 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Nagios plugins and Windows2000 > hosts > > > Are there any plugins for doing service checks on Win2k > hosts? I used check_disk but the values are incorrect. > > Thanks > Tom Dunlap [newbie] > > __________________________________________________ > Do you Yahoo!? > Yahoo! Tax Center - forms, calculators, tips, more > http://taxes.yahoo.com/ > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) > and OS when > reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) > and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From wangee at linuxbe.org Mon Mar 3 23:08:11 2003 From: wangee at linuxbe.org (Christian Vanguers) Date: 03 Mar 2003 23:08:11 +0100 Subject: SANS Alert - Critical Vulnerability in Sendmail and a Snort Vulnerability In-Reply-To: <2003030323172.QEZ35603@server2.SANS.ORG> References: <2003030323172.QEZ35603@server2.SANS.ORG> Message-ID: <1046729291.16919.5.camel@winnie> It's a little bit off-topic, but i'm sure some of you are running Sendmail and/or Snort... This post is just FYI Chris Le lun 03/03/2003 ? 22:25, The SANS Institute a ?crit : > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > SANS Alert 2003-03-03 > Critical vulnerability in all versions of SENDMAIL > Plus a Snort Vulnerability > > And an invitation to a web broadcast on the vulnerabilities > > The Sendmail Vulnerability > What systems are affected? UNIX and Linux Systems running sendmail - > probably even those that are not mail servers. > Level: CRITICAL - affords root or superuser access when sendmail is > running with those privileges. > > A new critical vulnerability has been discovered in Sendmail. The UNIX > and Linux vendors have been working feverishly to get a patch ready and > most are available now. Sendmail is too big a target for attackers to > ignore, so it makes sense to act immediately to protect your systems. > > In this note you will find: > (1) The invitation to the webcast covering both vulnerabilities > (2) DHS/NIPC Advisory 03-004 Remote Sendmail Header Processing > Vulnerability > (3) A description of what government and industry did to try to > mitigate damage from this newly discovered vulnerability. > (4) The Department of Homeland Security Alert on the Snort > Vulnerability > > ******************************************************** > SANS Web Broadcast (free) on the Sendmail Vulnerability and the > Snort Vulnerability > > Date: March 3, 2003 (today) > Time: 7 PM EST (0000 UTC) > Register at: http://www.sans.org/webcasts/030303.php > There is an absolute limit of 2,000 people on the live program to > ensure quality audio, but the archive will be available about 5 hours > later for anyone who does not get a reservation. > > Featuring the ISS X-Force folks (ISS discovered the vulnerability), > Hal Pomeranz (sendmail expert) and Marty Roesch, author of Snort, > will brief you on the Snort vulnerability. > > Below you'll find the Department of Homeland Security advisory followed > by a brief description of what happened behind the scenes inside the > government followed by the DHS Snort vulnerability alert. > > *********************************************************************** > Here's the DHS/NIPC Advisory > > Remote Sendmail Header Processing Vulnerability > > SUMMARY: > > The Department of Homeland Security (DHS), National Infrastructure > Protection Center (NIPC) is issuing this advisory to heighten > awareness of the recently discovered Remote Sendmail Header Processing > Vulnerability (CAN-2002-1337). NIPC has been working closely with > the industry on vulnerability awareness and information dissemination. > > The Remote Sendmail Header Processing Vulnerability allows local and > remote users to gain almost complete control of a vulnerable Sendmail > server. Attackers gain the ability to execute privileged commands using > super-user (root) access/control. This vulnerability can be exploited > through a simple e-mail message containing malicious code. Sendmail is > the most commonly used Mail Transfer Agent and processes an estimated > 50 to 75 percent of all Internet e-mail traffic. System administrators > should be aware that many Sendmail servers are not typically shielded > by perimeter defense applications. A successful attacker could install > malicious code, run destructive programs and modify or delete files. > > Additionally, attackers may gain access to other systems > thru a compromised Sendmail server, depending on local > configurations. Sendmail versions 5.2 up to 8.12.8 are known to be > vulnerable at this time. > > DESCRIPTION: > > The Remote Sendmail Header Processing Vulnerability is exploited > during the processing and evaluation of e-mail header fields collected > during an SMTP transaction. Examples of these header fields are the > "To", "From" and "CC" lines. The crackaddr() function in the Sendmail > headers.c file allows Sendmail to evaluate whether a supplied address > or list of addresses contained in the header fields is valid. Sendmail > uses a static buffer to store processed data. It detects when the > static buffer becomes full and stops adding characters. However, > Sendmail continues processing data and several security checks are > used to ensure that characters are parsed correctly. The vulnerability > allows a remote attacker to gain access to the Sendmail server by > sending an e-mail containing a specially crafted address field which > triggers a buffer overflow. > > RECOMMENDATION: > Due to the seriousness of this vulnerability, the NIPC is strongly > recommending that system administrators who employ Sendmail take this > opportunity to review the security of their Sendmail software and to > either upgrade to Sendmail 8.12.8 or apply the appropriate patch for > older versions as soon as possible. > Patches for the vulnerability are available from Sendmail, from ISS who > discovered the vulnerability and from vendors whose applications > incorporate Sendmail code, including IBM, HP, SUN, Apple and SGI. Other > vendors will release patches in the near future. > The primary distribution site for Sendmail is: http://www.sendmail.org > Patches and information are also available from the following sites: > The ISS Download center http://www.iss.net/download > IBM Corporation http://www.ibm.com/support/us/ > Hewlett-Packard , Co. http://www.hp.com > Silicon Graphics Inc. http://www.sgigate.sgi.com > Apple Computer, Inc. http://www.apple.com/ > Sun Microsystems, Inc. http://www.sun.com/service/support/ > Common Vulnerabilities and Exposure (CVE) Project http://CVE.mitre.org > > As always, computer users are advised to keep their anti-virus and > systems software current by checking their vendor's web sites frequently > for new updates and to check for alerts put out by the DHS/NIPC, > CERT/CC, ISS and other cognizant organizations. The DHS/NIPC encourages > recipients of this advisory to report computer intrusions to their local > FBI office (http://www.fbi.gov/contact/fo/fo.htm) and other appropriate > authorities. Recipients may report incidents online to > http://www.nipc.gov/incident/cirr.htm. The DHS/NIPC Watch and Warning > Unit can be reached at (202) 323-3204/3205/3206 or nipc.watch at fbi.gov. > > > ==== > > Background on government/industry cooperation to mitigate damage > > The Sendmail Vulnerability Announced Today, March 3, 2003 > How Well Did The Cyber Defense Community Do? > > Today, hundreds of thousands of people learned of a vulnerability in > the sendmail program which is widely used for Internet mail handling. > A vulnerability in such a widely used open source software program > presents difficult challenges for the cyber defense community - > including the need to get more than twenty different software > organizations to act quickly and silently to develop patches. > > Three primary actions are required to respond effectively to such > a vulnerability: > > 1. Verify that the vulnerability exists and is important. > 2. Contact the key technical personnel at each of the software > companies and other groups that distribute sendmail (either alone or > with other software) and ensure that they develop and test patches > and make them ready for widespread distribution. > 3. Plan and execute an early warning and distribution strategy > that enables critical infrastructure organizations in the US and in > partner countries to be prepared for rapid deployment of the patches > once they are ready. This must be accomplished without leaking data > about the vulnerability to the black hat community that exploits such > vulnerabilities by creating worms like Code Red, Slapper, and Slammer. > > When possible, several other actions may be appropriate: > > 4. Provide military and other very sensitive organizations with early > access to the patches so their systems can be protected even before > public disclosure of the vulnerability. > 5. Use sensor networks with smart filters to test for exploitation. > 6. Develop and distribute filters that can block the offending packets > to protect systems that cannot or will not install patches immediately. > > On Saturday, March 1, 2003, the US Department of Homeland Security > became fully operational, although the elements of the new department > had been working together for several weeks. In cybersecurity, the new > Department brings together four highly visible cybersecurity agencies: > (1) The National Infrastructure Protection Center from the FBI, (2) > FedCIRC from the General Services Administration, (3) the National > Communications System program from the US Department of Defense, and > (4) the Critical Infrastructure Assurance Office from the Department > of Commerce. > > Today's disclosure of a vulnerability in sendmail offers the > opportunity to see how quickly and effectively the cyber defense > community, led by this new Department, can respond to important > threats. > > Sendmail's vulnerability offers a legitimate test because sendmail > handles a large amount of Internet mail traffic and is installed on > at least 1.5 million Internet-connected systems. More than half of > the large ISPs and Fortune 500 companies use sendmail, as do tens of > thousands of other organizations. A security hole in sendmail affects > a lot of people and demands their immediate attention. > > You can draw your own conclusion on how well the problem is being > handled. Here are the facts: > > 1. On Friday, February 14, telephone calls to the Department of > Homeland Security (DHS) and the White House Office of Cyberspace > Security alerted the US government to a suspected sendmail > vulnerability. The source of the data was Internet Security > Systems (ISS), a well-respected security firm with solid security > research credentials, giving the data an initial base level of > credibility. However, to be more certain, DHS technical experts > reviewed the details of the vulnerability and especially the > tests that ISS had run to prove the existence and severity of the > vulnerability. They were convinced. > > 2. Almost immediately the DHS/White House team, working with ISS, > contacted vendors that distribute sendmail, including Sun, IBM, > HP, and SGI, as well as the Sendmail Consortium, the organization > that develops the open source version of sendmail that is the core > of sendmail distributed with both free and commercial operating > systems. Partially because of government involvement, but primarily > because the vulnerability involved the widely used sendmail package, > the vendors immediately started working together on patches. > > 3. The DHS/White House staff contacted and shared what they knew with > the US Department of Defense and the Federal CIO Council. Through the > Federal CIO Council, the US FedCIRC and US Office of Management and > Budget were added to the coordinating team. Together the government > planners, ISS, and the vendors developing patches worked out a plan > for public dissemination of the vulnerability information and patch > distribution. > > 4. To help ensure that the open source LINUX and BSD distributions > (Red Hat, SUSE, OpenBSD, etc.) developed patches, the Computer > Emergency Response Team at Carnegie Mellon University (CERT/CC) was > brought into the project. CERT/CC deployed its formalized process to > inform the LINUX and BSD distribution developers and to assist them > in getting the corrected source code and any additional knowledge > needed to create the patch. CERT/CC (which is funded, in part, by two > organizations being merged into DHS and by the DoD) also created an > advisory to educate system administrators and the security community > in general on the vulnerability, on which systems are affected, > and on where to get the patches for each affected system. > > 5. Some of the large commercial vendors developed the patches very > quickly, but the delayed notice to smaller sources of sendmail > distributions and limited resources at those organizations meant > that not all the patches would be ready by early in the week of > February 23. The coordinating group faced a decision of whether to > release data about the exploit before most patches were ready or to > wait. The answer depended on whether they had reason to believe an > exploit was already being used by attackers. They had two sources > of information that led them to conclude waiting an extra week was > acceptable. First, people who monitored the hacker discussion groups > reported that this vulnerability did not seem to be one that was being > discussed. Second, the organization that discovered the vulnerability, > ISS, had deployed sensors for the exploit in a number of places > around the world. Those sensors were showing no exploits. Based on > both sets of data, the coordination group decided to schedule the > announcement for Monday, March 3. A second-order reason to schedule > a Monday announcement was that some members of the team believed > that Monday-Tuesday announcements generate more rapid and complete > patching than announcements made late in the week. > > 6. Since some of the patches were ready, the coordination group > decided to provide what was available to the US DoD so that military > sites could have the protection as early as possible. The military > distributions took place on or around February 25 and 26. > > 7. On February 27 and 28, government groups in the US and in several > other countries were given early warnings, without details about how > the vulnerability could be exploited, to help them plan for rapid > deployment of the patches when they were released on March 3. In > addition to the Chief Information Officers of US Cabinet level > departments, and the directors or deputy directors of national > cyber security offices in several other countries, the officers of > the critical infrastructure Information Sharing And Analysis Centers > (ISACs) were also briefed so they could be ready for rapid information > distribution to commercial organizations such as banks and utilities, > that comprise the critical infrastructure. > > 8. On March 3, beginning about 10 am EST, alerts began flowing to > federal agencies from FedCIRC and to the critical infrastructure > companies from the ISACs. At noon, ISS released their advisory, > followed by CERT/CC's general release. Once the data was public, > the SANS Institute also issued a release and scheduled free web-based > education programs. > > ==== > > DHS/NIPC Advisory 03-003 Snort Buffer Overflow Vulnerability > > The Department of Homeland Security (DHS), National Infrastructure > Protection Center (NIPC) has been informed of a recently discovered > serious vulnerability in Snort, a widely used Intrusion Detection > System, IDS. DHS/NIPC has been working closely with the Internet > security industry on vulnerability awareness and is issuing this > advisory in conjunction with public announcements. > > Snort is available in open source and commercial versions form > Sourcefire, a privately held company headquartered in Columbia, MD. > Details are available from Sourcefire. See Snort Vulnerability > Advisory [SNORT-2003-001]. The affected Snort versions include all > version of Snort from version 1.8 through current. Snort 1.9.1 has > been released to resolve this issue. > > The vulnerability was discovered by Internet Security Systems (ISS), > and is a buffer overflow in the Snort Remote Procedure Call, RPC, > normalization routines. This buffer overflow can cause snort to > execute arbitrary code embedded within sniffed network packets. > Depending upon the particular implementation of Snort this may give > local and remote users almost complete control of a vulnerable machine. > The vulnerability is enabled by default. Mitigation instructions > for immediate protections prior to installing patches or upgrading > are described in the Snort Vulnerability Advisory. > > Due to the seriousness of this vulnerability, the DHS/NIPC strongly > recommends that system administrators or security managers who employ > Snort take this opportunity to review their security procedures and > patch or upgrade software with known vulnerabilities. > > Sourcefire has acquired additional bandwidth and hosting to aid users > wishing to upgrade their Snort implementation. Future information > can be found at: > http://www.sourcefire.com/ > > As always, computer users are advised to keep their anti-virus > and systems software current by checking their vendor's web sites > frequently for new updates and to check for alerts put out by the > DHS/NIPC, CERT/CC, ISS and other cognizant organizations. The DHS/NIPC > encourages recipients of this advisory to report computer intrusions to > their local FBI office (http://www.fbi.gov/contact/fo/fo.htm) and other > appropriate authorities. Recipients may report incidents online to > http://www.nipc.gov/incident/cirr.htm. The DHS/NIPC Watch and Warning > Unit can be reached at (202) 323-3204/3205/3206 or nipc.watch at fbi.gov. > > > == end == > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.1 (GNU/Linux) > > iD8DBQE+Y7oL+LUG5KFpTkYRAh6ZAJ9oWXqnCwZyP4Wxla1HUbMOcjdlSwCfboS8 > wnLCqqyaA0+Dpcn9gUI7yxo= > =cIQn > -----END PGP SIGNATURE----- > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at bolthole.com Tue Mar 4 01:46:20 2003 From: nagios at bolthole.com (Philip Brown) Date: Mon, 3 Mar 2003 16:46:20 -0800 Subject: Viewing rights In-Reply-To: ; from jcarro10@sprintspectrum.com on Mon, Mar 03, 2003 at 04:41:11PM -0600 References: Message-ID: <20030303164620.A30656@bolthole.com> On Mon, Mar 03, 2003 at 04:41:11PM -0600, Carroll, Jim P [Contractor] wrote: > Nope. > > You can give them read-only access to all hosts, just like you would give > 'guest' read-only access to all hosts. > > Failing that, you can give them zero host-level access and stick to their > services. It really does make some of the views inhospitable, but.... Erm.. speaking of that last bit... I just created a user that is only in a contact group that is notified about services... and I see NOTHING in any of the menus. I was planning to make a stripped down version of the nagios main menu that only has service views. But there doesnt seem to BE any service-only views from the main menu. I thought there was a way to at least give application developers a list of services-only. (limited to the services they are authorized for) But I dont even see that happening. Is this possible, and if so, what ight I be missing? ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From skaten at o1.com Tue Mar 4 02:35:24 2003 From: skaten at o1.com (Stephen Katen) Date: Mon, 3 Mar 2003 17:35:24 -0800 Subject: User-supplied coordinates? Message-ID: I was wondering if anyone had a map of California or any of the other stats that works well with the user-suppliedcoordinates option. Ultimately, I would like to break down our network by coordinates throughout each individual state. I appreciate your help. katen ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mike at innercite.com Tue Mar 4 05:22:00 2003 From: mike at innercite.com (Mike Machado) Date: 03 Mar 2003 20:22:00 -0800 Subject: User-supplied coordinates? In-Reply-To: References: Message-ID: <1046751719.1028.3.camel@woodstock.innercite.com> Try the census website, such as tiger.census.gov . :) On Mon, 2003-03-03 at 17:35, Stephen Katen wrote: > I was wondering if anyone had a map of California or any of the other > stats that works well with the user-suppliedcoordinates option. > Ultimately, I would like to break down our network by coordinates > throughout each individual state. > > I appreciate your help. > > katen > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -- Mike Machado mike at innercite.com InnerCite Inc. Engineering Director / CTO ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From philc at foundation-it.com Tue Mar 4 10:29:37 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Tue, 4 Mar 2003 09:29:37 -0000 Subject: Dependencies Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909E7BB@netfinity-1.foundation-it.local> > From: Dan Rich [mailto:drich at employees.org] > > I tried searching the sourceforge > mailing list archives, but it looks like it is timing out > trying to search the list. http://news.gmane.org/thread.php?group=gmane.network.nagios.user is a more reliable archive. Phil ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Tue Mar 4 11:11:26 2003 From: lejert at hotmail.com (le jert) Date: Tue, 04 Mar 2003 11:11:26 +0100 Subject: check_nt_disk dont work Message-ID: Hi ! I'm trying to check disk space and cpu load from my machine (nagios) to NT 4 servers via check_nt_disk , but it don t seems to work (I get error: Return code of 127 is out of bounds - plugin may be missing) I read this tread http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id=1873 So now I'm wondering if I need a special plugin on my machine for these services to be effective or if I need to install specific plugins on the remote host (or even a snmp client...). Here is the command lines in services.cfg : #Service definition disk C: define service{ use generic-service host_name NT4-server service_description C: w = 80% c = 90% is_volatile 0 check_period 24x7 contact_groups intern-servers-contactgroup notification_options c,w,r check_command check_nt_disk!C!80!90 } In other words : what's the problem? (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From p.miquet at hafiba.fr Tue Mar 4 11:52:07 2003 From: p.miquet at hafiba.fr (Pascal Miquet) Date: 04 Mar 2003 11:52:07 +0100 Subject: Nagios and RH 8.0 Message-ID: <1046775119.6001.28.camel@moishe> Hello, Just few words to ask if Nagios and RH 8.0/Apache 2.0 are now working fine ? If yes what prerequisit are needed ? Thanks for your help Pascal Miquet ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From p.miquet at hafiba.fr Tue Mar 4 11:52:01 2003 From: p.miquet at hafiba.fr (Pascal Miquet) Date: 04 Mar 2003 11:52:01 +0100 Subject: check_nt_disk dont work In-Reply-To: References: Message-ID: <1046775032.5785.26.camel@moishe> First, are you sure that you have the check_nt_disk plugin installed on your Nagios server ? If yes could you try manually the check_nt_disk command and look what is the result ? HTH Regards Le mar 04/03/2003 ? 11:11, le jert a ?crit : > Hi ! > > I'm trying to check disk space and cpu load from my machine (nagios) to NT 4 > servers via check_nt_disk , > > but it don t seems to work (I get error: Return code of 127 is out of bounds > - plugin may be missing) > > I read this tread > http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id=1873 > > So now I'm wondering if I need a special plugin on my machine for these > services to be effective or if I need to install specific plugins on the > remote host (or even a snmp client...). > > Here is the command lines in services.cfg : > > #Service definition disk C: > define service{ > use generic-service > host_name NT4-server > service_description C: w = 80% c = 90% > is_volatile 0 > check_period 24x7 > contact_groups intern-servers-contactgroup > notification_options c,w,r > check_command check_nt_disk!C!80!90 > } > > > In other words : what's the problem? > > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From markus.kauws at lycos.de Tue Mar 4 12:02:37 2003 From: markus.kauws at lycos.de (Markus Kauws) Date: Tue, 04 Mar 2003 12:02:37 +0100 Subject: Nagios Portsentry integration problem Message-ID: <1046775757018364@lycos-europe.com> Hello, we are working at a Linux Monitoring Project based on Nagios but there are a few problems with it. We have tried to integrate the intrusion-detection-system portsentry on an external host (our Web-Server) and want the results of port-scans be send to the Nagios-Server. Therefore we have installed the Nagios nsca Addon. Our problem: nsca seems working correctly but if we want the port scan results (checked by Portsentry) to be send to the Nagios-Server, the connection between Nagios and Portsentry over nsca is not established. The portscan process in Nagios is shown as Pending all time. We've done the integration of Portsentry as described in the Nagios Documentaton. Please help!!! Were is our error?!? What can we do to solve this problem??? Thanks in advance. Markus From stevox2000 at yahoo.com Tue Mar 4 12:20:24 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Tue, 4 Mar 2003 12:20:24 +0100 (CET) Subject: Huge pb with SNMP under Nagios Message-ID: <20030304112024.75407.qmail@web10906.mail.yahoo.com> Hello, My nagios config was working well but since yesterday all SNMP-based plugins (apan,...) didn't return any response anymore. I try to run manually the check_snmp plugin and it works. How can i do to solve my problem under Nagios ? Thanks, Steve --------------------------------- Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Testez le nouveau Yahoo! Mail -------------- next part -------------- An HTML attachment was scrubbed... URL: From lejert at hotmail.com Tue Mar 4 12:13:28 2003 From: lejert at hotmail.com (le jert) Date: Tue, 04 Mar 2003 12:13:28 +0100 Subject: check_nt_disk dont work Message-ID: I tried a locate check_nt_disk and it didn't found anything ... So now I installed the new plugins version (1.3) but still can't find it ... where can I find them ??? (in nrpe ?) >From: "Pascal Miquet" >To: le jert >CC: Nagios users >Subject: Re: [Nagios-users] check_nt_disk dont work >Date: 04 Mar 2003 11:52:01 +0100 > >First, are you sure that you have the check_nt_disk plugin installed on >your Nagios server ? > >If yes could you try manually the check_nt_disk command and look what is >the result ? > >HTH >Regards > >Le mar 04/03/2003 ? 11:11, le jert a ?crit : > > Hi ! > > > > I'm trying to check disk space and cpu load from my machine (nagios) to >NT 4 > > servers via check_nt_disk , > > > > but it don t seems to work (I get error: Return code of 127 is out of >bounds > > - plugin may be missing) > > > > I read this tread > > >http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id=1873 > > > > So now I'm wondering if I need a special plugin on my machine for these > > services to be effective or if I need to install specific plugins on the > > remote host (or even a snmp client...). > > > > Here is the command lines in services.cfg : > > > > #Service definition disk C: > > define service{ > > use generic-service > > host_name NT4-server > > service_description C: w = 80% c = 90% > > is_volatile 0 > > check_period 24x7 > > contact_groups intern-servers-contactgroup > > notification_options c,w,r > > check_command check_nt_disk!C!80!90 > > } > > > > > > In other words : what's the problem? > > > > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) > > _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Tue Mar 4 12:47:07 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Tue, 4 Mar 2003 12:47:07 +0100 (CET) Subject: Huge pb with SNMP under Nagios 2 Message-ID: <20030304114707.71129.qmail@web10904.mail.yahoo.com> I have just noticed that my SNMP plugins checks were executed and gave response but I get wrong Nagios STATE in the response. Normally i should have a OK STATE and i get an UNKNOWN STATE for all SNMP plugins. It's a strange result any idea ? (Maybe it's a return code problem with check_snmp...) Steve --------------------------------- Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Testez le nouveau Yahoo! Mail -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.sage at ccsgroup.co.uk Tue Mar 4 12:51:17 2003 From: m.sage at ccsgroup.co.uk (Michael Sage) Date: Tue, 4 Mar 2003 11:51:17 -0000 Subject: Statusmap.cgi Message-ID: Hi, I have just about managed to get Nagios working and monitoring a couple of machines, I will be expanding this in the next couple of days. There is one problem that I don't seem to be able to fix. My install doesn't seem to have installed statusmap.cgi, where can I find it or can someone email it too me. TIA. Michael Sage ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From listuser at obbit.se Tue Mar 4 12:55:08 2003 From: listuser at obbit.se (Peter) Date: Tue, 04 Mar 2003 12:55:08 +0100 Subject: debian nagios-mysql Message-ID: <3E64941C.5080608@obbit.se> I am going to install a NMS for some 200 hosts. I installed the debian package nagios-mysql. All seems to work , it reads the database and saves info in the database. However the hostextinfo does not seem to work. I have one entry for one host, looks like this : host_name: bay350 notes_url: http://localhost/mrtg/bay350.html icon_image: switch40.png vrml_image: switch40.png gd2_icon_image: switch40.gd2 icon_image_alt: switch x_2d: -1 y_2d: -1 x_3d: -1.0000 y_3d: -1.0000 z_3d: -1.0000 have_2d_coords: 0 have_3d_coords: 0 It does not show any icons anywhere though. No one seems to read the table hostextinfo. My cgi.cfg has these lines : xsddb_database=nagios xsddb_username=nagios xsddb_password=***** Same as for the other tables... And no hostextinfo[] lines at all. Images are in /usr/share/nagios/htdocs/images/logos What am I doing wrong ? I'm short on time, going to demo soon, and another guy is going to demo snmpc (for Windows)... Since I'll be working on it from time to time, I want a UNIX* solution.. Have a nice day //Peter Hellman ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From maxxik at mail.ru Tue Mar 4 13:42:24 2003 From: maxxik at mail.ru (maxxik) Date: Tue, 4 Mar 2003 14:42:24 +0200 Subject: can i see service status in Status map cgi ? Message-ID: <15220823132.20030304144224@mail.ru> hi ppl ! can i see service troubles in status map cgi ( menu point Status map) ? i can see my host status but not service status ? it's normally ? if not - how i can see service status ? PS i try to define define serviceextinfo { host_name host service_description SERVICE icon_image warning.png icon_image_alt Anomalies } but nothing happen ... in map displayed by Status map i see only host picture not service status ... ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Tue Mar 4 14:35:58 2003 From: lejert at hotmail.com (le jert) Date: Tue, 04 Mar 2003 14:35:58 +0100 Subject: check_nt_disk dont work Message-ID: >From: "le jert" >To: nagios-users at lists.sourceforge.net >Subject: Re: [Nagios-users] check_nt_disk dont work >Date: Tue, 04 Mar 2003 12:13:28 +0100 > >I tried a locate check_nt_disk and it didn't found anything ... So now I >installed the new plugins version (1.3) but still can't find it ... where >can I find them ??? (in nrpe ?) > >>From: "Pascal Miquet" >>To: le jert >>CC: Nagios users >>Subject: Re: [Nagios-users] check_nt_disk dont work >>Date: 04 Mar 2003 11:52:01 +0100 >> >>First, are you sure that you have the check_nt_disk plugin installed on >>your Nagios server ? >> >>If yes could you try manually the check_nt_disk command and look what is >>the result ? >> >>HTH >>Regards >> >>Le mar 04/03/2003 ? 11:11, le jert a ?crit : >> > Hi ! >> > >> > I'm trying to check disk space and cpu load from my machine (nagios) to >>NT 4 >> > servers via check_nt_disk , >> > >> > but it don t seems to work (I get error: Return code of 127 is out of >>bounds >> > - plugin may be missing) >> > >> > I read this tread >> > >>http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id=1873 >> > >> > So now I'm wondering if I need a special plugin on my machine for these >> > services to be effective or if I need to install specific plugins on >>the >> > remote host (or even a snmp client...). >> > >> > Here is the command lines in services.cfg : >> > >> > #Service definition disk C: >> > define service{ >> > use generic-service >> > host_name NT4-server >> > service_description C: w = 80% c = 90% >> > is_volatile 0 >> > check_period 24x7 >> > contact_groups intern-servers-contactgroup >> > notification_options c,w,r >> > check_command check_nt_disk!C!80!90 >> > } >> > >> > >> > In other words : what's the problem? >> > >> > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) >> > > > >_________________________________________________________________ > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. ::: Messages without supporting info will risk being >sent to /dev/null _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Tue Mar 4 14:39:05 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Tue, 4 Mar 2003 07:39:05 -0600 Subject: check_nt_disk dont work Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B471E@gsmail.govst.edu> > Check the Nagios faq! Also see > http://nsclient.ready2run.nl Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: le jert [mailto:lejert at hotmail.com] Sent: Tuesday, March 04, 2003 5:13 AM To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_nt_disk dont work I tried a locate check_nt_disk and it didn't found anything ... So now I installed the new plugins version (1.3) but still can't find it ... where can I find them ??? (in nrpe ?) >From: "Pascal Miquet" >To: le jert >CC: Nagios users >Subject: Re: [Nagios-users] check_nt_disk dont work >Date: 04 Mar 2003 11:52:01 +0100 > >First, are you sure that you have the check_nt_disk plugin installed on >your Nagios server ? > >If yes could you try manually the check_nt_disk command and look what >is the result ? > >HTH >Regards > >Le mar 04/03/2003 ? 11:11, le jert a ?crit : > > Hi ! > > > > I'm trying to check disk space and cpu load from my machine (nagios) > > to >NT 4 > > servers via check_nt_disk , > > > > but it don t seems to work (I get error: Return code of 127 is out > > of >bounds > > - plugin may be missing) > > > > I read this tread > > >http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id >=1873 > > > > So now I'm wondering if I need a special plugin on my machine for > > these services to be effective or if I need to install specific > > plugins on the remote host (or even a snmp client...). > > > > Here is the command lines in services.cfg : > > > > #Service definition disk C: > > define service{ > > use generic-service > > host_name NT4-server > > service_description C: w = 80% c = 90% > > is_volatile 0 > > check_period 24x7 > > contact_groups intern-servers-contactgroup notification_options > > c,w,r check_command check_nt_disk!C!80!90 > > } > > > > > > In other words : what's the problem? > > > > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) > > _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Tue Mar 4 15:10:18 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Tue, 4 Mar 2003 08:10:18 -0600 Subject: check_nt_disk dont work Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B471F@gsmail.govst.edu> Yes. Try reading the readme from nsclient. Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: Williams, P. Lane [mailto:Lane.Williams at jhuapl.edu] Sent: Tuesday, March 04, 2003 8:03 AM To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] check_nt_disk dont work Did you define the command (check_nt_disk) in checkcommands.cfg? Lane -----Original Message----- From: VanZee, Timothy [mailto:T-VANZEE at govst.edu] Sent: Tuesday, March 04, 2003 8:39 AM To: le jert; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] check_nt_disk dont work > Check the Nagios faq! Also see > http://nsclient.ready2run.nl Tim Van Zee ITS Network Specialist Governors State University ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Tue Mar 4 15:12:10 2003 From: lejert at hotmail.com (le jert) Date: Tue, 04 Mar 2003 15:12:10 +0100 Subject: check_nt_disk dont work Message-ID: yes, here is the lines # 'check_nt_disk' command definition define command{ command_name check_nt_disk command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 3538 -s $USER5$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ } >From: "Williams, P. Lane" >To: nagios-users at lists.sourceforge.net >Subject: RE: [Nagios-users] check_nt_disk dont work >Date: Tue, 4 Mar 2003 09:02:41 -0500 > >Did you define the command (check_nt_disk) in checkcommands.cfg? > >Lane > >-----Original Message----- >From: VanZee, Timothy [mailto:T-VANZEE at govst.edu] >Sent: Tuesday, March 04, 2003 8:39 AM >To: le jert; nagios-users at lists.sourceforge.net >Subject: RE: [Nagios-users] check_nt_disk dont work > > > > Check the Nagios faq! Also see > > http://nsclient.ready2run.nl > >Tim Van Zee >ITS Network Specialist >Governors State University > > > >-----Original Message----- >From: le jert [mailto:lejert at hotmail.com] >Sent: Tuesday, March 04, 2003 5:13 AM >To: nagios-users at lists.sourceforge.net >Subject: Re: [Nagios-users] check_nt_disk dont work > > >I tried a locate check_nt_disk and it didn't found anything ... So now I >installed the new plugins version (1.3) but still can't find it ... where >can I find them ??? (in nrpe ?) > > >From: "Pascal Miquet" > >To: le jert > >CC: Nagios users > >Subject: Re: [Nagios-users] check_nt_disk dont work > >Date: 04 Mar 2003 11:52:01 +0100 > > > >First, are you sure that you have the check_nt_disk plugin installed on > >your Nagios server ? > > > >If yes could you try manually the check_nt_disk command and look what > >is the result ? > > > >HTH > >Regards > > > >Le mar 04/03/2003 ? 11:11, le jert a ?crit : > > > Hi ! > > > > > > I'm trying to check disk space and cpu load from my machine (nagios) > > > to > >NT 4 > > > servers via check_nt_disk , > > > > > > but it don t seems to work (I get error: Return code of 127 is out > > > of > >bounds > > > - plugin may be missing) > > > > > > I read this tread > > > > >http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id > >=1873 > > > > > > So now I'm wondering if I need a special plugin on my machine for > > > these services to be effective or if I need to install specific > > > plugins on the remote host (or even a snmp client...). > > > > > > Here is the command lines in services.cfg : > > > > > > #Service definition disk C: > > > define service{ > > > use generic-service > > > host_name NT4-server > > > service_description C: w = 80% c = 90% > > > is_volatile 0 > > > check_period 24x7 > > > contact_groups intern-servers-contactgroup notification_options > > > c,w,r check_command check_nt_disk!C!80!90 > > > } > > > > > > > > > In other words : what's the problem? > > > > > > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) > > > > > >_________________________________________________________________ > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting >any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting >any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null _________________________________________________________________ Recevez vos e-mails MSN Hotmail par SMS sur votre GSM ! http://www.fr.msn.be/gsm/servicesms/hotmailparsms ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Chris.Losch at newham.gov.uk Tue Mar 4 15:18:09 2003 From: Chris.Losch at newham.gov.uk (Chris Losch) Date: Tue, 4 Mar 2003 14:18:09 -0000 Subject: Nagios and RH 8.0 Message-ID: Pascal I am currently using Nagios 1.0 and RH8.0 sucessfully - I had a few teething issues (mainly my own doing). I've been running it with no problems for a few months now. I don't remember any specific changes I had to make to get it working, but check the list archives for my posts if you encounter any issues, as they may be the same I had. Chris -----Original Message----- From: Pascal Miquet [mailto:p.miquet at hafiba.fr] Sent: 04 March 2003 10:52 To: Nagios users Subject: [Nagios-users] Nagios and RH 8.0 Hello, Just few words to ask if Nagios and RH 8.0/Apache 2.0 are now working fine ? If yes what prerequisit are needed ? Thanks for your help Pascal Miquet ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ********************************************************************** Important: This e-mail is intended for the above named person only and should be treated as confidential. If this has come to you in error you should take no action based on it, nor should you copy or show it to anyone; please telephone us immediately. ********************************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From tjl at topdanmark.dk Tue Mar 4 16:27:16 2003 From: tjl at topdanmark.dk (Thomas Jens Lauritsen) Date: Tue, 4 Mar 2003 16:27:16 +0100 Subject: Vedr.: Huge pb with SNMP under Nagios 2 - Solved!? Message-ID: Hello, I sometimes get these UNKNOWN under Netsaint. You get them if the SNMP-check can't connect to the agent/host. If you wait to the next check - you should get an OK STATE again. If not - the agent at the other end might be down - and you have to check up on the problem. Best regards Thomas Steve Dussaux Til: nagios-users at lists.sourceforge.net Sendt af: cc: nagios-users-admin at lists.sourc Vedr.: [Nagios-users] Huge pb with SNMP under Nagios 2 eforge.net 04-03-03 12:47 I have?just?noticed that my SNMP plugins checks were executed and gave response but?I get?wrong Nagios STATE in the response. Normally i should have a OK STATE and i get an UNKNOWN STATE for all SNMP plugins. It's a strange result any idea ? (Maybe it's a return code problem with check_snmp...) Steve Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Testez le nouveau Yahoo! Mail ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jens at nha.co.za Tue Mar 4 15:49:27 2003 From: jens at nha.co.za (=?iso-8859-1?Q?Jens_von_B=FClow?=) Date: Tue, 4 Mar 2003 16:49:27 +0200 Subject: absolute time check for service Message-ID: <8F2D061DFD77E444B00D8FE9B8273DD02C3293@titan.nha.co.za> Greetings, I need to check a service which is a web based service via a URL for the purpose of initiating a process and checking the return code. But I need to initiate one check a day at 2am in the morning and only one check. I have looked at the documentation but can't figure out how to do this? Any ideas? Thanks & Regards Jens -------------- next part -------------- An HTML attachment was scrubbed... URL: From fes at users.sourceforge.net Tue Mar 4 16:49:34 2003 From: fes at users.sourceforge.net (Frank Sweetser) Date: Tue, 4 Mar 2003 10:49:34 -0500 Subject: absolute time check for service In-Reply-To: <8F2D061DFD77E444B00D8FE9B8273DD02C3293@titan.nha.co.za> References: <8F2D061DFD77E444B00D8FE9B8273DD02C3293@titan.nha.co.za> Message-ID: <20030304154934.GA14711@erwin.wpi.edu> On Tue, Mar 04, 2003 at 04:49:27PM +0200, Jens von B?low wrote: > Greetings, > > I need to check a service which is a web based service via a URL for the > purpose of initiating a process and checking the return code. But I need to > initiate one check a day at 2am in the morning and only one check. > > I have looked at the documentation but can't figure out how to do this? Schedule a passive service check with cron? -- Frank Sweetser fs at wpi.edu WPI Network Engineer ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From florian.taeger at gmx.de Tue Mar 4 17:04:57 2003 From: florian.taeger at gmx.de (=?iso-8859-1?Q?Florian_T=E4ger?=) Date: Tue, 4 Mar 2003 17:04:57 +0100 Subject: Can't locate nagios.lock file Message-ID: <006c01c2e267$cda3d410$020010ac@konfuziushome> Hy everybody! I just installed the Nagios network Monitor. But it doesn't start cause there's a "nagios.lock" file missing. Can anybody tell me where I can find the nagios.lock file and what it should consist. I know where it is supposed to be, but there is no such file. Also in the man pages, the file isn't mentioned ... Regards Florian T?ger -------------- next part -------------- An HTML attachment was scrubbed... URL: From joe.davenport at chanllc.com Tue Mar 4 17:06:31 2003 From: joe.davenport at chanllc.com (Joe Davenport) Date: Tue, 4 Mar 2003 10:06:31 -0600 Subject: SMTP check always shows critical Message-ID: I've gotten Nagios running well except for one issue. Nagios reports the smtp process as critical even though the return value is SMTP-OK. I've tried changing the check_command from a simple check_smtp to the absolute reference below and the results are the same. define service{ use generic-service host_name mail1 service_description SMTP is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 15 retry_check_interval 15 contact_groups nt-admins notification_interval 120 notification_period 24x7 notification_options u check_command "/usr/local/nagios/libexec/check_smtp -H 10.90.12.10 -p 25 -e '220' -w 7 -c 10 -t 12" } Here is what shows on the service status: SMTP CRITICAL 03-04-2003 09:21:19 1d 2h 23m 38s 3/3 SMTP OK - 4 second response time Thanks for any help. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rburnson at cps.k12.il.us Tue Mar 4 17:16:16 2003 From: rburnson at cps.k12.il.us (Burnson, Richard) Date: Tue, 4 Mar 2003 10:16:16 -0600 Subject: Can't locate nagios.lock file Message-ID: This error can be misleading. Instead run /bin/Nagios -v /etc/Nagios.cfg (Typically this is /usr/local/nagios/bin/nagios -v /usr/local/Nagios/etc/Nagios.cfg). This will provide better debugging information. Most likely you have a configuration error. HTH, Richard -----Original Message----- From: Florian T?ger [mailto:florian.taeger at gmx.de] Sent: Tuesday, March 04, 2003 10:05 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Can't locate nagios.lock file Hy everybody! ? I just installed the Nagios network Monitor. But it doesn't start cause there's a "nagios.lock" file missing. ? Can anybody tell me where I can find the nagios.lock file and what it should consist. ? I know where it is supposed to be, but there is no such file. Also in the man pages, the file isn't mentioned ... ? Regards ? Florian T?ger ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Tue Mar 4 17:36:11 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Tue, 4 Mar 2003 10:36:11 -0600 Subject: absolute time check for service Message-ID: There was a recent discussion on the list regarding something to this effect, and the best solution I recall reading utilized a custom timeperiod. I can forward that, if you like (if I can find it). jc > -----Original Message----- > From: Frank Sweetser [mailto:fes at users.sourceforge.net] > Sent: Tuesday, March 04, 2003 9:50 AM > To: Jens von B?low > Cc: nagios-users at lists.sourceforge.net; Bruce Muller > Subject: Re: [Nagios-users] absolute time check for service > > > On Tue, Mar 04, 2003 at 04:49:27PM +0200, Jens von B?low wrote: > > Greetings, > > > > I need to check a service which is a web based service via > a URL for the > > purpose of initiating a process and checking the return > code. But I need to > > initiate one check a day at 2am in the morning and only one check. > > > > I have looked at the documentation but can't figure out how > to do this? > > Schedule a passive service check with cron? > > -- > Frank Sweetser fs at wpi.edu > WPI Network Engineer > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jarett_DeAngelis at fujifilm.com Tue Mar 4 17:52:39 2003 From: Jarett_DeAngelis at fujifilm.com (Jarett DeAngelis) Date: Tue, 04 Mar 2003 11:52:39 -0500 Subject: Statusmap picture issues Message-ID: Hi all, Having trouble with getting the icons for my hosts to show up in the statusmap. Here is the pertinent line in my cgi.cfg: xedtemplate_config_file=/usr/local/nagios/etc/hostextinfo.cfg #xedtemplate_config_file=/usr/local/nagios/etc/serviceextinfo.cfg (I haven't defined service extended info yet) And from the hostextinfo.cfg file: # Extended info template for Windows machines. define hostextinfo{ name windows icon_image win40.gd2 icon_image_alt Windows Computer register 0 } # Extended info template for Citrix servers. define hostextinfo{ name citrix icon_image citrix.gd2 icon_image_alt Citrix Server register 0 } # Extended info for Windows machines define hostextinfo{ host_name ALADDIN use windows } define hostextinfo{ host_name professor use windows } # Extended info for Citrix servers (Astea) define hostextinfo{ host_name nyastcmf1.fujifilm.com use citrix } define hostextinfo{ host_name nyastcmf2.fujifilm.com use citrix } define hostextinfo{ host_name nyastcmf3.fujifilm.com use citrix } define hostextinfo{ host_name nyastcmf4.fujifilm.com use citrix } So what am I doing wrong? Those files are present in /usr/local/nagios/share/images/logos. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gwichman at zantaz.com Tue Mar 4 18:14:57 2003 From: gwichman at zantaz.com (Gerald Wichmann) Date: Tue, 4 Mar 2003 09:14:57 -0800 Subject: Error connecting to MySQL database server. Message-ID: <12C7D768CC8ED4118A9200508BEEC6FB02CB428F@zanexch.zantaz.com> FYI The Nagios FAQ link on nagios.org has been stating the following now for several days: Error connecting to MySQL database server. Last modified: Jan 1st, 2003 | Copyright ? 2001-2003 Ethan Galstad Gerald Wichmann Senior Systems Development Engineer Zantaz, Inc. 925.598.3099 (w) This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm) service. For more information, visit us at www.zantaz.com. IMPORTANT: This electronic mail message is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone or directly reply to the original message(s) sent. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ecarlseen at praecelsus.com Tue Mar 4 18:16:01 2003 From: ecarlseen at praecelsus.com (Erik Carlseen) Date: Tue, 4 Mar 2003 09:16:01 -0800 Subject: Nagios and RH 8.0 In-Reply-To: References: Message-ID: I'm running Nagios with APAN on RH 8. No problems (or at least no RH 8.0-specific problems). Erik Carlseen Praecelsus Consulting, Inc. http://www.praecelsus.com PGP/GPG Public Encryption Key available at: http://www.praecelsus.com/~ecarlseen/public_key.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From Hagen_Deike at icon-scm.com Tue Mar 4 18:13:19 2003 From: Hagen_Deike at icon-scm.com (Hagen Deike) Date: Tue, 4 Mar 2003 18:13:19 +0100 Subject: Can't locate nagios.lock file Message-ID: <7E47A0E20913514C8F4CD1BC241A37030A4503@serv-075.icon-germany.local> Hi, I had once the same problem. Check you version of "su" if you have a switch -l. If not try this... Look in the start script (/etc/init.d/nagios) and search for a row with the following entry. su -l $Nagios -c "touch $NagiosVar/nagios.log $NagiosSav" Just remove the "-l" If that doesn't help you will need a little deeper research into the script. Regards, Hagen Deike -----Original Message----- From: Florian T?ger [mailto:florian.taeger at gmx.de] Sent: Dienstag, 4. M?rz 2003 17:05 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Can't locate nagios.lock file > Hy everybody! ? > I just installed the Nagios network Monitor. But it doesn't start cause there's a "nagios.lock" > file missing. > ? > Can anybody tell me where I can find the nagios.lock file and what it should consist. > ? > I know where it is supposed to be, but there is no such file. Also in the man pages, the file > isn't mentioned ... ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From slebrun at muskoka.com Tue Mar 4 18:58:51 2003 From: slebrun at muskoka.com (Shayne Lebrun) Date: Tue, 4 Mar 2003 12:58:51 -0500 Subject: Error connecting to MySQL database server. In-Reply-To: <12C7D768CC8ED4118A9200508BEEC6FB02CB428F@zanexch.zantaz.com> References: <12C7D768CC8ED4118A9200508BEEC6FB02CB428F@zanexch.zantaz.com> Message-ID: Looks like they should set up a monitoring server to keep an eye on the HTTP being returned. Can anybody suggest some good software to do that? :-) -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Gerald Wichmann Sent: Tuesday, March 04, 2003 12:15 PM To: Nagios (E-mail) Subject: [Nagios-users] Error connecting to MySQL database server. FYI The Nagios FAQ link on nagios.org has been stating the following now for several days: Error connecting to MySQL database server. Last modified: Jan 1st, 2003 | Copyright ? 2001-2003 Ethan Galstad Gerald Wichmann Senior Systems Development Engineer Zantaz, Inc. 925.598.3099 (w) This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm) service. For more information, visit us at www.zantaz.com. IMPORTANT: This electronic mail message is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone or directly reply to the original message(s) sent. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From val at nycity.com Tue Mar 4 19:13:44 2003 From: val at nycity.com (Val Vechnyak) Date: Tue, 4 Mar 2003 13:13:44 -0500 Subject: epager not working Message-ID: <000b01c2e279$cada9cc0$fa01a8c0@reesa> Hello, I have notifications by pager setup in contacts file. One epager email is name at domain.co.zn and another one is name at domain.com. name at domain.com works while the other one does not. I am able to send email to that account in New Zealand from my email client, but not from nagios. I was wondering if $CONTACTPAGER$ does not see all the "co.zn"? Thank you for your help. VV -------------- next part -------------- An HTML attachment was scrubbed... URL: From lejert at hotmail.com Tue Mar 4 17:25:15 2003 From: lejert at hotmail.com (le jert) Date: Tue, 04 Mar 2003 17:25:15 +0100 Subject: check_nt_disk dont work Message-ID: now, I've compiled the pluggin, put it in the directory and restarted nagios - the client have its NSClient pluggin running... but it still don't work . The error message is now 'connection refused by host' ... It means that everything is well configured, no ? >>From: "Pascal Miquet" >>To: le jert >>CC: Nagios users >>Subject: Re: [Nagios-users] check_nt_disk dont work >>Date: 04 Mar 2003 11:52:01 +0100 >> >>First, are you sure that you have the check_nt_disk plugin installed on >>your Nagios server ? >> >>If yes could you try manually the check_nt_disk command and look what is >>the result ? >> >>HTH >>Regards >> >>Le mar 04/03/2003 ? 11:11, le jert a ?crit : >> > Hi ! >> > >> > I'm trying to check disk space and cpu load from my machine (nagios) to >>NT 4 >> > servers via check_nt_disk , >> > >> > but it don t seems to work (I get error: Return code of 127 is out of >>bounds >> > - plugin may be missing) >> > >> > I read this tread >> > >>http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id=1873 >> > >> > So now I'm wondering if I need a special plugin on my machine for these >> > services to be effective or if I need to install specific plugins on >>the >> > remote host (or even a snmp client...). >> > >> > Here is the command lines in services.cfg : >> > >> > #Service definition disk C: >> > define service{ >> > use generic-service >> > host_name NT4-server >> > service_description C: w = 80% c = 90% >> > is_volatile 0 >> > check_period 24x7 >> > contact_groups intern-servers-contactgroup >> > notification_options c,w,r >> > check_command check_nt_disk!C!80!90 >> > } >> > >> > >> > In other words : what's the problem? >> > >> > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) >> > > > >_________________________________________________________________ > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. ::: Messages without supporting info will risk being >sent to /dev/null _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hermann.mueller at oasy.de Tue Mar 4 16:49:33 2003 From: hermann.mueller at oasy.de (=?iso-8859-1?Q?Hermann_M=FCller?=) Date: Tue, 4 Mar 2003 16:49:33 +0100 Subject: Host Status remains red Message-ID: <002501c2e265$aa4c8130$152ea8c0@rumpelkammer> Hello, i have a Problem with the status of the hosts, as soon as a checked service fails the service and the host "goes" red. but when the service comes back to green the host still keeps his red status and remains in down status. any hints on this ??? Thanks a lot ! Hermann ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Lane.Williams at jhuapl.edu Tue Mar 4 15:02:41 2003 From: Lane.Williams at jhuapl.edu (Williams, P. Lane) Date: Tue, 4 Mar 2003 09:02:41 -0500 Subject: check_nt_disk dont work Message-ID: Did you define the command (check_nt_disk) in checkcommands.cfg? Lane -----Original Message----- From: VanZee, Timothy [mailto:T-VANZEE at govst.edu] Sent: Tuesday, March 04, 2003 8:39 AM To: le jert; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] check_nt_disk dont work > Check the Nagios faq! Also see > http://nsclient.ready2run.nl Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: le jert [mailto:lejert at hotmail.com] Sent: Tuesday, March 04, 2003 5:13 AM To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_nt_disk dont work I tried a locate check_nt_disk and it didn't found anything ... So now I installed the new plugins version (1.3) but still can't find it ... where can I find them ??? (in nrpe ?) >From: "Pascal Miquet" >To: le jert >CC: Nagios users >Subject: Re: [Nagios-users] check_nt_disk dont work >Date: 04 Mar 2003 11:52:01 +0100 > >First, are you sure that you have the check_nt_disk plugin installed on >your Nagios server ? > >If yes could you try manually the check_nt_disk command and look what >is the result ? > >HTH >Regards > >Le mar 04/03/2003 ? 11:11, le jert a ?crit : > > Hi ! > > > > I'm trying to check disk space and cpu load from my machine (nagios) > > to >NT 4 > > servers via check_nt_disk , > > > > but it don t seems to work (I get error: Return code of 127 is out > > of >bounds > > - plugin may be missing) > > > > I read this tread > > >http://sourceforge.net/mailarchive/forum.php?thread_id=1758840&forum_id >=1873 > > > > So now I'm wondering if I need a special plugin on my machine for > > these services to be effective or if I need to install specific > > plugins on the remote host (or even a snmp client...). > > > > Here is the command lines in services.cfg : > > > > #Service definition disk C: > > define service{ > > use generic-service > > host_name NT4-server > > service_description C: w = 80% c = 90% > > is_volatile 0 > > check_period 24x7 > > contact_groups intern-servers-contactgroup notification_options > > c,w,r check_command check_nt_disk!C!80!90 > > } > > > > > > In other words : what's the problem? > > > > (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 beta2) > > _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Tue Mar 4 15:05:07 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Tue, 4 Mar 2003 09:05:07 -0500 Subject: Nagios and RH 8.0 Message-ID: <5593DA408212D511B0910002A513501F01D2890C@phsexch20.mgh.harvard.edu> Hi Pascal, I have successfully installed Nagios 1.0 onto a Red Hat 8.0 machine. The version of Apache that I am using is 2.0.47. As far as prerequisites for the operating system and web server, the system that I have it running on has 128 megabytes of RAM, and a twenty gigabyte hard drive. The CPU speed is 500 Mhz. Any other questions? -----Original Message----- From: Pascal Miquet [mailto:p.miquet at hafiba.fr] Sent: Tuesday, March 04, 2003 5:52 AM To: Nagios users Subject: [Nagios-users] Nagios and RH 8.0 Hello, Just few words to ask if Nagios and RH 8.0/Apache 2.0 are now working fine ? If yes what prerequisit are needed ? Thanks for your help Pascal Miquet ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From maxxik at mail.ru Tue Mar 4 17:18:05 2003 From: maxxik at mail.ru (maxxik) Date: Tue, 4 Mar 2003 18:18:05 +0200 Subject: check_disk troubles Message-ID: <133763879.20030304181805@mail.ru> Hi again ... i have a LVM volume (/dev/main/home-smb-profiles) when i try to check it thru check_disk plugin : check_command defined in services.cfg : check_command check_local_disk!20%!10%!/dev/main/home-smb-profiles (check_local_disk is defined as define command{ command_name check_local_disk command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ } ) there was a trouble : nagios cant check it nagios write : Disk "/dev/main/home-smb-profiles" not mounted or nonexistant ... but check near ( check_command check_local_disk!20%!10%!/dev/main/home-smb) finished succesfully .... when i try to run check_disk manually (check_disk -w 20% -c 10% /dev/main/home-smb-profiles) all normally executing ... any ideas ? wbr,maxx ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Tue Mar 4 17:17:44 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Tue, 4 Mar 2003 10:17:44 -0600 Subject: Viewing rights Message-ID: Really? Hhhmmm.... What happens when this user clicks on Service Detail? (This is where my DBAs have a restricted view of their world.) jc > -----Original Message----- > From: Philip Brown [mailto:nagios at bolthole.com] > Sent: Monday, March 03, 2003 6:46 PM > To: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Viewing rights > > > On Mon, Mar 03, 2003 at 04:41:11PM -0600, Carroll, Jim P > [Contractor] wrote: > > Nope. > > > > You can give them read-only access to all hosts, just like > you would give > > 'guest' read-only access to all hosts. > > > > Failing that, you can give them zero host-level access and > stick to their > > services. It really does make some of the views > inhospitable, but.... > > Erm.. speaking of that last bit... > > I just created a user that is only in a contact group that is notified > about services... and I see NOTHING in any of the menus. > > I was planning to make a stripped down version of the nagios main menu > that only has service views. But there doesnt seem to BE any > service-only > views from the main menu. > > I thought there was a way to at least give application developers > a list of services-only. > (limited to the services they are authorized for) > > But I dont even see that happening. Is this possible, and if so, > what ight I be missing? > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at bolthole.com Tue Mar 4 21:25:50 2003 From: nagios at bolthole.com (Philip Brown) Date: Tue, 4 Mar 2003 12:25:50 -0800 Subject: Viewing rights In-Reply-To: ; from jcarro10@sprintspectrum.com on Tue, Mar 04, 2003 at 10:17:44AM -0600 References: Message-ID: <20030304122550.A39300@bolthole.com> On Tue, Mar 04, 2003 at 10:17:44AM -0600, Carroll, Jim P [Contractor] wrote: > Really? Hhhmmm.... > > What happens when this user clicks on Service Detail? (This is where my > DBAs have a restricted view of their world.) oops. sorry.. figured out my problem. I created the HTML auth account, but didnt fully link in the user to the contact groups. sorry... ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DTerrell at Delphi-Tech.com Tue Mar 4 22:19:52 2003 From: DTerrell at Delphi-Tech.com (DTerrell at Delphi-Tech.com) Date: Tue, 4 Mar 2003 16:19:52 -0500 Subject: SMB Pop-up Message-ID: <880E60DA7286AB4CBEECB01B169A63BD02867661@NJ-2K-Email1.delphi-tech.com> I'm trying to make an alternate notification option. My linux machine is a member of my NT domain here, and I'd like a notification type to be notify-by-messenger...using the messenger service. I'm sure someone has already done this, except I'm wondering hot to make the macros for it, such as $CONTACTHOST$ like the $CONTACTEMAIL$, there would be a few hosts I'd need to send it to, and I'd like it to be so I can set it in the contacts.cfg file like an email address and have it use that. any help appreciated. -Dave T. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg at intouch.ca Tue Mar 4 22:14:38 2003 From: greg at intouch.ca (Greg Webster) Date: Tue, 4 Mar 2003 13:14:38 -0800 Subject: Missing scripts? Message-ID: <20030304131438.3e9d99fb.greg@intouch.ca> I've just installed Nagios and notice that I am missing a number of scripts in the nagios/sbin directory. My nagios/sbin listing: avail.cgi extinfo.cgi outages.cgi statuswml.cgi tac.cgi cmd.cgi history.cgi showlog.cgi statuswrl.cgi config.cgi notifications.cgi status.cgi summary.cgi The ones that appear to be missing (Error 404 not found using the web interface) are statusmap.cgi trends.cgi histogram.cgi I've checked the demo on the Nagios site and it has these...is there are error in the installer? Did I miss something in the install? Thanks, Greg Webster ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasonm at kelman.com Tue Mar 4 23:11:38 2003 From: jasonm at kelman.com (Jason Marshall) Date: Tue, 4 Mar 2003 15:11:38 -0700 (MST) Subject: Obsessing over Obsessing... In-Reply-To: <003c01c2d874$0b0220d0$ddd0d0cd@pendleton> References: <003c01c2d874$0b0220d0$ddd0d0cd@pendleton> Message-ID: This is an old reply -- I had to go across the continent for a wedding, so I couldn't reply right away. I'm using Solaris 8, not RedHat anything... > What version of RedHat are you using? I am currently trying to get a > distributed setup going myself with RedHat 8.0 boxes and am having the same > issue. It appears that Nagios is not attempting to run the ocsp command at > all. > > Also, I noted a discrepancy in the documentation on the ocsp command. In the > distributed server documentation, it says the ocsp command is run after > every service check. However, the nagios.cfg documentation says that it is > only run after event handlers or notifications... > > Thanks, > > Robert S. Galloway > Network Security Engineer > IKANO Communications > ...the Internet branding company > Official Data Networking Services Provider for the > Salt Lake Olympic Winter Games of 2002 > securityguy at ikano.com > 801-415-8089 > > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Burnson, > Richard > Sent: Wednesday, February 19, 2003 3:48 PM > To: nagios-users > Subject: RE: [Nagios-users] Obsessing over Obsessing... > > Jason, > > I had the same issue on a RedHat server, but no one on the list > was able to help. I was able to get it to work though, once > I moved the distributed system to another server that I did > not use the high security setting during the OS install. Did > you happen to configure your server with any special security > settings? > > Richard > > > > -----Original Message----- > From: Jason Marshall [mailto:jasonm at kelman.com] > Sent: Wednesday, February 19, 2003 1:18 PM > To: nagios-users > Subject: [Nagios-users] Obsessing over Obsessing... > > I just created a new ocsp_command: > > define command { > command_name submit_check_result_jm > command_line /usr/bin/touch /tmp/blah > } > > and put this in my nagios.cfg file: > > obsess_over_services=1 > ocsp_command=submit_check_result_jm > > I also have: > > obsess_over_service 1 > > on each of my services on the distributed machine... > > Still nothing -- it's pretty clear that Nagios isn't attempting to run the > ocsp_command I've defined. There are NO errors spewing out to the > log_file, so it mustn't think it's doing anything inappropriate. > > If anyone else has any ideas, I'm all ears! > > If I'm obsessing over services on the distributed machine, should the > status.log be filled with recent check results? Or should they only be > sent to the master server? Or should it be going to both? Should I be > running state retention on the distributed machine? > > --- > Jason Marshall, Unix Geek, Kelman Technologies, Inc., Calgary, AB, Canada. > > From a Sun Microsystems bug report (#4102680): > "Workaround: don't pound on the mouse like a wild monkey." > > "I have great faith in fools: > Self confidence my friends call it." -Edgar Allan Poe > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > --- Jason Marshall, Unix Geek, Kelman Technologies, Inc., Calgary, AB, Canada. From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." "I have great faith in fools: Self confidence my friends call it." -Edgar Allan Poe ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Tue Mar 4 23:55:35 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Wed, 5 Mar 2003 09:55:35 +1100 Subject: Missing scripts? In-Reply-To: <20030304131438.3e9d99fb.greg@intouch.ca>; from greg@intouch.ca on Tue, Mar 04, 2003 at 01:14:38PM -0800 References: <20030304131438.3e9d99fb.greg@intouch.ca> Message-ID: <20030305095531.A9153@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Tue, Mar 04, 2003 at 01:14:38PM -0800, Greg Webster wrote: > > I've just installed Nagios and notice that I am missing a number of scripts in the nagios/sbin directory. > > My nagios/sbin listing: > avail.cgi extinfo.cgi outages.cgi statuswml.cgi tac.cgi > cmd.cgi history.cgi showlog.cgi statuswrl.cgi > config.cgi notifications.cgi status.cgi summary.cgi > > The ones that appear to be missing (Error 404 not found using the web interface) are > statusmap.cgi > trends.cgi > histogram.cgi > > I've checked the demo on the Nagios site and it has these...is there are error in the installer? Did I miss something in the install? > > Thanks, > > Greg Webster > that it looks to me as if configure failed to find the gd libraries used to build the graphics for the CGI programs. I suggest, 1 Ensure that libgd.so (and or .a) is on your system 2 re-run configure piping STDERR through more so you can watch for the report about gd 2.1 If it finds gd, good 2.2 otherwise, try again with the gd path configure options (configure --help) if it fails, bad. Fail. give up. 3 Rebuild 4 Reinstall What OS are you running. FreeBSD also fails to find gd without configure options. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dlevine at seasontickets.com Wed Mar 5 00:01:40 2003 From: dlevine at seasontickets.com (David Levine) Date: Tue, 4 Mar 2003 17:01:40 -0600 Subject: $OUTPUT$ in misccommands.cfg Question... Message-ID: Hi all - I am having a little trouble with email notifications... I receive the messages just fine, but I am experiencing the following behavior: With check_nt, am getting the output from USEDDISKSPACE. It displays fine on the Nagios (web) interface, but when I receive an (email) notification, this is what I get: Notification Type: PROBLEM Service Name: Disk Usage Stats - D On Host: host.domain.com Host IP Address: 192.168.100.8 Service State: CRITICAL Occurence Date/Time: Tue Mar 4 17:48:51 CST 2003 Additional Info: D: It is the last line that I am curious about - there is nothing beyond the "D:". I can also see this error message from the Nagios host console: /usr/bin/printf: \ : invalid escape This makes sense to me, because the backslash (as in D:\) is an escape character in printf. However, is there a way that I can stop this - so I can get all of the information in the email notification? Thanks! David dlevine at seasontickets.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Wed Mar 5 00:03:57 2003 From: russell at quadrix.com (Russell Scibetti) Date: Tue, 04 Mar 2003 18:03:57 -0500 Subject: Missing scripts? References: <20030304131438.3e9d99fb.greg@intouch.ca> Message-ID: <3E6530DD.7000607@quadrix.com> Always a good idea to check the FAQ first... The three cgis you can't find are the ones that use graphics libraries. The cause of this problem is most likely because, when you ran configure, Nagios couldn't find some of the required graphics libraries (libgd, libpng, libjpeg, and zlib). Either you don't have them, or the script couldn't find wherever you have them. Run configure again and log the output. Look through it and you should be able to find where the problem is. Russell Greg Webster wrote: >I've just installed Nagios and notice that I am missing a number of scripts in the nagios/sbin directory. > >My nagios/sbin listing: >avail.cgi extinfo.cgi outages.cgi statuswml.cgi tac.cgi >cmd.cgi history.cgi showlog.cgi statuswrl.cgi >config.cgi notifications.cgi status.cgi summary.cgi > >The ones that appear to be missing (Error 404 not found using the web interface) are >statusmap.cgi >trends.cgi >histogram.cgi > >I've checked the demo on the Nagios site and it has these...is there are error in the installer? Did I miss something in the install? > >Thanks, > >Greg Webster > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Wed Mar 5 00:06:32 2003 From: russell at quadrix.com (Russell Scibetti) Date: Tue, 04 Mar 2003 18:06:32 -0500 Subject: Statusmap.cgi References: Message-ID: <3E653178.5080504@quadrix.com> I just sent a reply to a very similar question. Always a good idea to check the FAQ first... The cause of this problem is most likely because, when you ran configure, Nagios couldn't find some of the required graphics libraries (libgd, libpng, libjpeg, and zlib) that statusmap.cgi uses. This can also cause problems with trends.cgi and histogram.cgi. Either you're missing some of these libraries, or the script couldn't find where you have them. Run configure again and log the output. Look through it and you should be able to find where the problem is. Russell Michael Sage wrote: >Hi, > >I have just about managed to get Nagios working and monitoring a couple >of machines, I will be expanding this in the next couple of days. There >is one problem that I don't seem to be able to fix. My install doesn't >seem to have installed statusmap.cgi, where can I find it or can someone >email it too me. > >TIA. > >Michael Sage > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg at intouch.ca Wed Mar 5 00:50:53 2003 From: greg at intouch.ca (Greg Webster) Date: Tue, 4 Mar 2003 15:50:53 -0800 Subject: Missing scripts? In-Reply-To: <20030305095531.A9153@IPAustralia.Gov.AU> References: <20030304131438.3e9d99fb.greg@intouch.ca> <20030305095531.A9153@IPAustralia.Gov.AU> Message-ID: <20030304155053.56039e7c.greg@intouch.ca> On Wed, 5 Mar 2003 09:55:35 +1100: Stanley Hopcroft wrote: > that it looks to me as if configure failed to find the gd libraries used > to build the graphics for the CGI programs. > > I suggest, > > 1 Ensure that libgd.so (and or .a) is on your system # locate libjpeg.so /usr/lib/libjpeg.so.62 /usr/lib/libjpeg.so.62.0.0 # locate libgd.so /usr/lib/libgd.so.1 /usr/lib/libgd.so.1.8.4 /usr/lib/libgd.so.2 /usr/lib/libgd.so.2.0.1 # locate libpng.so /usr/lib/libpng.so.2 /usr/lib/libpng.so.2.1.0.12 /usr/lib/libpng.so.3 /usr/lib/libpng.so.3.1.2.1 I've ran the following with the same result: ./configure --with-gd-lib=/usr/lib --with-gd-inc=/usr/include (not sure exactly what it's looking for in --with-gd-inc) > What OS are you running. FreeBSD also fails to find gd without configure > options. Debian 'testing' release. Here is what it gives me for errors: checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no *** GD, PNG, and/or JPEG libraries could not be located... ********* Boutell's GD library is required to compile the statusmap, trends and histogram CGIs. Get it from http://www.boutell.com/gd/, compile it, and use the --with-gd-lib and --with-gd-inc arguments to specify the locations of the GD library and include files. NOTE: In addition to the gd-devel library, you'll also need to make sure you have the png-devel and jpeg-devel libraries installed on your system. ...I wish this gave more concise errors...if it's not finding one specific library, then I wanna know that! Thanks! Greg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Wed Mar 5 00:51:03 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Tue, 4 Mar 2003 20:51:03 -0300 Subject: RES: $OUTPUT$ in misccommands.cfg Question... In-Reply-To: References: Message-ID: I had this problem too, and Mr. De Blende told me to do this... And it worked fine... Sure that helps... Sandro Vaz **************************************************************************** **************************** Try this: define command{ command_name notify-by-email command_line /bin/echo -e '***** OpMon *****\n\nNotificationType: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress:$HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$' | /bin/mail -s "** OpMon Alert - $NOTIFICATIONTYPE$ -$HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ } -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de David Levine Enviada em: ter?a-feira, 4 de mar?o de 2003 20:02 Para: Nagios Users List (E-mail) Assunto: [Nagios-users] $OUTPUT$ in misccommands.cfg Question... Hi all - I am having a little trouble with email notifications... I receive the messages just fine, but I am experiencing the following behavior: With check_nt, am getting the output from USEDDISKSPACE. It displays fine on the Nagios (web) interface, but when I receive an (email) notification, this is what I get: Notification Type: PROBLEM Service Name: Disk Usage Stats - D On Host: host.domain.com Host IP Address: 192.168.100.8 Service State: CRITICAL Occurence Date/Time: Tue Mar 4 17:48:51 CST 2003 Additional Info: D: It is the last line that I am curious about - there is nothing beyond the "D:". I can also see this error message from the Nagios host console: /usr/bin/printf: \ : invalid escape This makes sense to me, because the backslash (as in D:\) is an escape character in printf. However, is there a way that I can stop this - so I can get all of the information in the email notification? Thanks! David dlevine at seasontickets.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/2/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/2/2003 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From michael.boman at securecirt.com Wed Mar 5 03:02:36 2003 From: michael.boman at securecirt.com (Michael Boman) Date: Wed, 5 Mar 2003 10:02:36 +0800 Subject: NSCA wont accept passive checks Message-ID: <20030305100236.A9474@securecirt.com> I have a small problem here. I can't get Nagios/NSCA to accept passive service checks. (From syslog on central server) nsca[20937]: Connection from 10.101.65.7 port 16584 nsca[20937]: Host address checks out ok nsca[20937]: Handling the connection... nsca[20937]: Received invalid packet type/version from client - possibly due to client using wrong password or crypto algorithm? nsca[20937]: End of connection... Now, the thing is that I have not enabled encryption in the first place, just to be sure that this is not the problem. On the remote system side I have this in my /etc/nagios/send_nsca.cfg password=password encryption_method=0 And on the central server I have this (in /etc/nagios/nsca.cfg): server_port=5667 allowed_hosts=10.101.65.7 nsca_user=nagios nsca_group=nagios debug=1 command_file=/var/nagios/rw/nagios.cmd aggregate_writes=1 append_to_file=0 max_packet_age=10 password=password decryption_method=0 As you can see the ecryption method on both sides are 0 (no encryption) and the password are the same. Using TCPDump I find the communication not very plain text like, but I haven't read the nsca source so I don't know how the protocol should look like.. Anyway, when I attached strace/ltrace to the nsca daemon on the central server I noticed the following (ltrace output): 20937 syslog(6, "Handling the connection...") = 20937 fcntl(6, 3, 0xbffff10c, 0, 0) = -1 20937 fcntl(6, 4, 2048, 0, 0) = -1 20937 malloc(160) = 0x08054218 20937 fopen("/dev/urandom", "r") = 0x080521b8 20937 fgetc(0x080521b8) = 'K' 20937 fclose(0x080521b8) = 0 20937 srand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x2db19fd3 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x3a99f23f 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x1604c27a 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x3dba7799 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x0335c5bc 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x43de2b04 [...] 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x2559e593 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x3a45de67 20937 rand(75, 0x0804c45c, 0xbffff0b8, 0x400d9623, 0x4018e2c0) = 0x06fba7a1 20937 time(0xbffff104) = 1046828060 20937 send(6, 0xbffff110, 132, 0, 6) = -1 20937 syslog(3, "Could not send init packet to cl"...) = 20937 free(0x08054218) = 20937 close(6) = -1 Now, if nsca has been told NOT do do encryption, why is it grabbing random numbers (screen fulls) from urandom? How would I go about to continue trouble-shooting this one? Versions: == Central server == # /usr/nagios/bin/nsca --version NSCA - Nagios Service Check Acceptor Copyright (c) 2000-2003 Ethan Galstad (nagios at nagios.org) Version: 2.3 Last Modified: 01-26-2003 License: GPL Encryption Routines: AVAILABLE === Remote system === # /usr/local/nagios/bin/send_nsca NSCA Client 2.1 Copyright (c) 2000-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 06-10-2002 License: GPL Encryption Routines: AVAILABLE Both running on Linux/x86 Best regards Michael Boman -- Michael Boman Security Architect, SecureCiRT Pte Ltd http://www.securecirt.com -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available URL: From Stanley.Hopcroft at IPAustralia.Gov.AU Wed Mar 5 04:41:58 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Wed, 5 Mar 2003 14:41:58 +1100 Subject: Missing scripts? In-Reply-To: <20030304155053.56039e7c.greg@intouch.ca>; from greg@intouch.ca on Tue, Mar 04, 2003 at 03:50:53PM -0800 References: <20030304131438.3e9d99fb.greg@intouch.ca> <20030305095531.A9153@IPAustralia.Gov.AU> <20030304155053.56039e7c.greg@intouch.ca> Message-ID: <20030305144155.B9153@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your reply and say, On Tue, Mar 04, 2003 at 03:50:53PM -0800, Greg Webster wrote: > On Wed, 5 Mar 2003 09:55:35 +1100: Stanley Hopcroft wrote: > > that it looks to me as if configure failed to find the gd libraries used > > to build the graphics for the CGI programs. > > > > I suggest, > > > > 1 Ensure that libgd.so (and or .a) is on your system > > # locate libjpeg.so > /usr/lib/libjpeg.so.62 > /usr/lib/libjpeg.so.62.0.0 > # locate libgd.so > /usr/lib/libgd.so.1 > /usr/lib/libgd.so.1.8.4 > /usr/lib/libgd.so.2 > /usr/lib/libgd.so.2.0.1 > # locate libpng.so > /usr/lib/libpng.so.2 > /usr/lib/libpng.so.2.1.0.12 > /usr/lib/libpng.so.3 > /usr/lib/libpng.so.3.1.2.1 > > I've ran the following with the same result: > ./configure --with-gd-lib=/usr/lib --with-gd-inc=/usr/include > (not sure exactly what it's looking for in --with-gd-inc) > gd headers (.h files). If gd.h is _not_ in /usr/include this is futile. I would guess that this is an unlikely place to find it. > > What OS are you running. FreeBSD also fails to find gd without configure > > options. > > Debian 'testing' release. > > Here is what it gives me for errors: > checking for gdImagePng in -lgd (order 1)... no > checking for gdImagePng in -lgd (order 2)... no > checking for gdImagePng in -lgd (order 3)... no > you can find out exactly what's going on by reading configure (/gd might be a good place to start). What configure is doing is trying to locate your headers and libraries by compiling stuff like #include main() { /* some gd lib call */ } with gcc -I -L -l gd .. yada test.c when it fails, it reports what you see. In other words, it can't find something. Since you have eliminated the libraries, it must be headers. On this FreeBSD system gd.h and friends are in /usr/local/include/gd I use --with-gd-inc=/usr/local/include/gd --with-gd-lib=/usr/local/lib as arguments to configure. Try and locate gd.h (with find) and then feed the path to --with-gd-inc > *** GD, PNG, and/or JPEG libraries could not be located... ********* > > Boutell's GD library is required to compile the statusmap, trends > and histogram CGIs. Get it from http://www.boutell.com/gd/, compile > it, and use the --with-gd-lib and --with-gd-inc arguments to specify > the locations of the GD library and include files. > > NOTE: In addition to the gd-devel library, you'll also need to make > sure you have the png-devel and jpeg-devel libraries installed > on your system. > > ...I wish this gave more concise errors...if it's not finding one specific library, then I wanna know that! > It wants to _attract_ your attention and _tell_ you that it's blown up and things will not work as expected. Unfortunately, no one wants to hear bad news so this _and even louder versions_ is usually ignored. 'Welcome to my world' (as a famous man once said [Burton Strauss III]). > Thanks! > > Greg FWIW, you need JPEG support also. HTH, Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 5 06:14:58 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 05 Mar 2003 00:14:58 -0500 (EST) Subject: check_mrttraf -f argument probs In-Reply-To: <1046707786.7005.88.camel@phobos> References: <1046707786.7005.88.camel@phobos> Message-ID: On 3 Mar 2003, Geert Vanderkelen wrote: > Hi, > > check_mrtgtraf gives me headaches. I'm using the one of the > netsaint-plugin package. Nagios plugin there doesn't really go.. > > > # check_mrtgtraf -f /path/to/mrtg/file/192.168.1.3_1.log -e 30 -A AVG \ > -w 307200,51200 -c 409600,614400 > > Works great on command line. > > Running this same with parameters I get always 'Unable to open MRTG log > file'. I've changed to the code and outputting the file when it says > this message.. Permissions are ok since the webuser can even open this > file. > Putting this file into temp.. like /tmp/dlink.log gives me a '(No > Output)' Information but status OK. > > Totally lost here.. :( > > thanks, > > Geert > > Is the webuser the same as the nagios user? and is the /path/to/file accessible as well? -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 5 06:20:06 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 05 Mar 2003 00:20:06 -0500 (EST) Subject: check_nt_disk dont work In-Reply-To: References: Message-ID: On Tue, 4 Mar 2003, le jert wrote: > now, I've compiled the pluggin, put it in the directory and restarted nagios > - the client have its NSClient pluggin running... but it still don't work . > The error message is now 'connection refused by host' ... It means that > everything is well configured, no ? > > Did you set the password on for NSClient on the windows machine ? Does the password match the check_nt command? -sg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 5 06:23:27 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 05 Mar 2003 00:23:27 -0500 (EST) Subject: check_disk troubles In-Reply-To: <133763879.20030304181805@mail.ru> References: <133763879.20030304181805@mail.ru> Message-ID: On Tue, 4 Mar 2003, maxxik wrote: > Hi again ... > > i have a LVM volume (/dev/main/home-smb-profiles) > > when i try to check it thru check_disk plugin : > > check_command defined in services.cfg : > > check_command check_local_disk!20%!10%!/dev/main/home-smb-profiles try putting the ARG3 in double quotes > > (check_local_disk is defined as > > define command{ > command_name check_local_disk > command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$ > } > > ) > > there was a trouble : nagios cant check it > nagios write : > Disk "/dev/main/home-smb-profiles" not mounted or nonexistant ... > > but check near ( check_command > check_local_disk!20%!10%!/dev/main/home-smb) finished succesfully > .... > > when i try to run check_disk manually > (check_disk -w 20% -c 10% /dev/main/home-smb-profiles) > > all normally executing ... > > any ideas ? > > > wbr,maxx > -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bliwanag at yahoo.com Wed Mar 5 06:54:00 2003 From: bliwanag at yahoo.com (bernie liwanag) Date: Tue, 4 Mar 2003 21:54:00 -0800 (PST) Subject: sms alert using gnokii Message-ID: <20030305055400.57599.qmail@web40603.mail.yahoo.com> Hi to all! How can I make gnokii works on my nagios.I have my gnokii running using a command prompt. I can send and received a text message using the command : # /usr/local/sbin/gnokii --sendsms - Here is my sample conifiguration in contacts.cfg file # 'nagios' contact definition define contact{ contact_name nagios alias Nagios Admin service_notification_period 24x7 host_notification_period 24x7 service_notification_options w,u,c,r host_notification_options d,u,r service_notification_commands notify-by-email,host-notify-by-sms host_notification_commands host-notify-by-email,host-notify-by-sms email root at mallinux.test.com.ph } - Here is my sample configuration of misccommands.cfg # 'host-notify-by-sms' command definition define command command_name host-notify-by-sms command_line /usr/bin/printf "Host '$HOSTALIAS$' is $ $HOSTSTATE$\nInfo: $OUTPUT$\nTime: $DATETIME$" | /usr/local/sbin/gnokii --sendsms 09201234567 } # 'notify-by-sms' command definition define command{ command_name notify-by-sms command_line /usr/bin/printf "Service: $SERVICEDESC$\nHost: $HOSTNAME$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nInfo: $OUTPUT$\nDate: $DATETI ME$" | /usr/local/sbin/gnokii --sendsms 09201234567 } I have included the .gnokiirc config file in both /root/ directory and /home/nagios/ directory Can someone tells me what wrong with my config? Thanks a lot to all! Bernie __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Wed Mar 5 10:10:27 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Wed, 5 Mar 2003 20:10:27 +1100 Subject: epager not working In-Reply-To: <000b01c2e279$cada9cc0$fa01a8c0@reesa>; from val@nycity.com on Tue, Mar 04, 2003 at 01:13:44PM -0500 References: <000b01c2e279$cada9cc0$fa01a8c0@reesa> Message-ID: <20030305201022.A342@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Tue, Mar 04, 2003 at 01:13:44PM -0500, Val Vechnyak wrote: > Hello, > > > > I have notifications by pager setup in contacts file. One epager email is > name at domain.co.zn and another one is name at domain.com. > > > > name at domain.com works while the other one does not. I am able to send email > to that account in New Zealand from my email client, but not from nagios. I > was wondering if $CONTACTPAGER$ does not see all the "co.zn"? > if you mean the length limit of the macro is less than the maximum allowed and therefore your contact address gets truncated, probably not. eg tsitc> perl -e 'print length("name\@domain.co.zn"), "\n"' 17 tsitc> This is well less than one contact email my Nagios has of 33 characters. I suggest 1 Check your mail log for any record of the attempt to send 2 If there is no record in the mail log, then Nag is failing to nag you for some reason, otherwise it may report an error. You can submit passive service check results to get as many emails as you need (OK -> CRITICAL ad infinitum), or use the check_dummy plugin. 2.1 check that after replacing the macros in the notify command by values that this command runs from the CLI as the Nag user Obviously this is poor advice if Nag is sending you _any_ email, as once I re-read your report, I see you are. 2.2 Temporarily replace, if possible, the binary that Nag is using to send you mail by one that logs what it does. Maybe cat >> /tmp/some_file.log 2.3 consider configuring and building a debugging Nag to get some feedback on what happens when Nag tries to notify you. > > > Thank you for your help. > > > > VV > Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stefan.Hanssen at baerum.kommune.no Wed Mar 5 11:27:23 2003 From: Stefan.Hanssen at baerum.kommune.no (Stefan Hanssen) Date: Wed, 05 Mar 2003 11:27:23 +0100 Subject: I am installing Nagios on a RH 8.0 box, and during the compilation of the plugins (1.3-beta1) i get Message-ID: I am installing Nagios on a RH 8.0 box, and during the compilation of the plugins (1.3-beta1) i get the following errors: [root at monitor01 nagiosplug-1.3-beta1]# autoconf [root at monitor01 nagiosplug-1.3-beta1]# autoheader WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot' WARNING: and `config.h.top', to define templates for `config.h.in' WARNING: is deprecated and discouraged. WARNING: Using the third argument of `AC_DEFINE' and WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without WARNING: `acconfig.h': WARNING: AC_DEFINE([NEED_MAIN], 1, WARNING: [Define if a function `main' is needed.]) WARNING: More sophisticated templates can also be produced, see the WARNING: documentation. autoheader: `plugins/config.h.in' is updated [root at monitor01 nagiosplug-1.3-beta1]# automake automake: configure.in: `AM_INIT_AUTOMAKE' must be used automake: your implementation of AM_INIT_AUTOMAKE comes from an automake: old Automake version. You should recreate aclocal.m4 automake: with aclocal and run automake again. plugins/Makefile.am: required file `./depcomp' not found /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL /usr/share/automake-1.6/am/lang-compile.am: AMDEP does not appear in AM_CONDITIONAL [root at monitor01 nagiosplug-1.3-beta1]# Anyone have an idea of what is wrong ? PS. Sorry if this mail has been sent twice. I got an error the first time, so i sent it again. __________________________________________ Vennlig hilsen Stefan Hanssen Datakontoret, B?rum Kommune e-post stefan.hanssen at baerum.kommune.no ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Wed Mar 5 11:53:20 2003 From: lejert at hotmail.com (le jert) Date: Wed, 05 Mar 2003 11:53:20 +0100 Subject: check_nt_disk dont work Message-ID: I was running the pluggin on a wrong port and there where a password problem I thank you all for your help ! >From: "Pascal Miquet" >To: le jert >Subject: Re: [Nagios-users] check_nt_disk dont work >Date: 05 Mar 2003 09:06:07 +0100 > >The windows client is a PC with NT ? >You should check the client from your Nagios server manually, to check >what is the result of the command. This is may be a protection from a >Firewall ?? > > >Le mar 04/03/2003 ? 18:10, le jert a ?crit : > > > > the problem is that it seems to work. I mean we downloaded the NSClient >and > > installed it. The machine says it's running. Some one suggest me to >check > > the port entry... > > > > > > >From: "Pascal Miquet" > > >To: le jert > > >Subject: Re: [Nagios-users] check_nt_disk dont work > > >Date: 04 Mar 2003 18:04:58 +0100 > > > > > >Le mar 04/03/2003 ? 17:25, le jert a ?crit : > > > > > > > > now, I've compiled the pluggin, put it in the directory and >restarted > > >nagios > > > > - the client have its NSClient pluggin running... but it still don't > > >work . > > > > The error message is now 'connection refused by host' ... It means >that > > > > everything is well configured, no ? > > > > > > > > > > >This mean that the remote host does not allow the connection. > > >So I suggest you to check if the NSClient is running on your NT Box. > > >Regards > > >Pascal Miquet > > > > > > _________________________________________________________________ > > Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail > > >-- >Pascal MiQUET >Responsable Developpement >T?l?phone: +33 1 40 89 98 98 >Cellulaire: +33 6 60 58 55 77 _________________________________________________________________ Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Wed Mar 5 12:04:54 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Wed, 5 Mar 2003 12:04:54 +0100 (CET) Subject: Questions about Nsca and check_none command Message-ID: <20030305110454.30092.qmail@web10903.mail.yahoo.com> Hello, When i try to run nsca daemon : "nsca -c /usr/local/nagios/etc/nsca.cfg --single" on my nagios server, i got no nsca process listed when I run a "ps aux | grep nsca" command. How can i do to have the nsca daemon launched ? I try the SNMP traps Nagios documentation example and i don't understand the "check_command check_none" directive... What does it mean ? Do I have to define a check_none command ? If so how should I define it ? Thanks, Steve --------------------------------- Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Testez le nouveau Yahoo! Mail -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve.freegard at lbsltd.co.uk Wed Mar 5 12:48:42 2003 From: steve.freegard at lbsltd.co.uk (Steve Freegard) Date: Wed, 5 Mar 2003 11:48:42 -0000 Subject: SMB Pop-up Message-ID: <67D9E7698329D411936E00508B6590B90279328D@neelix.lbsltd.co.uk> Hi Dave, What you want is pretty easy to do - here are a few instructions for you to get you started. You don't mention what OS you are using - I'm on RedHat 7.3, so you'll have to change this depending on what you use. As a minimun - you'll need the 'samba-client' rpm package installed which contains the 'smbclient' binary which you need to send the popups. The smbclient utility will currently only allow you to send your popup to machine names and not usernames - however if you want to do this you can head over to www.samba-tng.org and grab tng from CVS and compile it - and use the smbclient program from this - and you'll be able to send the popups by username which is quite handy. Firstly - you need to set-up your Nagios contacts - I use the 'pager' section for the machine/user that I want the popup to go to - e.g: define contact{ contact_name smf alias Steve Freegard host_notification_period 24x7 service_notification_period 24x7 host_notification_options d,r service_notification_options w,c,r host_notification_commands host-notify-by-winpopup service_notification_commands notify-by-winpopup email e-mail at address.here pager smf <-- NT Machine Name/NT Username } Next - set-up the notification commands: define command{ command_name notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nService: $SERVICEDESC$\nState: $SERVICESTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } define command{ command_name host-notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $HOSTSTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } Obviously - with these you need to change the path of the smbclient binary - I'm using a wrapper script as I used the tng version of smbclient, but as I use the 'main' samba for filesharing on this box - I didn't want tng to get in the way, so I copied the required libs to a smbclient directory, and use a wrapper script to call it. If you want to do the same - you'll need the following files from a compiled tng: libnmb.so.0 libsamba.so.0 libsmb.so.0 smbclient The wrapper script called winpopup.sh - all this does it to use the libs in the current directory, and set the username to NAGIOS so the popup shows as coming from this user - it looks like: #!/bin/bash if [ -z $1 ]; then exit; fi cd `dirname $0` export LD_LIBRARY_PATH=. export USER=NAGIOS ./smbclient -M $1 2>&1 > /dev/null exit 0 Hope this helps. Regards, Steve. -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: 04 March 2003 21:20 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] SMB Pop-up I'm trying to make an alternate notification option. My linux machine is a member of my NT domain here, and I'd like a notification type to be notify-by-messenger...using the messenger service. I'm sure someone has already done this, except I'm wondering hot to make the macros for it, such as $CONTACTHOST$ like the $CONTACTEMAIL$, there would be a few hosts I'd need to send it to, and I'd like it to be so I can set it in the contacts.cfg file like an email address and have it use that. any help appreciated. -Dave T. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.lbsltd.co.uk ********************************************************************** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Wed Mar 5 12:51:05 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 05 Mar 2003 06:51:05 -0500 Subject: I am installing Nagios on a RH 8.0 box, and during the compilation of the plugins (1.3-beta1) i get In-Reply-To: References: Message-ID: <1046865065.1072.3.camel@miles.debisschop.net> On Wed, 2003-03-05 at 05:27, Stefan Hanssen wrote: > I am installing Nagios on a RH 8.0 box, and during the compilation of the plugins (1.3-beta1) i get the following errors: > > [root at monitor01 nagiosplug-1.3-beta1]# autoconf > [root at monitor01 nagiosplug-1.3-beta1]# autoheader > WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot' > WARNING: and `config.h.top', to define templates for `config.h.in' > WARNING: is deprecated and discouraged. > > WARNING: Using the third argument of `AC_DEFINE' and > WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without > WARNING: `acconfig.h': > > WARNING: AC_DEFINE([NEED_MAIN], 1, > WARNING: [Define if a function `main' is needed.]) > > WARNING: More sophisticated templates can also be produced, see the > WARNING: documentation. > autoheader: `plugins/config.h.in' is updated > [root at monitor01 nagiosplug-1.3-beta1]# automake > automake: configure.in: `AM_INIT_AUTOMAKE' must be used > automake: your implementation of AM_INIT_AUTOMAKE comes from an > automake: old Automake version. You should recreate aclocal.m4 > automake: with aclocal and run automake again. > plugins/Makefile.am: required file `./depcomp' not found > /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL > /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL > /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL > /usr/share/automake-1.6/am/lang-compile.am: AMDEP does not appear in AM_CONDITIONAL > [root at monitor01 nagiosplug-1.3-beta1]# > > > Anyone have an idea of what is wrong ? Did you run aclocal? Eastiest thing to do is just run ./tools/setup You will still get some of those warnings because you are using a newer automake than we are currently developing with. But it's not a problem. You might need 'automake --add-missing' if you still get the warning about depcomp -- Karl ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DTerrell at Delphi-Tech.com Wed Mar 5 14:45:20 2003 From: DTerrell at Delphi-Tech.com (DTerrell at Delphi-Tech.com) Date: Wed, 5 Mar 2003 08:45:20 -0500 Subject: SMB Pop-up Message-ID: <880E60DA7286AB4CBEECB01B169A63BD02867664@NJ-2K-Email1.delphi-tech.com> WOW, what a thorough response. Although, amazingly this didn't quite answer my question, it did give me an idea of how to go about what I want in the end. You see, I really wanted a third variable similar to email/pager, something like user/host. That way in one contact I'd be able to specify three points of contact instead of two, the third being their host/username (very neat package being able to pop-up by username, btw, thanks so much!). However, instead of going this road, which seems bumpy, I'll simply make more then one entry for contacts...one having their pager, the other having hosts/usernames. It actually may work out better this way, at least similar, instead of specifying that I want contact via this-or-that, I can simply specify a different contactgroup of which there is smb pop-ups! Excellent, thanks so much! -Dave -----Original Message----- From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] Sent: Wednesday, March 05, 2003 6:49 AM To: 'DTerrell at Delphi-Tech.com'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Dave, What you want is pretty easy to do - here are a few instructions for you to get you started. You don't mention what OS you are using - I'm on RedHat 7.3, so you'll have to change this depending on what you use. As a minimun - you'll need the 'samba-client' rpm package installed which contains the 'smbclient' binary which you need to send the popups. The smbclient utility will currently only allow you to send your popup to machine names and not usernames - however if you want to do this you can head over to www.samba-tng.org and grab tng from CVS and compile it - and use the smbclient program from this - and you'll be able to send the popups by username which is quite handy. Firstly - you need to set-up your Nagios contacts - I use the 'pager' section for the machine/user that I want the popup to go to - e.g: define contact{ contact_name smf alias Steve Freegard host_notification_period 24x7 service_notification_period 24x7 host_notification_options d,r service_notification_options w,c,r host_notification_commands host-notify-by-winpopup service_notification_commands notify-by-winpopup email e-mail at address.here pager smf <-- NT Machine Name/NT Username } Next - set-up the notification commands: define command{ command_name notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nService: $SERVICEDESC$\nState: $SERVICESTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } define command{ command_name host-notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $HOSTSTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } Obviously - with these you need to change the path of the smbclient binary - I'm using a wrapper script as I used the tng version of smbclient, but as I use the 'main' samba for filesharing on this box - I didn't want tng to get in the way, so I copied the required libs to a smbclient directory, and use a wrapper script to call it. If you want to do the same - you'll need the following files from a compiled tng: libnmb.so.0 libsamba.so.0 libsmb.so.0 smbclient The wrapper script called winpopup.sh - all this does it to use the libs in the current directory, and set the username to NAGIOS so the popup shows as coming from this user - it looks like: #!/bin/bash if [ -z $1 ]; then exit; fi cd `dirname $0` export LD_LIBRARY_PATH=. export USER=NAGIOS ./smbclient -M $1 2>&1 > /dev/null exit 0 Hope this helps. Regards, Steve. -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: 04 March 2003 21:20 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] SMB Pop-up I'm trying to make an alternate notification option. My linux machine is a member of my NT domain here, and I'd like a notification type to be notify-by-messenger...using the messenger service. I'm sure someone has already done this, except I'm wondering hot to make the macros for it, such as $CONTACTHOST$ like the $CONTACTEMAIL$, there would be a few hosts I'd need to send it to, and I'd like it to be so I can set it in the contacts.cfg file like an email address and have it use that. any help appreciated. -Dave T. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.lbsltd.co.uk ********************************************************************** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Joerg.Krueger at alcatel.de Wed Mar 5 15:37:53 2003 From: Joerg.Krueger at alcatel.de (Joerg.Krueger at alcatel.de) Date: Wed, 5 Mar 2003 15:37:53 +0100 Subject: force notification ? Message-ID: Is it possible to force a notification, e.g. by an external command, even if the conditions for a notification are not met ? I would like to generate a notification everytime I find a pattern in a logfile containing a descriptive text regarding the log message. My idea was to define a service which accepts passive check results. The logfile scanner submits the results as passive check results locally by an external command or remotely by nsca. This works in general, but only the first event leads to a notification. All subsequent events will not be notified since no status transition took place. You could fake this mechanism by sending an OK check result after each WARNING or CRITICAL, but isn't there a smarter way ? Mit freundlichen Gruessen/Best Regards Joerg Krueger ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From steve.freegard at lbsltd.co.uk Wed Mar 5 15:52:08 2003 From: steve.freegard at lbsltd.co.uk (Steve Freegard) Date: Wed, 5 Mar 2003 14:52:08 -0000 Subject: SMB Pop-up Message-ID: <67D9E7698329D411936E00508B6590B90279328E@neelix.lbsltd.co.uk> Dave, Sorry - it looks like I didn't read your message properly before replying ;-)) The additional variables question has been asked quite a few times before - the general consensus was that you could put multiple entries entries into the e-mail or pager variables as no checking is done on the Nagios end, and that you could delimit them and use a notification script that strips the values out and does the different notifications to both. I do something similar to what you are proposing and use two contacts - one for working hours, and one for out-of-hours support with the working hours receiving the winpopup's, and the out-of-hours getting a SMS using sendpage and this works pretty well for me. Glad I could be of assistance with the other stuff tho.. Regards, Steve -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: 05 March 2003 13:45 To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SMB Pop-up WOW, what a thorough response. Although, amazingly this didn't quite answer my question, it did give me an idea of how to go about what I want in the end. You see, I really wanted a third variable similar to email/pager, something like user/host. That way in one contact I'd be able to specify three points of contact instead of two, the third being their host/username (very neat package being able to pop-up by username, btw, thanks so much!). However, instead of going this road, which seems bumpy, I'll simply make more then one entry for contacts...one having their pager, the other having hosts/usernames. It actually may work out better this way, at least similar, instead of specifying that I want contact via this-or-that, I can simply specify a different contactgroup of which there is smb pop-ups! Excellent, thanks so much! -Dave -----Original Message----- From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] Sent: Wednesday, March 05, 2003 6:49 AM To: 'DTerrell at Delphi-Tech.com'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Dave, What you want is pretty easy to do - here are a few instructions for you to get you started. You don't mention what OS you are using - I'm on RedHat 7.3, so you'll have to change this depending on what you use. As a minimun - you'll need the 'samba-client' rpm package installed which contains the 'smbclient' binary which you need to send the popups. The smbclient utility will currently only allow you to send your popup to machine names and not usernames - however if you want to do this you can head over to www.samba-tng.org and grab tng from CVS and compile it - and use the smbclient program from this - and you'll be able to send the popups by username which is quite handy. Firstly - you need to set-up your Nagios contacts - I use the 'pager' section for the machine/user that I want the popup to go to - e.g: define contact{ contact_name smf alias Steve Freegard host_notification_period 24x7 service_notification_period 24x7 host_notification_options d,r service_notification_options w,c,r host_notification_commands host-notify-by-winpopup service_notification_commands notify-by-winpopup email e-mail at address.here pager smf <-- NT Machine Name/NT Username } Next - set-up the notification commands: define command{ command_name notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nService: $SERVICEDESC$\nState: $SERVICESTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } define command{ command_name host-notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $HOSTSTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } Obviously - with these you need to change the path of the smbclient binary - I'm using a wrapper script as I used the tng version of smbclient, but as I use the 'main' samba for filesharing on this box - I didn't want tng to get in the way, so I copied the required libs to a smbclient directory, and use a wrapper script to call it. If you want to do the same - you'll need the following files from a compiled tng: libnmb.so.0 libsamba.so.0 libsmb.so.0 smbclient The wrapper script called winpopup.sh - all this does it to use the libs in the current directory, and set the username to NAGIOS so the popup shows as coming from this user - it looks like: #!/bin/bash if [ -z $1 ]; then exit; fi cd `dirname $0` export LD_LIBRARY_PATH=. export USER=NAGIOS ./smbclient -M $1 2>&1 > /dev/null exit 0 Hope this helps. Regards, Steve. -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: 04 March 2003 21:20 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] SMB Pop-up I'm trying to make an alternate notification option. My linux machine is a member of my NT domain here, and I'd like a notification type to be notify-by-messenger...using the messenger service. I'm sure someone has already done this, except I'm wondering hot to make the macros for it, such as $CONTACTHOST$ like the $CONTACTEMAIL$, there would be a few hosts I'd need to send it to, and I'd like it to be so I can set it in the contacts.cfg file like an email address and have it use that. any help appreciated. -Dave T. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.lbsltd.co.uk ********************************************************************** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From avh at inbodan.dk Wed Mar 5 16:01:48 2003 From: avh at inbodan.dk (Allan Hansen, INBODAN) Date: Wed, 5 Mar 2003 16:01:48 +0100 Subject: SV: sms alert using gnokii Message-ID: <03630F4AC119D311B0DF0008C716506F016AC337@ARHIN02> As you do not describe what errors you get, it is a bit difficult to provide an exact answer. The advise I got when setting this up about 6 months ago, was to use some form of gateway between Nagios and Gnokii. Gnokii needs some kind of queing mechanism, otherwise it might choke when sending multiple notifications. I am using Alamin (www.alamin.org). It was somewhat difficult to set up, but runs fine. I can't find my notes about the installation, but I remember this has been on the list in the past. You should also check the FAQ at: http://www.nagios.org/faqs/viewfaq.php?faq_id=65&expand=false&showdesc=true /Allan -----Oprindelig meddelelse----- Fra: bernie liwanag [mailto:bliwanag at yahoo.com] Sendt: 5. marts 2003 06:54 Til: nagios-users at lists.sourceforge.net Emne: [Nagios-users] sms alert using gnokii Hi to all! How can I make gnokii works on my nagios.I have my gnokii running using a command prompt. I can send and received a text message using the command : # /usr/local/sbin/gnokii --sendsms - Here is my sample conifiguration in contacts.cfg file # 'nagios' contact definition define contact{ contact_name nagios alias Nagios Admin service_notification_period 24x7 host_notification_period 24x7 service_notification_options w,u,c,r host_notification_options d,u,r service_notification_commands notify-by-email,host-notify-by-sms host_notification_commands host-notify-by-email,host-notify-by-sms email root at mallinux.test.com.ph } - Here is my sample configuration of misccommands.cfg # 'host-notify-by-sms' command definition define command command_name host-notify-by-sms command_line /usr/bin/printf "Host '$HOSTALIAS$' is $ $HOSTSTATE$\nInfo: $OUTPUT$\nTime: $DATETIME$" | /usr/local/sbin/gnokii --sendsms 09201234567 } # 'notify-by-sms' command definition define command{ command_name notify-by-sms command_line /usr/bin/printf "Service: $SERVICEDESC$\nHost: $HOSTNAME$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\nInfo: $OUTPUT$\nDate: $DATETI ME$" | /usr/local/sbin/gnokii --sendsms 09201234567 } I have included the .gnokiirc config file in both /root/ directory and /home/nagios/ directory Can someone tells me what wrong with my config? Thanks a lot to all! Bernie __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From davidgu at yahoo.com Wed Mar 5 16:03:54 2003 From: davidgu at yahoo.com (=?iso-8859-1?q?David=20Gurr?=) Date: Wed, 5 Mar 2003 15:03:54 +0000 (GMT) Subject: Can't compile plugins - undefined reference to `getloadavg' Message-ID: <20030305150354.67701.qmail@web41215.mail.yahoo.com> I'm trying to install the plugins on an old Caldera OpenLinux 2.3 system, with a view to also installing nrpe. I've unpacked the nagios-plugins-1.3.0-beta3 tarball, and successfully run configure. When I do "make all", it fails on building check_load with the following error: gcc -g -O2 -L. -o check_load check_load.o utils.o ../lib/libnagiosplug.a popen.o -lutil check_load.o: In function `main': /tmp/nagios-plugins-1.3.0-beta3/plugins/check_load.c:80: undefined reference to `getloadavg' make[1]: *** [check_load] Error 1 Earlier, the libnagiosplug.a library seemed to get built OK: gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins -I../plugins -I../plugins -I../plugins -I../plugins -I. -g -O2 -c getopt.c gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins -I../plugins -I../plugins -I../plugins -I../plugins -I. -g -O2 -c getopt1.c gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins -I../plugins -I../plugins -I../plugins -I../plugins -I. -g -O2 -c getloadavg.c rm -f libnagiosplug.a ar cru libnagiosplug.a getopt.o getopt1.o getloadavg.o ranlib libnagiosplug.a Any suggestions? Thx __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Wed Mar 5 16:10:27 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Wed, 5 Mar 2003 12:10:27 -0300 Subject: RES: Notification flood after host down In-Reply-To: <20030228171407.GA7654@roadrunner.ichilton.net> References: <20030228171407.GA7654@roadrunner.ichilton.net> Message-ID: Ian e Jim: I'm also having this problem too (not receiving CRITICAL service alerts when the host goes down, but when the hosts comes back, receiving RECOVERY service alerts for that host), and i am sure there is no second Nagios instance running... Could you point me where i am wrong? Any help is appreciated. Here my configs.... HOSTS.CFG ****************** define host{ name generic-host-giozza notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 register 0 max_check_attempts 10 notification_interval 0 notification_period 24x7 notification_options d,u,r } define host{ use generic-host-giozza host_name giozza-adslbrt-pas-01 parents paelxmg1 alias Giozza Pelotas address giozza-adslbrt-pas-01 check_command check-host-alive-ssh } SERVICES.CFG *********************** define service{ name generic-service-giozza active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 is_volatile 0 check_period 24x7 max_check_attempts 10 normal_check_interval 5 retry_check_interval 1 notification_interval 0 notification_options c,r contact_groups opnet-admins,callcenter,giozza-admins notification_period 24x7 register 0 } define service{ use generic-service-giozza host_name giozza-adslbrt-pas-01 service_description Disk1 check_command check_nrpe_disk1 } define service{ use generic-service-giozza host_name giozza-adslbrt-pas-01 service_description Disk2 check_command check_nrpe_disk2 } DEPENDECIES.CFG **************************** #Giozza PAE-01 define servicedependency{ host_name giozza-virtua-pae-01 service_description SSHD dependent_host_name giozza-virtua-pae-01 dependent_service_description Disk1 execution_failure_criteria u,c notification_failure_criteria u,c } define servicedependency{ host_name giozza-virtua-pae-01 service_description SSHD dependent_host_name giozza-virtua-pae-01 dependent_service_description Disk2 execution_failure_criteria u,c notification_failure_criteria u,c } -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Ian Chilton Enviada em: sexta-feira, 28 de fevereiro de 2003 14:14 Para: Carroll, Jim P [Contractor] Cc: nagios-users at lists.sourceforge.net Assunto: Re: [Nagios-users] Notification flood after host down Hello, > Could you provide a couple snippets from your config files, namely one > host definition, and one service definition for that host? ok.. Host: define host{ use generic-host host_name somehostname alias Desc address 123.123.123.123 parents mygateway check_command check-host-alive max_check_attempts 5 notification_interval 240 notification_period 24x7 notification_options d,r Service: define service{ use generic-service host_name somehostname service_description SMTP is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups somecontactgroup notification_interval 240 notification_period 24x7 notification_options w,u,c,r check_command check_smtp } Hostgroup: define hostgroup{ hostgroup_name somehostgroup alias Name contact_groups somecontactgroup members somehostname } Contact Group: define contactgroup{ contactgroup_name somecontactgroup alias Name members nagios,someone } Thanks! --ian ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.458 / Virus Database: 257 - Release Date: 24/2/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/2/2003 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mailinglist at ichilton.co.uk Wed Mar 5 16:13:23 2003 From: mailinglist at ichilton.co.uk (Ian Chilton) Date: Wed, 5 Mar 2003 15:13:23 +0000 Subject: RES: Notification flood after host down In-Reply-To: References: <20030228171407.GA7654@roadrunner.ichilton.net> Message-ID: <20030305151323.GB31215@roadrunner.ichilton.net> Hello, > I'm also having this problem too (not receiving CRITICAL service alerts when > the host goes down, but when the hosts comes back, receiving RECOVERY > service alerts for that host), and i am sure there is no second Nagios > instance running... Could you point me where i am wrong? No other ideas, sorry. --ian ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Wed Mar 5 16:23:14 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Wed, 5 Mar 2003 16:23:14 +0100 (CET) Subject: Questions about Nsca and check_none command In-Reply-To: <20030305110454.30092.qmail@web10903.mail.yahoo.com> References: <20030305110454.30092.qmail@web10903.mail.yahoo.com> Message-ID: <20030305152314.46288.qmail@web10908.mail.yahoo.com> I have successfully made the nsca daemon running, but I'm still being confused with the check_none command in the SNMP trap example... How can I tell to Nagios that my passive service is a SNMP trap handled by the snmptrapd and reported to Nagios via Nsca ? Steve Steve Dussaux wrote: Hello, When i try to run nsca daemon : "nsca -c /usr/local/nagios/etc/nsca.cfg --single" on my nagios server, i got no nsca process listed when I run a "ps aux | grep nsca" command. How can i do to have the nsca daemon launched ? I try the SNMP traps Nagios documentation example and i don't understand the "check_command check_none" directive... What does it mean ? Do I have to define a check_none command ? If so how should I define it ? Thanks, Steve --------------------------------- Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Testez le nouveau Yahoo! Mail --------------------------------- Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Testez le nouveau Yahoo! Mail -------------- next part -------------- An HTML attachment was scrubbed... URL: From DTerrell at Delphi-Tech.com Wed Mar 5 16:14:43 2003 From: DTerrell at Delphi-Tech.com (DTerrell at Delphi-Tech.com) Date: Wed, 5 Mar 2003 10:14:43 -0500 Subject: SMB Pop-up Message-ID: <880E60DA7286AB4CBEECB01B169A63BD0286766C@NJ-2K-Email1.delphi-tech.com> On second thought, I've figured a way around this. I'm simply using domain login names as the contact name, and their full name as the alias. In the notify-by-messenger commands I'll simply tell it to send to $CONTACTNAME$ and it'll send out properly! I can avoid duplicate contacts/groups. Excellent! -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: Wednesday, March 05, 2003 8:45 AM To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SMB Pop-up WOW, what a thorough response. Although, amazingly this didn't quite answer my question, it did give me an idea of how to go about what I want in the end. You see, I really wanted a third variable similar to email/pager, something like user/host. That way in one contact I'd be able to specify three points of contact instead of two, the third being their host/username (very neat package being able to pop-up by username, btw, thanks so much!). However, instead of going this road, which seems bumpy, I'll simply make more then one entry for contacts...one having their pager, the other having hosts/usernames. It actually may work out better this way, at least similar, instead of specifying that I want contact via this-or-that, I can simply specify a different contactgroup of which there is smb pop-ups! Excellent, thanks so much! -Dave -----Original Message----- From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] Sent: Wednesday, March 05, 2003 6:49 AM To: 'DTerrell at Delphi-Tech.com'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Dave, What you want is pretty easy to do - here are a few instructions for you to get you started. You don't mention what OS you are using - I'm on RedHat 7.3, so you'll have to change this depending on what you use. As a minimun - you'll need the 'samba-client' rpm package installed which contains the 'smbclient' binary which you need to send the popups. The smbclient utility will currently only allow you to send your popup to machine names and not usernames - however if you want to do this you can head over to www.samba-tng.org and grab tng from CVS and compile it - and use the smbclient program from this - and you'll be able to send the popups by username which is quite handy. Firstly - you need to set-up your Nagios contacts - I use the 'pager' section for the machine/user that I want the popup to go to - e.g: define contact{ contact_name smf alias Steve Freegard host_notification_period 24x7 service_notification_period 24x7 host_notification_options d,r service_notification_options w,c,r host_notification_commands host-notify-by-winpopup service_notification_commands notify-by-winpopup email e-mail at address.here pager smf <-- NT Machine Name/NT Username } Next - set-up the notification commands: define command{ command_name notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nService: $SERVICEDESC$\nState: $SERVICESTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } define command{ command_name host-notify-by-winpopup command_line /bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nHost: $HOSTNAME$\nHost Description: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $HOSTSTATE$\n\nAdditional Information:\n$OUTPUT$' | /usr/local/nagios/libexec/smbclient/winpopup.sh $CONTACTPAGER$ } Obviously - with these you need to change the path of the smbclient binary - I'm using a wrapper script as I used the tng version of smbclient, but as I use the 'main' samba for filesharing on this box - I didn't want tng to get in the way, so I copied the required libs to a smbclient directory, and use a wrapper script to call it. If you want to do the same - you'll need the following files from a compiled tng: libnmb.so.0 libsamba.so.0 libsmb.so.0 smbclient The wrapper script called winpopup.sh - all this does it to use the libs in the current directory, and set the username to NAGIOS so the popup shows as coming from this user - it looks like: #!/bin/bash if [ -z $1 ]; then exit; fi cd `dirname $0` export LD_LIBRARY_PATH=. export USER=NAGIOS ./smbclient -M $1 2>&1 > /dev/null exit 0 Hope this helps. Regards, Steve. -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: 04 March 2003 21:20 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] SMB Pop-up I'm trying to make an alternate notification option. My linux machine is a member of my NT domain here, and I'd like a notification type to be notify-by-messenger...using the messenger service. I'm sure someone has already done this, except I'm wondering hot to make the macros for it, such as $CONTACTHOST$ like the $CONTACTEMAIL$, there would be a few hosts I'd need to send it to, and I'd like it to be so I can set it in the contacts.cfg file like an email address and have it use that. any help appreciated. -Dave T. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.lbsltd.co.uk ********************************************************************** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Hagen_Deike at icon-scm.com Wed Mar 5 16:30:25 2003 From: Hagen_Deike at icon-scm.com (Hagen Deike) Date: Wed, 5 Mar 2003 16:30:25 +0100 Subject: SMB Pop-up Message-ID: <7E47A0E20913514C8F4CD1BC241A37030A4505@serv-075.icon-germany.local> Hi Steve, Could you post the script to the list? I'm interested... :-D Thanks & Regards, Hagen Deike > -----Original Message----- > From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] > Sent: Mittwoch, 5. M?rz 2003 15:52 > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] SMB Pop-up > > - > the general consensus was that you could put multiple entries entries into > the e-mail or pager variables as no checking is done on the Nagios end, > and > that you could delimit them and use a notification script that strips the > values out and does the different notifications to both. > > I do something similar to what you are proposing and use two contacts - > one > for working hours, and one for out-of-hours support with the working hours > receiving the winpopup's, and the out-of-hours getting a SMS using > sendpage > and this works pretty well for me. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 5 16:40:50 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 05 Mar 2003 10:40:50 -0500 (EST) Subject: I am installing Nagios on a RH 8.0 box, and during the compilation of the plugins (1.3-beta1) i get In-Reply-To: References: Message-ID: On Wed, 5 Mar 2003, Stefan Hanssen wrote: > I am installing Nagios on a RH 8.0 box, and during the compilation of the plugins (1.3-beta1) i get the following errors: > > [root at monitor01 nagiosplug-1.3-beta1]# autoconf > [root at monitor01 nagiosplug-1.3-beta1]# autoheader > WARNING: Using auxiliary files such as `acconfig.h', `config.h.bot' > WARNING: and `config.h.top', to define templates for `config.h.in' > WARNING: is deprecated and discouraged. > > WARNING: Using the third argument of `AC_DEFINE' and > WARNING: `AC_DEFINE_UNQUOTED' allows to define a template without > WARNING: `acconfig.h': > > WARNING: AC_DEFINE([NEED_MAIN], 1, > WARNING: [Define if a function `main' is needed.]) > > WARNING: More sophisticated templates can also be produced, see the > WARNING: documentation. > autoheader: `plugins/config.h.in' is updated > [root at monitor01 nagiosplug-1.3-beta1]# automake > automake: configure.in: `AM_INIT_AUTOMAKE' must be used > automake: your implementation of AM_INIT_AUTOMAKE comes from an > automake: old Automake version. You should recreate aclocal.m4 > automake: with aclocal and run automake again. > plugins/Makefile.am: required file `./depcomp' not found > /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL > /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL > /usr/share/automake-1.6/am/depend2.am: AMDEP does not appear in AM_CONDITIONAL > /usr/share/automake-1.6/am/lang-compile.am: AMDEP does not appear in AM_CONDITIONAL > [root at monitor01 nagiosplug-1.3-beta1]# > > > Anyone have an idea of what is wrong ? > > PS. Sorry if this mail has been sent twice. I got an error the first time, so i sent it again. > This is known - RH 80 ships with the new autoconf 2.53 and new automake. Nagiosplug is built with autconf 2.13 and autmake 1.5. Use the 1.3 release tarball. Its the latest release and you don't need the auto tools if you use the tarballs. (autotools are needed for CVS snapshots) -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From masson.martin at cognicase.com Wed Mar 5 16:53:58 2003 From: masson.martin at cognicase.com (Masson, Martin) Date: Wed, 5 Mar 2003 10:53:58 -0500 Subject: serviceextinfo ? Message-ID: <634A5671B467924A9D22145D5EB5F3489085A5@svrxch01.ile-des-soeurs.cognicase.local> Anyone had problem setting up the extend info for the services? I'm trying to have a link / icon for each serrvice, so that the operator can quickly locate the procedures in case of emergency. The problem, is when I try to add more than 2 servers to the serviceextinfo template, the servers that are beyond the two firsts are not showing in the web interface. Example (there could be typos, I had to copy it by hand): define serviceextinfo { host_name server1, server2, server3, server4 service_description APACHE PROCESSES notes_url /document.php?command=showdoc&doc=1 icon_image info.gif icon_image_alt Plus d'information sur le service } I tried defining more "serviceextinfo" with only two entries in them, but it didn't work eitherl. Is that a bug or did I just have the feature wronlgy figured out Thanks Martin Masson Adminstrateur UNIX CGI 514-732-8000 ext. 4084 masson at cognicase.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From wilson at unity.ncsu.edu Wed Mar 5 17:08:30 2003 From: wilson at unity.ncsu.edu (Brian Wilson) Date: Wed, 5 Mar 2003 11:08:30 -0500 (EST) Subject: check_rrd_data.pl Message-ID: Requires RRD::File however the only perl modules distributed with rrdtool are RRDs.pm or RRDp.pm (shared and piped versions). So, is anyone successfully using check_rrd_data.pl, if so, what modifications did you have to make to get it to use one of the above modules OR are their other modules out there I need to grab? I checked CPAN and no dice, as expected. Thanks, Brian -- Brian Wilson Network Analyst Communication Technologies, ATD W: 919.513.3472 North Carolina State University www.ncstate.net ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Marian.ZUREK at cern.ch Wed Mar 5 17:28:46 2003 From: Marian.ZUREK at cern.ch (Marian Zurek) Date: Wed, 05 Mar 2003 17:28:46 +0100 Subject: check_by_ssh and currently logged users Message-ID: <3E6625BE.5010307@cern.ch> Hi, I wanted to see in the Nagios monitoring window the currently running processes. For that purpose I worked out the command as follows: /bin/ps aux | egrep -vw 'USER|root|postfix|daemon|rpc|xfs' | cut -f1 -d\ | sort | uniq -c | tr -s '\t \n' ' ,' and put it as an argument to the check_by_ssh plugin, so the whole command_line as specified in the checkcommands.cfg file looks like following: $USER1$/check_by_ssh -H $HOSTADDRESS$ --command='/bin/ps aux' | egrep -vw 'USER|root|postfix|daemon|rpc|xfs' | cut -f1 -d\ | sort | uniq -c | tr -s '\t \n' ' ,' but it doesn't seem to work properly. The whole output from the 'ps aux' command seem to be cut to the one line only. Is that expected behaviour ? The attempt of processing the 'ps aux' output on the remote machine with the command: ./check_by_ssh -H remote_hostA --command='/bin/ps aux | egrep -vw 'USER|root|postfix|daemon|rpc|xfs' | cut -f1 -d\ | sort | uniq -c | tr -s '\t \n' ' ,'' ends up with the errors like bash: root: command not found bash: xfs | cut -f1 -d\ | sort | uniq -c | tr -s t: command not found bash: rpc: command not found bash: daemon: command not found postfix/postfix-script: fatal: usage: postfix start (or stop, reload, abort, flush, or check) Can you suggest what technique should I use to achieve my results. I would prefer to do it with minimal touch of controlled hosts if possible. I will be also thankful for other ideas/hints. Thanks in advance for your attention. Regards, Marian ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dlevine at seasontickets.com Wed Mar 5 17:48:53 2003 From: dlevine at seasontickets.com (David Levine) Date: Wed, 5 Mar 2003 10:48:53 -0600 Subject: $OUTPUT$ in misccommands.cfg Question... Message-ID: Sandro - That worked great - thanks!! David -----Original Message----- From: Sandro Vaz (UOL) [mailto:sandromergvaz at uol.com.br] Sent: Tuesday, March 04, 2003 5:51 PM To: 'David Levine'; 'Nagios Users List (E-mail)' Subject: RES: [Nagios-users] $OUTPUT$ in misccommands.cfg Question... I had this problem too, and Mr. De Blende told me to do this... And it worked fine... Sure that helps... Sandro Vaz **************************************************************************** **************************** Try this: define command{ command_name notify-by-email command_line /bin/echo -e '***** OpMon *****\n\nNotificationType: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress:$HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$' | /bin/mail -s "** OpMon Alert - $NOTIFICATIONTYPE$ -$HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ } -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de David Levine Enviada em: ter?a-feira, 4 de mar?o de 2003 20:02 Para: Nagios Users List (E-mail) Assunto: [Nagios-users] $OUTPUT$ in misccommands.cfg Question... Hi all - I am having a little trouble with email notifications... I receive the messages just fine, but I am experiencing the following behavior: With check_nt, am getting the output from USEDDISKSPACE. It displays fine on the Nagios (web) interface, but when I receive an (email) notification, this is what I get: Notification Type: PROBLEM Service Name: Disk Usage Stats - D On Host: host.domain.com Host IP Address: 192.168.100.8 Service State: CRITICAL Occurence Date/Time: Tue Mar 4 17:48:51 CST 2003 Additional Info: D: It is the last line that I am curious about - there is nothing beyond the "D:". I can also see this error message from the Nagios host console: /usr/bin/printf: \ : invalid escape This makes sense to me, because the backslash (as in D:\) is an escape character in printf. However, is there a way that I can stop this - so I can get all of the information in the email notification? Thanks! David dlevine at seasontickets.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/2/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.459 / Virus Database: 258 - Release Date: 25/2/2003 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From frankie at etsetb.upc.es Wed Mar 5 17:46:54 2003 From: frankie at etsetb.upc.es (Francesc Guasch) Date: Wed, 05 Mar 2003 17:46:54 +0100 Subject: RedHat 8.0 snmp Message-ID: <3E6629FE.1060903@etsetb.upc.es> I'm trying to use the snmp plugin but I think it won't work in RedHat 8.0. I've seen RedHat 7 had ucd-snmp. This new version has net-snmp. The new snmpget won't work from the plugin because it has different command switches. That's what the plugin tried to do: snmpget -m ALL -v 1 server public OID After trying a lot I managed to get a snmp answer with: snmpget -m ALL -v 1 -c public server OID I googled for it and the best I found was the changelog from redhat snmp. There was something about ucd compatibility but I couldn't find the switch. Any hints ? thank you very much. -- frankie ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Wed Mar 5 18:02:07 2003 From: ah43 at httpsite.com (ah43 at httpsite.com) Date: Wed, 05 Mar 2003 12:02:07 -0500 (EST) Subject: check_by_ssh and currently logged users In-Reply-To: <3E6625BE.5010307@cern.ch> References: <3E6625BE.5010307@cern.ch> Message-ID: > The attempt of processing the 'ps aux' output on the remote machine with the > command: > > ./check_by_ssh -H remote_hostA --command='/bin/ps aux | egrep -vw > 'USER|root|postfix|daemon|rpc|xfs' | cut -f1 -d\ | sort | uniq -c | tr -s > '\t > \n' ' ,'' > > ends up with the errors like Escape your quotes. The ' quote before USER is a closing quote of the one after --command= -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From steve.freegard at lbsltd.co.uk Wed Mar 5 18:10:51 2003 From: steve.freegard at lbsltd.co.uk (Steve Freegard) Date: Wed, 5 Mar 2003 17:10:51 -0000 Subject: SMB Pop-up Message-ID: <67D9E7698329D411936E00508B6590B902793294@neelix.lbsltd.co.uk> Hagen, I've never written the script - it was only a suggestion that was made on the list a while back by someone else. That said - it's pretty easy to do (and this definitely isn't the best way to achieve this): #!/bin/bash USER_ONE=`echo $1 | cut -d! -f1` USER_TWO=`echo $1 | cut -d! -f2` # Do something for user one... echo $USER_ONE # Do something for user two... echo $USER_TWO Contact pager would then be something like: test1!test2 Notification command would be: $USER1$/script.sh '$CONTACTPAGER' Hope this helps. Regards, Steve. -----Original Message----- From: Hagen Deike [mailto:Hagen_Deike at icon-scm.com] Sent: 05 March 2003 15:30 To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Steve, Could you post the script to the list? I'm interested... :-D Thanks & Regards, Hagen Deike > -----Original Message----- > From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] > Sent: Mittwoch, 5. M?rz 2003 15:52 > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] SMB Pop-up > > - > the general consensus was that you could put multiple entries entries into > the e-mail or pager variables as no checking is done on the Nagios end, > and > that you could delimit them and use a notification script that strips the > values out and does the different notifications to both. > > I do something similar to what you are proposing and use two contacts - > one > for working hours, and one for out-of-hours support with the working hours > receiving the winpopup's, and the out-of-hours getting a SMS using > sendpage > and this works pretty well for me. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.lbsltd.co.uk ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 5 18:47:20 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 05 Mar 2003 12:47:20 -0500 (EST) Subject: RedHat 8.0 snmp In-Reply-To: <3E6629FE.1060903@etsetb.upc.es> References: <3E6629FE.1060903@etsetb.upc.es> Message-ID: On Wed, 5 Mar 2003, Francesc Guasch wrote: > I'm trying to use the snmp plugin but I think it won't > work in RedHat 8.0. > > I've seen RedHat 7 had ucd-snmp. This new version has > net-snmp. The new snmpget won't work from the plugin > because it has different command switches. > > That's what the plugin tried to do: > snmpget -m ALL -v 1 server public OID > > After trying a lot I managed to get a snmp answer with: > snmpget -m ALL -v 1 -c public server OID > > I googled for it and the best I found was the changelog > from redhat snmp. There was something about ucd compatibility > but I couldn't find the switch. > > Any hints ? thank you very much. > > What version of check_snmp - it was fixed prior to the 1.3 release... -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From roberto.oppedisano at infracomspa.it Wed Mar 5 18:50:52 2003 From: roberto.oppedisano at infracomspa.it (Roberto Oppedisano) Date: Wed, 05 Mar 2003 18:50:52 +0100 Subject: check latency too high Message-ID: <3E6638FC.30408@infracomspa.it> Hi there. I'm using nagios v1.0 to monitor the status of 350 routers (this are going to be > 600): the only plugin which I'm using is check_ping. I'm seeing that the "Last Check" time (Service Detail menu in the web interface) are sometimes way too old for some of the monitored routers (more than half an hour); at the same time looking at the "Performance Info" menu I see that the values for the check latency grow to high values (min 60 sec., max 190sec., avg 115 sec.). If I restart nagios this values go down to something like 1sec, 5 sec, 2 sec. (they usually stay at this levels for some hours), and the last check times return to better values (not more than 5 min. old). Is this a normal behavior? The load average and the CPU usage on the server (1.4GHz PIII server with RH 7.3 installed and harware SCSI RAID) are both very low. Nagios is complied with postrgresql support. More info on request. TIA -- Roberto Oppedisano ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DTerrell at Delphi-Tech.com Wed Mar 5 18:40:22 2003 From: DTerrell at Delphi-Tech.com (DTerrell at Delphi-Tech.com) Date: Wed, 5 Mar 2003 12:40:22 -0500 Subject: SMB Pop-up Message-ID: <880E60DA7286AB4CBEECB01B169A63BD0286766E@NJ-2K-Email1.delphi-tech.com> Steve, Just to let you know, and all others, I followed your directions exactly and everything worked perfectly the first time! Also, I too am interested in this non-standard notification that you use ;-) -----Original Message----- From: Hagen Deike [mailto:Hagen_Deike at icon-scm.com] Sent: Wednesday, March 05, 2003 10:30 AM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Steve, Could you post the script to the list? I'm interested... :-D Thanks & Regards, Hagen Deike > -----Original Message----- > From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] > Sent: Mittwoch, 5. M?rz 2003 15:52 > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] SMB Pop-up > > - > the general consensus was that you could put multiple entries entries into > the e-mail or pager variables as no checking is done on the Nagios end, > and > that you could delimit them and use a notification script that strips the > values out and does the different notifications to both. > > I do something similar to what you are proposing and use two contacts - > one > for working hours, and one for out-of-hours support with the working hours > receiving the winpopup's, and the out-of-hours getting a SMS using > sendpage > and this works pretty well for me. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nazario at email.sc.gov.br Wed Mar 5 19:46:44 2003 From: nazario at email.sc.gov.br (Samoied) Date: Wed, 5 Mar 2003 15:46:44 -0300 Subject: SNMP Discovery Message-ID: <20030305184644.GA1921@pc219-14.intranet.ciasc.gov.br> Good afternoon, I've been testing Nagios here in the company and got great results in the way it checks the hosts and show them and warn us about any problem. I want to replace the whole What's Up system by Nagios, but there's only one little problem that I have, and it is in the discovery. If you in the list know about any way to do the discovery using SNMP, since my whole network is configured under SNMP, and if there was any way to make Nagios folow the links configured in each router I'd be very thankful. Greetings, -- _ Samoied ?v? UIN: #106162852 /(_)\ Linux user: #263461 ^ ^ Please encrypt and sign e-mails -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available URL: From greg at intouch.ca Wed Mar 5 20:15:48 2003 From: greg at intouch.ca (Greg Webster) Date: Wed, 5 Mar 2003 11:15:48 -0800 Subject: notify-by-email without local sendmail? Message-ID: <20030305111548.1a5508f4.greg@intouch.ca> Hi, I was wondering if it's possible to get Nagios to use an external mailserver to send it's notifications via email. I don't want to put a mail server on the box Nagios runs on if possible. Thanks, Greg Webster ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 5 20:54:21 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 5 Mar 2003 13:54:21 -0600 Subject: notify-by-email without local sendmail? Message-ID: In order to do as you're hoping, that would mean that Nagios would have to assume the functionality of an MTA. That's not what it was designed to do. Sendmail does a pretty decent job of being an MTA, but it tends to send some folks running for the hills. If all you want is to have your Nagios server toss all outbound e-mails to a smarterhost, check out one of these alternatives: mini_sendmail: http://freshmeat.net/projects/mini_sendmail/?topic_id=28 nullmailer: http://freshmeat.net/projects/nullmailer/?topic_id=32 I'm in the process of adding this to the FAQ. jc > -----Original Message----- > From: Greg Webster [mailto:greg at intouch.ca] > Sent: Wednesday, March 05, 2003 1:16 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] notify-by-email without local sendmail? > > > Hi, > > I was wondering if it's possible to get Nagios to use an > external mailserver to send it's notifications via email. I > don't want to put a mail server on the box Nagios runs on if possible. > > Thanks, > > Greg Webster > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg at intouch.ca Wed Mar 5 21:16:37 2003 From: greg at intouch.ca (Greg Webster) Date: Wed, 5 Mar 2003 12:16:37 -0800 Subject: notify-by-email without local sendmail? In-Reply-To: References: Message-ID: <20030305121637.7414df48.greg@intouch.ca> On Wed, 5 Mar 2003 13:54:21 -0600 : "Carroll, Jim P [Contractor]" wrote: > If all you want is to have your Nagios server toss all outbound e-mails to a > smarterhost, check out one of these alternatives: > > mini_sendmail: > http://freshmeat.net/projects/mini_sendmail/?topic_id=28 > > nullmailer: > http://freshmeat.net/projects/nullmailer/?topic_id=32 > > I'm in the process of adding this to the FAQ. Just a note for others... I tried nullmailer and it works like a charm. Dead simple. Previous to that I tried ssmtp, but it didn't work with the notify commands as-is. I heartily recommend nullmailer. Greg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg at intouch.ca Wed Mar 5 22:08:15 2003 From: greg at intouch.ca (Greg Webster) Date: Wed, 5 Mar 2003 13:08:15 -0800 Subject: Missing scripts? In-Reply-To: <20030305144155.B9153@IPAustralia.Gov.AU> References: <20030304131438.3e9d99fb.greg@intouch.ca> <20030305095531.A9153@IPAustralia.Gov.AU> <20030304155053.56039e7c.greg@intouch.ca> <20030305144155.B9153@IPAustralia.Gov.AU> Message-ID: <20030305130815.3e9bb1d4.greg@intouch.ca> The command I am using is: ./configure --with-gd-lib=/usr/lib --with-gd-inc=/usr/include I believe that all the gd libraries are in place (installed via dselect in Debian) On Wed, 5 Mar 2003 14:41:58 +1100: Stanley Hopcroft wrote: > gd headers (.h files). If gd.h is _not_ in /usr/include this is futile. > I would guess that this is an unlikely place to find it. # locate gd.h /usr/include/gd.h > you can find out exactly what's going on by reading configure (/gd might > be a good place to start). > > What configure is doing is trying to locate your headers and libraries > by compiling stuff like > > #include > main() { > /* some gd lib call */ > } > > with gcc -I -L -l gd .. yada > test.c > > when it fails, it reports what you see. > > In other words, it can't find something. > > Since you have eliminated the libraries, it must be headers. Same error when I have the header file in place (/usr/include/gd.h) > On this FreeBSD system gd.h and friends are in /usr/local/include/gd > > I use --with-gd-inc=/usr/local/include/gd --with-gd-lib=/usr/local/lib > as arguments to configure. > > Try and locate gd.h (with find) and then feed the path to --with-gd-inc Done, same error. > It wants to _attract_ your attention and _tell_ you that it's blown up > and things will not work as expected. > > Unfortunately, no one wants to hear bad news so this _and even louder > versions_ is usually ignored. Actually, all I'd like is for it to be just a little more concise with the error message. For example, if I have libgd and libpng in perfect order, but libjpeg is missing then it should tell me that it's libjpeg that's missing, not the general error message it does now. Does anyone else have this running on Debian? Greg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stanley at szczygiel.net Wed Mar 5 22:54:58 2003 From: stanley at szczygiel.net (Stanis³aw Szczygie³) Date: Wed, 5 Mar 2003 22:54:58 +0100 Subject: how to make logical "and" of services? Message-ID: <004801c2e361$dd88ad10$0200010a@master> Hello, please help me... How to define service, which is true (in OK state) if a group of other few services are OK? I have to observe system, which consist of group of processes. I defined group of services, where each service test presence of each process - but how to define process which can be logical "and" of all these services? I've tried to use dependencies, but it didnt work well... Im sure that there is some solution, but I cant find out how to do this - so please, if anyone knows solution, please help. Stanley ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Wed Mar 5 23:53:23 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Wed, 5 Mar 2003 23:53:23 +0100 Subject: how to make logical "and" of services? In-Reply-To: <004801c2e361$dd88ad10$0200010a@master>; from stanley@szczygiel.net on Wed, Mar 05, 2003 at 10:54:58PM +0100 References: <004801c2e361$dd88ad10$0200010a@master> Message-ID: <20030305235323.A1481@hpce.nec.com> On Wed, Mar 05, 2003 at 10:54:58PM +0100, Stanis3aw Szczygie3 wrote: > Hello, > > please help me... How to define service, which is true (in OK state) if a > group of other few services are OK? > > I have to observe system, which consist of group of processes. I defined > group of services, where each service test presence of each process - but > how to define process which can be logical "and" of all these services? I've > tried to use dependencies, but it didnt work well... Write your own plugin (or wrapper to existing plugins). A logical "and" is trivial in every programming language that comes to my mind (not too many, I admit). Rasmus ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Wed Mar 5 14:13:22 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Thu, 6 Mar 2003 00:13:22 +1100 Subject: Missing scripts? In-Reply-To: <20030305130815.3e9bb1d4.greg@intouch.ca>; from greg@intouch.ca on Wed, Mar 05, 2003 at 01:08:15PM -0800 References: <20030304131438.3e9d99fb.greg@intouch.ca> <20030305095531.A9153@IPAustralia.Gov.AU> <20030304155053.56039e7c.greg@intouch.ca> <20030305144155.B9153@IPAustralia.Gov.AU> <20030305130815.3e9bb1d4.greg@intouch.ca> Message-ID: <20030306001317.A241@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Wed, Mar 05, 2003 at 01:08:15PM -0800, Greg Webster wrote: > Please have your mailer wrap the lines to about 72 columns. > Actually, all I'd like is for it to be just a little more concise with the error message. For example, if I have libgd and libpng in perfect order, but libjpeg is missing then it should tell me that it's libjpeg that's missing, not the general error message it does now. > This is _unrealistic_. Suppose a program needs 'n' libraries to link. After Configure fails to compile a test program using the presumed locations of these 'n' libraries, it would then have to build test programs for _each_ of the n libraries to test their presence. This would bloat configure without adding any benefit. The message is clear. Either, 1 There is a bug in configure that makes it impossible to build Nag on Debian ==> Perhaps you should try the Deb package/port. 2 Your system is missing libraries or headers. > Does anyone else have this running on Debian? > > Greg Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jamie at bclnz.net Thu Mar 6 01:36:09 2003 From: jamie at bclnz.net (Jamie) Date: Thu, 6 Mar 2003 13:36:09 +1300 Subject: Missing scripts? References: <20030304131438.3e9d99fb.greg@intouch.ca> <20030305095531.A9153@IPAustralia.Gov.AU> <20030304155053.56039e7c.greg@intouch.ca> <20030305144155.B9153@IPAustralia.Gov.AU> <20030305130815.3e9bb1d4.greg@intouch.ca> <20030306001317.A241@IPAustralia.Gov.AU> Message-ID: <007301c2e378$62739d80$b58031ca@bcl977307> no such issues on my woody ;-) (i.e. not sarge) sometimes it's better to run woody/stable and pin to sid or sarge for specific packages. Sarge can sometimes be in no mans land. Why are you building from source? Hats off to your patience Stanley. jamie ----- Original Message ----- From: "Stanley Hopcroft" To: "Greg Webster" Cc: Sent: Thursday, March 06, 2003 2:13 AM Subject: Re: [Nagios-users] Missing scripts? > Dear Sir, > > I am writing to thank you for your letter and say, > > On Wed, Mar 05, 2003 at 01:08:15PM -0800, Greg Webster wrote: > > > > Please have your mailer wrap the lines to about 72 columns. > > > Actually, all I'd like is for it to be just a little more concise with the error message. For example, if I have libgd and libpng in perfect order, but libjpeg is missing then it should tell me that it's libjpeg that's missing, not the general error message it does now. > > > > This is _unrealistic_. > > Suppose a program needs 'n' libraries to link. > > After Configure fails to compile a test program using the presumed > locations of these 'n' libraries, it would then have to build test > programs for _each_ of the n libraries to test their presence. > > This would bloat configure without adding any benefit. > > The message is clear. Either, > > 1 There is a bug in configure that makes it impossible to build Nag on > Debian > > ==> Perhaps you should try the Deb package/port. > > 2 Your system is missing libraries or headers. > > > Does anyone else have this running on Debian? > > > > Greg > > Yours sincerely. > -- > ------------------------------------------------------------------------ > Stanley Hopcroft > ------------------------------------------------------------------------ > > '...No man is an island, entire of itself; every man is a piece of the > continent, a part of the main. If a clod be washed away by the sea, > Europe is the less, as well as if a promontory were, as well as if a > manor of thy friend's or of thine own were. Any man's death diminishes > me, because I am involved in mankind; and therefore never send to know > for whom the bell tolls; it tolls for thee...' > > from Meditation 17, J Donne. > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chris at xecu.net Thu Mar 6 04:30:32 2003 From: chris at xecu.net (Chris McGee) Date: Wed, 5 Mar 2003 22:30:32 -0500 (EST) Subject: Check_dns error? Message-ID: Has anyone used the check_dns command with the -a flag to actually check the address that is returned? It seems to have an error in the check response. For some reason, it returns an IP address with a preceding space. I needed to match it to ' ip address' instead of just the IP. It's simple enough to bypass, but it seems like it's some error in the program, has anyone seen this? Chris xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Chris McGee 301-682-9972 Xecunet, LLC www.xecu.net xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Dialup * Webhosting * E-Commerce * High-Speed Access ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chris at xecu.net Thu Mar 6 04:34:17 2003 From: chris at xecu.net (Chris McGee) Date: Wed, 5 Mar 2003 22:34:17 -0500 (EST) Subject: Looking for plugins. Message-ID: I've got everything working properly but I'm looking for a couple of plugins. I'm looking for a way to check that BGP is working and also MySQL. I prefer to have something that actually verifies that the services are working. I've also been looking at the various options for smtp, http, pop, etc... has anyone used these to actually check if the services are working rather than just responding on the port? Chris xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Chris McGee 301-682-9972 Xecunet, LLC www.xecu.net xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Dialup * Webhosting * E-Commerce * High-Speed Access ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Thu Mar 6 04:58:22 2003 From: mpowell at ena.com (Marc Powell) Date: Wed, 5 Mar 2003 21:58:22 -0600 Subject: Looking for plugins. Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED50E@mismail.ena.com> These are all part of the standard plugins distribution. In fact, there are several different mysql plugins in the contrib directory in addition to the main check_mysql plugin. Same goes for POP3. I also see a check_bgpstate.pl that may work for you. As far as verifying services are working, most of all of the plugins you mention support some type of expect string functionality to one degree or another. I can personally vouch that check_http with either the -e or the -s flag works great. I don't see why the others wouldn't work as well. It even appears that the check_pop3.pl script in the contrib directory even verifies that you can log in and doesn't just look for the pop3 banner. './plugin_name --help' is your friend. -- Marc -----Original Message----- From: Chris McGee [mailto:chris at xecu.net] Sent: Wednesday, March 05, 2003 9:34 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Looking for plugins. I've got everything working properly but I'm looking for a couple of plugins. I'm looking for a way to check that BGP is working and also MySQL. I prefer to have something that actually verifies that the services are working. I've also been looking at the various options for smtp, http, pop, etc... has anyone used these to actually check if the services are working rather than just responding on the port? Chris xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Chris McGee 301-682-9972 Xecunet, LLC www.xecu.net xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Dialup * Webhosting * E-Commerce * High-Speed Access ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg_vickers at mbox.com.au Thu Mar 6 04:57:34 2003 From: greg_vickers at mbox.com.au (Greg Vickers) Date: Thu, 06 Mar 2003 13:57:34 +1000 Subject: ldap plugin compile on Debian Message-ID: <32d4bd932da868.32da86832d4bd9@mbox.com.au> Hi all, I was wondering if anyone has compiled 1.3.0 plugins on debian? I can't seem to get them to compile at all, even with the libraries libldap2 & (-dev) installed :( Thanks in advance, Greg --------------------------------------------------------------------- Faxes delivered directly to any email address, new to mBox! Find out more http://www.mbox.com.au/fax ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg_vickers at mbox.com.au Thu Mar 6 04:59:06 2003 From: greg_vickers at mbox.com.au (Greg Vickers) Date: Thu, 06 Mar 2003 13:59:06 +1000 Subject: Compiling LDAP under Debian (further) Message-ID: <32d564832d70e7.32d70e732d5648@mbox.com.au> Sorry for not reading my post before hitting send! I meant to say that specifically I can't get the LDAP plugin to compile :( TIA, Greg --------------------------------------------------------------------- Faxes delivered directly to any email address, new to mBox! Find out more http://www.mbox.com.au/fax ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at nagios.org Thu Mar 6 05:24:11 2003 From: nagios at nagios.org (Ethan Galstad) Date: Wed, 05 Mar 2003 22:24:11 -0600 Subject: force notification ? In-Reply-To: References: Message-ID: <3E66790B.4946.10C63C1@localhost> On 5 Mar 2003 at 15:37, Joerg.Krueger at alcatel.de wrote: > Is it possible to force a notification, e.g. by an external command, even > if the conditions for a notification are not met ? > I would like to generate a notification everytime I find a pattern in a > logfile containing a descriptive text regarding the log message. My idea > was to define a service which accepts passive check results. The logfile > scanner submits the results as passive check results locally by an external > command or remotely by nsca. > This works in general, but only the first event leads to a notification. > All subsequent events will not be notified since no status transition took > place. You could fake this mechanism by sending an OK check result after > each WARNING or CRITICAL, but isn't there a smarter way ? > > Mit freundlichen Gruessen/Best Regards > Joerg Krueger Try setting the is_volative directive for the service to 1. This should cause Nagios to send a notification every time a non-OK event is received. Ethan Galstad, Nagios Developer --- Email: nagios at nagios.org Website: http://www.nagios.org ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Thu Mar 6 06:36:37 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Wed, 5 Mar 2003 21:36:37 -0800 Subject: ldap plugin compile on Debian In-Reply-To: <32d4bd932da868.32da86832d4bd9@mbox.com.au> References: <32d4bd932da868.32da86832d4bd9@mbox.com.au> Message-ID: <20030306053637.GA27127@UnderGrid.net> Greg, If you can get with me regarding the problems you're having maybe I can help you as I run Debian (being a Debian package maintainer it kinda helps, although I am not the netsaint/nagios maintainer) and have several arches here locally (x86, alpha and hppa)... I was not having any problems building the beta releases from CVS on stable and unstable so I'm not sure what problems you are encountering... Jeremy On Thu, Mar 06, 2003 at 01:57:34PM +1000, Greg Vickers wrote: > Hi all, > > I was wondering if anyone has compiled 1.3.0 plugins on debian? I can't > seem to get them to compile at all, even with the libraries libldap2 & > (-dev) installed :( > > Thanks in advance, > Greg > > --------------------------------------------------------------------- > Faxes delivered directly to any email address, new to mBox! > Find out more http://www.mbox.com.au/fax > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Brad at pretzel.com.au Thu Mar 6 07:37:11 2003 From: Brad at pretzel.com.au (Brad Dunn) Date: Thu, 6 Mar 2003 14:37:11 +0800 Subject: CGI execute Message-ID: <131A385F21AAD311BD6400902763781D01DB253F@Z8> Hello there, I'm currently going over someone's Nagios server and have come across a problem. this is a fairly simple problem I'm sure and I'm fairly certain I've made just a simple typo, but I've read as much Nagios documentation as I can in regards to this but I'm just having an issue getting the CGI's working on the nagios site. Note that my nagios is all working fine and monitoring no worries, its just the site CGI's that don't seem to work. I have a fairly good suspicion that I've just got one of the script alias's wrong or something like that. Once again apologies for the lame help request. OS: Debian Version NFO: Nagios 1.0 Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 11-24-2002 Error: When I run the CGI's from the web interface I get an internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request This is my vhost for apache ServerName nagios.domain.com.au ServerAdmin helpdesk at domain.com.au DocumentRoot /usr/local/nagios User nagios Group nagios Alias /nagios/ usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all Errorlog logs/nagios-web.error CustomLog logs/nagios-web.access common Options +ExecCGI ScriptAlias /cgi-bin/nagios/ /usr/local/nagios/cgi/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all This is from CGI.CFG in /usr/local/nagios/etc physical_html_path=/usr/local/nagios/share url_html_path=/nagios The nagiosadmin user I've got does have access to the CGI's (execute and everything. I even just did a 777 to make sure at one point). My cgi's etc are also located in /usr/local/nagios.cgi Makefile avail.cgi cmd.cgi extinfo.c history.c notifications.cgi showlog.c statuswml.cgi tac.cgi Makefile.in cgiutils.c config.c extinfo.cgi history.cgi outages.c showlog.cgi statuswrl.c trends.c auth.c cgiutils.h config.cgi getcgi.c lifo.c outages.cgi status.c statuswrl.cgi auth.h cgiutils.h.in edata.c getcgi.h lifo.h popen.c status.cgi summary.c auth.o cgiutils.o edata.h getcgi.o lifo.o popen.h statusmap.c summary.cgi avail.c cmd.c edata.o histogram.c notifications.c popen.o statuswml.c tac.c If anyone's got any idea on where my problem might be, or any idea's on what to verify my configs against. That would be very much appreciated. Some times it just takes an outsider to point out a simple mistake. Thanks Brad ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Shane_Seidel at gwf.com.au Thu Mar 6 08:40:13 2003 From: Shane_Seidel at gwf.com.au (Shane_Seidel at gwf.com.au) Date: Thu, 6 Mar 2003 17:40:13 +1000 Subject: sms alert using gnokii Message-ID: <4A256CE1.002B38FC.00@gisw900.gwf.com.au> Bernie, I have SMS working on RH7.3, Nagios 1.0 using Nokia 5110, Gnokii Version 0.3.3, Telstra GSM (Australia) Some key points to remember:- if the gnokii command runs from root ok then su nagios and try the command. If the command now fails permissions are the clue. Make sure nagios can write to the port eg. ttys0 in Red Hat Make sure nagios is a member of the tty group Make sure nagios is a member of the uucp group ( not sure of the correlation but have found this to be the case with other devices connected to the comm port eg Temp Trax digital thermometer) Lastly here is the command I use, note the +61 (Aust code), no smsc and no switches I have seen "-C0 2" inserted before >/dev/null but this displays the message on the phone without saving to the inbox command[notify-by-sms]=/usr/bin/printf "$HOSTNAME$ - $SERVICEDESC$ is $SERVICESTATE$" | /usr/bin/gnokii --sendsms +61408XXXXXX >/dev/null Thanks to Pia from Linux Australia for helping me nut this out and good luck! >>As you do not describe what errors you get, it is a bit difficult to provide ********************************************************************************************************************************************** This email and its attachments are confidential subject to copyright and may be legally privileged. If they have come to you in error you should take no action based upon the contents nor should you copy or show them to anyone. Please delete the email and its attachments and inform administrators at gwf.com.au Any views or opinions expressed are those of the author and do not necessarily represent those of George Weston Foods Ltd. Security: Internet email is not a completely secure medium, please note this when considering the content of your message. Viruses: We take precautions to ensure email is free of viruses but cannot guarantee this. Accordingly we advise scanning all email and attachments ********************************************************************************************************************************************* -------------- next part -------------- ?>>an exact answer. >> ?>>The advise I got when setting this up about 6 months ago, was to use some ?>>form of gateway between Nagios and Gnokii. ?>>Gnokii needs some kind of queing mechanism, otherwise it might choke when ?>>sending multiple notifications. ?>>I am using Alamin (www.alamin.org). It was somewhat difficult to set up, but ?>>runs fine. I can't find my notes about the installation, but I remember this ?>>has been on the list in the past. ?>>You should also check the FAQ at: ?>>http://www.nagios.org/faqs/viewfaq.php?faq_id=65&expand=false&showdesc=true ?>>/Allan ?>>-----Oprindelig meddelelse----- ?>>Fra: bernie liwanag [mailto:bliwanag at ya...] ?>>Sendt: 5. marts 2003 06:54 ?>>Til: nagios-users at li... ?>>Emne: [Nagios-users] sms alert using gnokii ?>>Hi to all! >> How can I make gnokii works on my nagios.I have my ?>>gnokii running using a command prompt. I can send and ?>>eceived a text message using the command : ?>># /usr/local/sbin/gnokii --sendsms ?>>- Here is my sample conifiguration in contacts.cfg ?>>file .................................... ?>>Can someone tells me what wrong with my config? || || || >>Thanks a lot to all! ?>>Bernie From Shane_Seidel at gwf.com.au Thu Mar 6 09:00:04 2003 From: Shane_Seidel at gwf.com.au (Shane_Seidel at gwf.com.au) Date: Thu, 6 Mar 2003 18:00:04 +1000 Subject: sms alert using gnokii Message-ID: <4A256CE1.002D1E3F.00@gisw900.gwf.com.au> Bernie, I missed a bit, I believe user nagios should also be a member of the gnokii group. Regards Shane >>I have SMS working on RH7.3, Nagios 1.0 using Nokia 5110, Gnokii Version 0.3.3, Telstra GSM (Australia) >>Some key points to remember:- if the gnokii command runs from root ok then su nagios and try the command. If the command now fails >>permissions are the clue. >>Make sure nagios can write to the port eg. ttys0 in Red Hat >>Make sure nagios is a member of the tty group >>Make sure nagios is a member of the uucp group ( not sure of the correlation but have found this to be the case with other devices >>connected to the comm port eg Temp Trax digital thermometer) >>Lastly here is the command I use, note the +61 (Aust code), no smsc and no switches I have seen "-C0 2" inserted before >/dev/null but >>this displays the message on the phone without saving to the inbox >>command[notify-by-sms]=/usr/bin/printf "$HOSTNAME$ - $SERVICEDESC$ is $SERVICESTATE$" | /usr/bin/gnokii --sendsms >>+61408XXXXXX >/dev/null >>Thanks to Pia from Linux Australia for helping me nut this out and good luck! ********************************************************************************************************************************************** This email and its attachments are confidential subject to copyright and may be legally privileged. If they have come to you in error you should take no action based upon the contents nor should you copy or show them to anyone. Please delete the email and its attachments and inform administrators at gwf.com.au Any views or opinions expressed are those of the author and do not necessarily represent those of George Weston Foods Ltd. Security: Internet email is not a completely secure medium, please note this when considering the content of your message. Viruses: We take precautions to ensure email is free of viruses but cannot guarantee this. Accordingly we advise scanning all email and attachments ********************************************************************************************************************************************* ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jec at rptec.ch Thu Mar 6 08:38:20 2003 From: jec at rptec.ch (Jean-Eric Cuendet) Date: Thu, 06 Mar 2003 08:38:20 +0100 Subject: Changing of service not took into account Message-ID: <3E66FAEC.4080107@rptec.ch> Hi, I use nagios 1.0 on Linux RH7.3. I have changed a service that was "Check /dev/sda2 space" To "check / space" Now, (I have restarted nagios many times) the sda2 check continue to exists (thus not visible in the GUI) and to check. As it fails (the sda2 service is not defined anymorein nrpe), we have a mail telling us that the check was failed every 2 hours... Is it a known bug? Is there a workaround? Thanks -jec -- Jean-Eric Cuendet Riskpro Technologies SA Av du 14 avril 1b, 1020 Renens Switzerland Principal: +41 21 637 0110 Fax: +41 21 637 01 11 Direct: +41 21 637 0123 E-mail: jean-eric.cuendet at rptec.ch http://www.rptec.ch -------------------------------------------------------- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 6 09:10:01 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 06 Mar 2003 09:10:01 +0100 Subject: Changing of service not took into account References: <3E66FAEC.4080107@rptec.ch> Message-ID: <3E670259.43572B83@gcc.dhl.com> Try setting "retain_nonstatus_information" in your service definition to 0 and restart Nagios. Jean-Eric Cuendet wrote: > > Hi, > I use nagios 1.0 on Linux RH7.3. > I have changed a service that was "Check /dev/sda2 space" To "check / space" > Now, (I have restarted nagios many times) the sda2 check continue to > exists (thus not visible in the GUI) and to check. As it fails (the sda2 > service is not defined anymorein nrpe), we have a mail telling us that > the check was failed every 2 hours... > > Is it a known bug? Is there a workaround? > Thanks > -jec > > -- > Jean-Eric Cuendet > Riskpro Technologies SA > Av du 14 avril 1b, 1020 Renens Switzerland > Principal: +41 21 637 0110 Fax: +41 21 637 01 11 > Direct: +41 21 637 0123 > E-mail: jean-eric.cuendet at rptec.ch > http://www.rptec.ch > -------------------------------------------------------- > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jec at rptec.ch Thu Mar 6 09:38:38 2003 From: jec at rptec.ch (Jean-Eric Cuendet) Date: Thu, 06 Mar 2003 09:38:38 +0100 Subject: Changing of service not took into account In-Reply-To: <3E670259.43572B83@gcc.dhl.com> References: <3E66FAEC.4080107@rptec.ch> <3E670259.43572B83@gcc.dhl.com> Message-ID: <3E67090E.9090608@rptec.ch> > > >Try setting "retain_nonstatus_information" in your service definition >to 0 and restart Nagios. > Is it retain_nonstatus_information instead of retain_nonstatus_information ? -jec ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Thu Mar 6 09:40:25 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Thu, 6 Mar 2003 19:40:25 +1100 Subject: Looking for plugins. In-Reply-To: <5DB017510818EC468B05BD7BD9EACF83030ED50E@mismail.ena.com>; from mpowell@ena.com on Wed, Mar 05, 2003 at 09:58:22PM -0600 References: <5DB017510818EC468B05BD7BD9EACF83030ED50E@mismail.ena.com> Message-ID: <20030306194017.A230@IPAustralia.Gov.AU> Dear Gentlemen, I have probably said more than I need to about this matter in the past but by way of summary, On Wed, Mar 05, 2003 at 09:58:22PM -0600, Marc Powell wrote: > > As far as verifying services are working, most of all of the plugins you > mention support some type of expect string functionality to one degree > or another. I can personally vouch that check_http with either the -e or > the -s flag works great. I don't see why the others wouldn't work as > well. It even appears that the check_pop3.pl script in the contrib > directory even verifies that you can log in and doesn't just look for > the pop3 banner. > > > -----Original Message----- > From: Chris McGee [mailto:chris at xecu.net] > Subject: [Nagios-users] Looking for plugins. > > ... I prefer to have something that actually verifies that the > services are working. > that this is the way I like to have Nagios work also: rather than detect obvious signs of service malfunction, to exercise or simulate the clients use of the service to make sure that the service is responding as a human user of it would expect. This approach is more suitable for those monitoring enterprises or business rather than service providers. Service checking in this manner needs custom plugins. Some tools to get you started are :- 1 From CPAN 1.1 WWW::Mechanize 1.2 WWW::Automate I haven't used either but 'Mechanize has a particularly obvious API: a click method of a form button etc 2 From SourceForge HTTP::MonkeyWrench This has a companion module that you can stick on the web server and have it capture the traversal of a web site and create a 'MonkeyWrench data structure describing that traversal (suitable for playback in your service check). 3 Nagios::Web_Trx and Nagios::Web_Trx_Timed hopefully on CPAN 'real soon now'. These are the only ones I can vouchsafe the operation of. They accept a data structure containing a sequence of URLs, the HTTP method to be used, the input data to be posted or inlined and what to expect for success and failure. The snag of course is you have to _manually_ work out what the browser does when it searches the data base via the web form and so on (tcpdump/ethereal are your friends). Crude but effective, although like all screen scrapers, vulnerable to change in form features. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hvdkooij at vanderkooij.org Thu Mar 6 09:48:35 2003 From: hvdkooij at vanderkooij.org (Hugo van der Kooij) Date: Thu, 6 Mar 2003 09:48:35 +0100 (CET) Subject: CGI execute In-Reply-To: <131A385F21AAD311BD6400902763781D01DB253F@Z8> References: <131A385F21AAD311BD6400902763781D01DB253F@Z8> Message-ID: On Thu, 6 Mar 2003, Brad Dunn wrote: > Error: > When I run the CGI's from the web interface I get an internal Server Error > > The server encountered an internal error or misconfiguration and was unable > to complete your request > Check the apache error logs. You seem to have forgotten to verify what error they report. It will reveal in more detail what is wrong with your setup. Hugo. -- All email sent to me is bound to the rules described on my homepage. hvdkooij at vanderkooij.org http://hvdkooij.xs4all.nl/ Don't meddle in the affairs of sysadmins, for they are subtle and quick to anger. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 6 09:53:40 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 06 Mar 2003 09:53:40 +0100 Subject: Changing of service not took into account References: <3E66FAEC.4080107@rptec.ch> <3E670259.43572B83@gcc.dhl.com> <3E67090E.9090608@rptec.ch> Message-ID: <3E670C94.1FAF595A@gcc.dhl.com> ? Jean-Eric Cuendet wrote: > > > > > > >Try setting "retain_nonstatus_information" in your service definition > >to 0 and restart Nagios. > > > Is it > retain_nonstatus_information > instead of > retain_nonstatus_information > ? > > -jec ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From frankie at etsetb.upc.es Thu Mar 6 09:59:01 2003 From: frankie at etsetb.upc.es (Francesc Guasch) Date: Thu, 06 Mar 2003 09:59:01 +0100 Subject: RedHat 8.0 snmp In-Reply-To: References: Message-ID: <3E670DD5.7070001@etsetb.upc.es> Subhendu Ghosh wrote: > On Wed, 5 Mar 2003, Francesc Guasch wrote: > > >>I'm trying to use the snmp plugin but I think it won't >>work in RedHat 8.0. > What version of check_snmp - it was fixed prior to the 1.3 release... > check_snmp (nagios-plugins 1.3.0-alpha1) 1.3 -- frankie ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From twelsh at square-box.com Thu Mar 6 10:17:45 2003 From: twelsh at square-box.com (Tom Welsh) Date: Thu, 6 Mar 2003 09:17:45 -0000 Subject: CGI execute In-Reply-To: <131A385F21AAD311BD6400902763781D01DB253F@Z8> References: <131A385F21AAD311BD6400902763781D01DB253F@Z8> Message-ID: <000601c2e3c1$3febb380$0400a8c0@squarebox.com> Hi Brad, I notice that in your V config you have your doc route set to /usr/local/nagios and not usr/local/nagios/share and you have a + in front of Options +ExecCGI Here is my v config for my nagios server at demo.square-box.com. All my apache and nagios config files live there for everyone to see. Its at http://demo.square-box.com and the running site is at nagios.square-box.com Hope this helps Tom Welsh twelsh at square-box.com ####################################################### ####################################################### ## ## nagios.somedomain.net definition ## ####################################################### ####################################################### #Site that shows full Nagios Demo Config's ## Script aliases for Nagios scrip aliases. they live ## in /usr/local/nagios/sbin/ NameVirtualHost 10.10.10.10:80 ServerAdmin webmaster at somedomain.com DocumentRoot /usr/local/nagios/share ServerName nagios.somedomain,com ServerAlias anothername.somedomain.com ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all ## Setup alias for /nagios/ to point to ## /usr/local/nagios/share/ Alias /nagios/ /usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all ########################################################## ## Web server authentication for ## /usr/local/nagios/sbin Nagios cgi scripts ## /usr/local/nagios/share Nagios HTML pages ########################################################## AllowOverride AuthConfig order allow,deny allow from all Options ExecCGI AllowOverride AuthConfig order allow,deny allow from all Allow Order allow,deny Allow from all -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Brad Dunn Sent: 06 March 2003 06:37 To: 'nagios-users at lists.sourceforge.net' Subject: [Nagios-users] CGI execute Hello there, I'm currently going over someone's Nagios server and have come across a problem. this is a fairly simple problem I'm sure and I'm fairly certain I've made just a simple typo, but I've read as much Nagios documentation as I can in regards to this but I'm just having an issue getting the CGI's working on the nagios site. Note that my nagios is all working fine and monitoring no worries, its just the site CGI's that don't seem to work. I have a fairly good suspicion that I've just got one of the script alias's wrong or something like that. Once again apologies for the lame help request. OS: Debian Version NFO: Nagios 1.0 Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 11-24-2002 Error: When I run the CGI's from the web interface I get an internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request This is my vhost for apache ServerName nagios.domain.com.au ServerAdmin helpdesk at domain.com.au DocumentRoot /usr/local/nagios User nagios Group nagios Alias /nagios/ usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all Errorlog logs/nagios-web.error CustomLog logs/nagios-web.access common Options +ExecCGI ScriptAlias /cgi-bin/nagios/ /usr/local/nagios/cgi/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all This is from CGI.CFG in /usr/local/nagios/etc physical_html_path=/usr/local/nagios/share url_html_path=/nagios The nagiosadmin user I've got does have access to the CGI's (execute and everything. I even just did a 777 to make sure at one point). My cgi's etc are also located in /usr/local/nagios.cgi Makefile avail.cgi cmd.cgi extinfo.c history.c notifications.cgi showlog.c statuswml.cgi tac.cgi Makefile.in cgiutils.c config.c extinfo.cgi history.cgi outages.c showlog.cgi statuswrl.c trends.c auth.c cgiutils.h config.cgi getcgi.c lifo.c outages.cgi status.c statuswrl.cgi auth.h cgiutils.h.in edata.c getcgi.h lifo.h popen.c status.cgi summary.c auth.o cgiutils.o edata.h getcgi.o lifo.o popen.h statusmap.c summary.cgi avail.c cmd.c edata.o histogram.c notifications.c popen.o statuswml.c tac.c If anyone's got any idea on where my problem might be, or any idea's on what to verify my configs against. That would be very much appreciated. Some times it just takes an outsider to point out a simple mistake. Thanks Brad ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jec at rptec.ch Thu Mar 6 10:42:00 2003 From: jec at rptec.ch (Jean-Eric Cuendet) Date: Thu, 06 Mar 2003 10:42:00 +0100 Subject: Changing of service not took into account Message-ID: <3E6717E8.2070103@rptec.ch> Sorry, I meant retain_state_information ... So it is: Is it retain_state_information instead of retain_nonstatus_information ? :-) -jec >Try setting "retain_nonstatus_information" in your service definition >to 0 and restart Nagios. > Is it retain_nonstatus_information instead of retain_nonstatus_information ? -jec ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -- Jean-Eric Cuendet Riskpro Technologies SA Av du 14 avril 1b, 1020 Renens Switzerland Principal: +41 21 637 0110 Fax: +41 21 637 01 11 Direct: +41 21 637 0123 E-mail: jean-eric.cuendet at rptec.ch http://www.rptec.ch -------------------------------------------------------- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 6 10:58:58 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 06 Mar 2003 10:58:58 +0100 Subject: Changing of service not took into account References: <3E6717E8.2070103@rptec.ch> Message-ID: <3E671BE2.B07172E3@gcc.dhl.com> What I said: "retain_nonstatus_information" should be changed to 0. Just see if it works. My 2 cents... Jean-Eric Cuendet wrote: > > Sorry, I meant retain_state_information ... > So it is: > Is it > retain_state_information > instead of > retain_nonstatus_information > ? > > :-) > -jec > > >Try setting "retain_nonstatus_information" in your service definition > >to 0 and restart Nagios. > > > Is it > retain_nonstatus_information > instead of > retain_nonstatus_information > ? > > -jec > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > -- > Jean-Eric Cuendet > Riskpro Technologies SA > Av du 14 avril 1b, 1020 Renens Switzerland > Principal: +41 21 637 0110 Fax: +41 21 637 01 11 > Direct: +41 21 637 0123 > E-mail: jean-eric.cuendet at rptec.ch > http://www.rptec.ch > -------------------------------------------------------- > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From frankie at etsetb.upc.es Thu Mar 6 11:04:15 2003 From: frankie at etsetb.upc.es (Francesc Guasch) Date: Thu, 06 Mar 2003 11:04:15 +0100 Subject: RedHat 8.0 snmp In-Reply-To: <3E670DD5.7070001@etsetb.upc.es> References: <3E670DD5.7070001@etsetb.upc.es> Message-ID: <3E671D1F.7070506@etsetb.upc.es> Francesc Guasch wrote: > Subhendu Ghosh wrote: > >> On Wed, 5 Mar 2003, Francesc Guasch wrote: >> >> >>> I'm trying to use the snmp plugin but I think it won't >>> work in RedHat 8.0. > > >> What version of check_snmp - it was fixed prior to the 1.3 release... >> > > check_snmp (nagios-plugins 1.3.0-alpha1) 1.3 > I downloaded the latest tgz plugins and it doesn't crash. Anyway I always get returned 0K of net load. I'm using the apan plugins and after debugging it I found this check: #check_snmp -H SERVER -o .1.3.6.1.2.1.2.2.1.10.2 .1.3.6.1.2.1.2.2.1.16.2 SNMP OK - 0 I'm new to snmp so I've been reading for a while. I've found a lot of information about it and I'm overwhelmed. I don't know if I need any MIB just for check the net usage. Anyway I read I maybe need it, so I got this: ftp://ftp.cisco.com/pub/mibs/v1/OLD-CISCO-INTERFACES-MIB.my but now I see my net-snmp package doesn't have any .my file. I'm clueless. Am I going the right way ? Have I missed something ? -- frankie ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Thu Mar 6 11:47:49 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Thu, 6 Mar 2003 11:47:49 +0100 (CET) Subject: Pb with passive service check Message-ID: <20030306104749.76600.qmail@web10903.mail.yahoo.com> Hello, I don't manage to get my passive check service working, it's still being in pending state... I have defined a passive service to check SNMP traps. In services.cfg i have added the following service : define service { host_name UOF35 service_description Trap_test is_volatile 1 active_checks_enabled 0 passive_check_enabled 1 max_check_attempts 1 contact_groups nagios-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_period 24x7 normal_check_interval 2 max_check_attempts 1 retry_check_interval 1 check_command check_none } with the following check_none command defined in checkcommands.cfg define command { command_name check_none command_line $USER1$/check_none (it's a dummy script that just return 0) } Is it a good passive service check definition ? How does Nagios link the service and the result submitted by nsca ? with the service_description in $NAGIOS_PATH/var/rw/nagios.cmd ? Please help, i'm so confused with passive checks. Steve ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Thu Mar 6 12:37:53 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 06 Mar 2003 06:37:53 -0500 Subject: RedHat 8.0 snmp In-Reply-To: <3E670DD5.7070001@etsetb.upc.es> References: <3E670DD5.7070001@etsetb.upc.es> Message-ID: <1046950673.12509.9.camel@miles.debisschop.net> On Thu, 2003-03-06 at 03:59, Francesc Guasch wrote: > Subhendu Ghosh wrote: > > On Wed, 5 Mar 2003, Francesc Guasch wrote: > > > > > >>I'm trying to use the snmp plugin but I think it won't > >>work in RedHat 8.0. > > > What version of check_snmp - it was fixed prior to the 1.3 release... > > > > check_snmp (nagios-plugins 1.3.0-alpha1) 1.3 Alpha 1? That's rather long on the tooth. So I assume you will dump that in favor of the actual release, then get back to us if you still have problems. -- Karl ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Thu Mar 6 12:33:21 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 06 Mar 2003 06:33:21 -0500 Subject: RedHat 8.0 snmp In-Reply-To: <3E671D1F.7070506@etsetb.upc.es> References: <3E670DD5.7070001@etsetb.upc.es> <3E671D1F.7070506@etsetb.upc.es> Message-ID: <1046950401.12524.2.camel@miles.debisschop.net> On Thu, 2003-03-06 at 05:04, Francesc Guasch wrote: > Francesc Guasch wrote: > > I downloaded the latest tgz plugins and it doesn't crash. > Anyway I always get returned 0K of net load. I'm using the > apan plugins and after debugging it I found this check: > > #check_snmp -H SERVER -o .1.3.6.1.2.1.2.2.1.10.2 .1.3.6.1.2.1.2.2.1.16.2 > SNMP OK - 0 You need to specify warning/critical thresholds. If you don't, and check_snmp successfully gets the result you asked for, it assumes everything is OK. > I'm new to snmp so I've been reading for a while. I've found > a lot of information about it and I'm overwhelmed. > > I don't know if I need any MIB just for check the net > usage. Anyway I read I maybe need it, so I got this: > > ftp://ftp.cisco.com/pub/mibs/v1/OLD-CISCO-INTERFACES-MIB.my > > but now I see my net-snmp package doesn't have any .my file. You can use the numbers without the MIB. -- Karl ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Thu Mar 6 12:59:36 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Thu, 6 Mar 2003 11:59:36 -0000 Subject: Can't compile plugins - undefined reference to `getloadavg' Message-ID: <53104E20A25CD411B556009027E50636064D53F0@pnnemp02.pn.egg.com> David, Couple of things to try: - can you send the configure output and the config.log file - what version of gcc? - create a little c file called t.c: char getloadavg(); int main() { getloadavg() ; return 0; } and run: gcc -c t.c gcc t.o lib/libnagiosplug.a Do you still get the getloadavg missing? - try: "gcc t.o lib/getloadavg.o". If this works, it suggests the ar file is not being created correctly - download GNU fileutils package which contains getloadavg: http://ftp.gnu.org/gnu/fileutils/fileutils-4.1.tar.gz. With their compiled version of getloadavg.o, can gcc work against that? Ton > -----Original Message----- > From: David Gurr [SMTP:davidgu at yahoo.com] > Sent: Wednesday, March 05, 2003 3:04 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Can't compile plugins - undefined reference > to `getloadavg' > > I'm trying to install the plugins on an old Caldera > OpenLinux 2.3 system, with a view to also installing > nrpe. > > I've unpacked the nagios-plugins-1.3.0-beta3 tarball, > and successfully run configure. When I do "make all", > it fails on building check_load with the following > error: > > gcc -g -O2 -L. -o check_load check_load.o utils.o > ../lib/libnagiosplug.a popen.o -lutil > check_load.o: In function `main': > /tmp/nagios-plugins-1.3.0-beta3/plugins/check_load.c:80: > undefined reference to `getloadavg' > make[1]: *** [check_load] Error 1 > > Earlier, the libnagiosplug.a library seemed to get > built OK: > > gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins > -I../plugins -I../plugins -I../plugins -I../plugins > -I. -g -O2 -c getopt.c > gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins > -I../plugins -I../plugins -I../plugins -I../plugins > -I. -g -O2 -c getopt1.c > gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins > -I../plugins -I../plugins -I../plugins -I../plugins > -I. -g -O2 -c getloadavg.c > rm -f libnagiosplug.a > ar cru libnagiosplug.a getopt.o getopt1.o getloadavg.o > ranlib libnagiosplug.a > > Any suggestions? > > Thx > > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The > debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Thu Mar 6 13:23:53 2003 From: KreigD at webex.com (Kreig Dubose) Date: Thu, 6 Mar 2003 04:23:53 -0800 Subject: Return Code 127 Message-ID: I'm seeing this error in Service Status Details while using check_nrpe. from CLI: [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c check_users -to 10 USERS OK - 2 users currently logged in [kreigd at goclnx1 libexec]$ However in status detail it shows: (Return code of 127 is out of bounds - plugin may be missing) I have no idea what status code 127 is, or what it's referring to as to how it's missing? As you can see it works from the CLI. Here's the log message it keeps spewing [1046945879] Warning: Return code of 127 for check of service 'check_users' on host 'goclnx2' was out of bounds. Make sure the plugin you're trying to run actually exists. I've tried this across different servers (as above) and on the local nagios machine with the same results. TIA Kreig ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Thu Mar 6 13:28:41 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 06 Mar 2003 07:28:41 -0500 Subject: Can't compile plugins - undefined reference to `getloadavg' In-Reply-To: <53104E20A25CD411B556009027E50636064D53F0@pnnemp02.pn.egg.com> References: <53104E20A25CD411B556009027E50636064D53F0@pnnemp02.pn.egg.com> Message-ID: <1046953721.12509.18.camel@miles.debisschop.net> On Thu, 2003-03-06 at 06:59, Voon, Ton wrote: > David, Did you try the release rather than beta 3? -- Karl > Couple of things to try: > - can you send the configure output and the config.log file > - what version of gcc? > - create a little c file called t.c: > char getloadavg(); > > int main() { > getloadavg() > ; return 0; } > > and run: > gcc -c t.c > gcc t.o lib/libnagiosplug.a > > Do you still get the getloadavg missing? > - try: "gcc t.o lib/getloadavg.o". If this works, it suggests the ar file is > not being created correctly > - download GNU fileutils package which contains getloadavg: > http://ftp.gnu.org/gnu/fileutils/fileutils-4.1.tar.gz. With their compiled > version of getloadavg.o, can gcc work against that? > > Ton > > > -----Original Message----- > > From: David Gurr [SMTP:davidgu at yahoo.com] > > Sent: Wednesday, March 05, 2003 3:04 PM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] Can't compile plugins - undefined reference > > to `getloadavg' > > > > I'm trying to install the plugins on an old Caldera > > OpenLinux 2.3 system, with a view to also installing > > nrpe. > > > > I've unpacked the nagios-plugins-1.3.0-beta3 tarball, > > and successfully run configure. When I do "make all", > > it fails on building check_load with the following > > error: > > > > gcc -g -O2 -L. -o check_load check_load.o utils.o > > ../lib/libnagiosplug.a popen.o -lutil > > check_load.o: In function `main': > > /tmp/nagios-plugins-1.3.0-beta3/plugins/check_load.c:80: > > undefined reference to `getloadavg' > > make[1]: *** [check_load] Error 1 > > > > Earlier, the libnagiosplug.a library seemed to get > > built OK: > > > > gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins > > -I../plugins -I../plugins -I../plugins -I../plugins > > -I. -g -O2 -c getopt.c > > gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins > > -I../plugins -I../plugins -I../plugins -I../plugins > > -I. -g -O2 -c getopt1.c > > gcc -DHAVE_CONFIG_H -I. -I. -I../plugins -I../plugins > > -I../plugins -I../plugins -I../plugins -I../plugins > > -I. -g -O2 -c getloadavg.c > > rm -f libnagiosplug.a > > ar cru libnagiosplug.a getopt.o getopt1.o getloadavg.o > > ranlib libnagiosplug.a > > > > Any suggestions? > > > > Thx > > > > > > __________________________________________________ > > Do You Yahoo!? > > Everything you'll ever need on one web page > > from News and Sport to Email and Music Charts > > http://uk.my.yahoo.com > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of TotalView, The > > debugger > > for complex code. Debugging C/C++ programs can leave you feeling lost and > > disoriented. TotalView can help you find your way. Available on major UNIX > > > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > This private and confidential e-mail has been sent to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd (registered > no. 3319027) and Egg Investments Ltd (registered no. 3403963) which > carries out investment business on behalf of Egg and is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail and have > received it in error, please notify the sender by replying with > 'received in error' as the subject and then delete it from your > mailbox. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ejl at man.fwltech.com Thu Mar 6 13:50:02 2003 From: ejl at man.fwltech.com (Ewan Leith) Date: Thu, 6 Mar 2003 12:50:02 -0000 Subject: Return Code 127 Message-ID: <1012BD903945D411915500105A48FF57F06962@nt.man.fwltech.com> Return code 127 normally means it either can't find the plugin or it doesn't have permission to run it - check that the nagios user gets a valid response from the command line, and if it does, then check that your command.cfg has the location of the file set correctly. Ewan > -----Original Message----- > From: Kreig Dubose [mailto:KreigD at webex.com] > Sent: 06 March 2003 12:24 > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Return Code 127 > > > I'm seeing this error in Service Status Details while using > check_nrpe. > > from CLI: > [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c > check_users -to 10 > USERS OK - 2 users currently logged in > [kreigd at goclnx1 libexec]$ > > However in status detail it shows: > (Return code of 127 is out of bounds - plugin may be missing) > > I have no idea what status code 127 is, or what it's > referring to as to how > it's missing? As you can see it works from the CLI. Here's > the log message > it keeps spewing > > [1046945879] Warning: Return code of 127 for check of service > 'check_users' > on host 'goclnx2' was out of bounds. Make sure the plugin > you're trying to > run actually exists. > > > I've tried this across different servers (as above) and on > the local nagios > machine with the same results. > > TIA > > Kreig > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at lists.netways.de Thu Mar 6 15:10:27 2003 From: nagios-users at lists.netways.de (nagios-users) Date: Thu, 6 Mar 2003 15:10:27 +0100 Subject: Modifications of right bar Message-ID: <3626546DC152134382A0A029C29365C6076A0A@net-mail.int.netways.de> Hi ! As I discovered on the page of http://apan.sourceforge.net/ in the screenshot -> there Is a nice modification of the right bar in cgi; displaying Groups under the the service detail button.... Is this a patch or just a modified version ? Thankx Nik ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hermann.mueller at oasy.de Thu Mar 6 16:09:59 2003 From: hermann.mueller at oasy.de (=?iso-8859-1?Q?Hermann_M=FCller?=) Date: Thu, 6 Mar 2003 16:09:59 +0100 Subject: Problem on Host State Information References: <3E670DD5.7070001@etsetb.upc.es> <3E671D1F.7070506@etsetb.upc.es> Message-ID: <001d01c2e3f2$786e23b0$152ea8c0@rumpelkammer> I still have the Problem that Nagios tells me that the Host ist down (red) even if all Services are up (green) and running. I dont have any ideas why nagios behave like that. I would be very greatful if anyone could help me on this It is very important.. Thanks Hermann PS: Tell me wich further informations or .cfg files you need to localize the Problem ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From julien.touche at lycos.com Thu Mar 6 16:26:16 2003 From: julien.touche at lycos.com (julien Touche) Date: Thu, 06 Mar 2003 16:26:16 +0100 Subject: nagios + chroot (test on openbsd) Message-ID: <3E676898.1010504@lycos.com> on openbsd 3.3-beta, i'm trying to get nagios working with chroot apache as cgi-bin (normally in sbin) use same conf files as nagios daemon, i must have same path in the two and also chroot nagios (maybe try to duplicate conf files, idea ?) on openbsd, apache is in /var/www i choose to install in /var/www/users/nagios for daemon/etc/... and /var/www/htdocs/nagios for share/sbin/libexec i compile in static nagios/cgi-bin & plugins (mainly thanks to benny patch) i need to change cgi/Makefile path (erase /var/www part) as path is hard coded in for compile (and return normal for make install) and in common/locations.h. and few changes in cfg files i can start nagios in chroot, but two problems i have not find solution for the moment all plugins return in nagios.log --- [1046955533] Warning: Return code of 127 for check of service 'SSH' on host 'toto' was out of bounds. Make sure the plugin you're trying to run actually exists --- path is good and when i chroot a root shell in /var/www, i can execute them check_ssh need /etc/protocols: ok check_dns: segmentation fault check_tcp complains about /etc/protocols, but works check_disk is no more check_ups ok others later. second tac.cgi return in browser binary data with --- Failure reading ld.so Bad magic: ld.so Cannot map ld.so crt0: update /usr/libexec/ld.so ld.so failed --- and some binary between and html code too nagios is static, nothing change when i add a ld.so in chroot and for fun trying to ktrace it (always in chroot) gives a core with 22023 ktrace RET ktrace 0 22023 ktrace CALL execve(0xcfbfdb0f,0xcfbfda98,0xcfbfdaa0) 22023 ktrace NAMI "/usr/libexec/ld.so" 22023 ld.so EMUL "native" 22023 ld.so RET execve 0 22023 ld.so PSIG SIGSEGV SIG_DFL code 1 addr=0x20 trapno=1 22023 ld.so PSIG SIGSEGV SIG_DFL code 0 addr=0x0 trapno=0 22023 ld.so NAMI "ld.so.core" in chroot shell, normal response, but Error: Could not open main config file '/opt/nagios/etc/nagios.cfg' (before it doesn't find cgi.cfg, but correct with common/locations.h) /opt/nagios was the place were i install before testing chroot but which is no more used bash-2.05b$ grep "/opt" /tmp2/nagios/nagios-1.0/* /tmp2/nagios/nagios-1.0/functions:PATH=/opt/gnu/bin:/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin so i don't know where it comes from. Regards Julien Note: also, nagios, started with chroot -u nagios -g nagios $ChrootBase, complains about it cannot change uid/gid, but doesn't matter a lot Note2: please cc. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Thu Mar 6 16:32:36 2003 From: briank at nacs.net (Brian Kosick) Date: Thu, 06 Mar 2003 10:32:36 -0500 Subject: NRPE: Unable to read output Message-ID: <3E676A14.5030208@nacs.net> Hello All, This is my first post to the list regarding Nagios, I find it a very powerfull package so good work everyone. I have setup a central nagios server, and installed the nrpe damon on a remote box. All of my checks via NRPE go great except for 1 a NFS check.here's my nrpe.cfg entries command[check_users]=/usr/lib/nagios/plugins/check_users -w 5 -c 10 command[check_load]=/usr/lib/nagios/plugins/check_load -w 15,10,5 -c 30,25,20 command[check_disk1]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/sda1 command[check_disk5]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/sda5 command[check_disk6]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/sda6 command[check_disk7]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/sda7 command[check_disk8]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/sda8 command[check_zombie_procs]=/usr/lib/nagios/plugins/check_procs -w 5 -c 10 -s Z command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 150 -c 200 command[check_local_nfs]=/usr/lib/nagios/plugins/check_rpc -H localhost -C nfs I can run the check_local_nfs from the command line and get OK - RPC program nfs version 2 version 3 udp running When I do it via NRPE from the nagios server, I get ./check_nrpe -H XXX.XXX.XXX.XXX. -c check_local_nfs NRPE: Unable to read output (The IP address has been modified to protect the innocent ;-) ) All of my other command on the remote box work great, except for this one. Any Ideas?? ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Thu Mar 6 16:51:21 2003 From: benny at bennyvision.com (C. Bensend) Date: Thu, 6 Mar 2003 09:51:21 -0600 Subject: nagios + chroot (test on openbsd) In-Reply-To: <3E676898.1010504@lycos.com>; from julien.touche@lycos.com on Thu, Mar 06, 2003 at 04:26:16PM +0100 References: <3E676898.1010504@lycos.com> Message-ID: <20030306095121.C31506@bennyvision.com> On Thu, Mar 06, 2003 at 04:26:16PM +0100, julien Touche wrote: > > on openbsd 3.3-beta, i'm trying to get nagios working with chroot apache Hey Julien, I don't have any advice for you right now, but I'm planning on starting to work on the chroot stuff this weekend. I've got a mostly-functional port done for OpenBSD without the chroot, so logically, the next part is tackling it _with_. I'll let you know! Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mmcclure at pneservices.com Thu Mar 6 17:06:58 2003 From: mmcclure at pneservices.com (Mike McClure) Date: Thu, 6 Mar 2003 10:06:58 -0600 (CST) Subject: nagios + chroot (test on openbsd) In-Reply-To: <3E676898.1010504@lycos.com> References: <3E676898.1010504@lycos.com> Message-ID: <2236.192.168.1.9.1046966818.squirrel@xyzzy.homeip.net> Julien, I just finished successfully installing Nagios into a chroot'ed Apache on OpenBSD 3.2. My suggestion: Don't do it. Run Apache as non-chroot. It's just not worth it, because there are a TON of problems you have to overcome. It took me many many hours to solve them all. The security gained just isn't worth the time, IMHO. On another note, why are you running this on 3.3-current? Bad idea for a production system, my friend. Run 3.2-stable. Anyway, if you still insist on doing it, remember that you have TWO root file systems. One is under /var/www/, the other is under /. The stuff that runs from the daemon, such as the plugins, see / as the root. The CGIs see /var/www/ as the root. Part of my solution was to make a /var/www/var/www/ -> /var/www symbolic link. That helped fix a lot of the plugin problems. Also, use ldd to find out what shared libraries you need for anything that isn't fully static. It sounds like your CGIs are definitely not static. FWIW, I did not compile anything statically, all the shared libs are under /var/www/ HTH, - Mike > > on openbsd 3.3-beta, i'm trying to get nagios working with chroot apache > > as cgi-bin (normally in sbin) use same conf files as nagios daemon, i > must have same path in the two and also chroot nagios (maybe try to > duplicate conf files, idea ?) > > on openbsd, apache is in /var/www > i choose to install in /var/www/users/nagios for daemon/etc/... > and /var/www/htdocs/nagios for share/sbin/libexec > > i compile in static nagios/cgi-bin & plugins (mainly thanks to benny patch) > i need to change cgi/Makefile path (erase /var/www part) as path is hard > coded in for compile (and return normal for make install) and in > common/locations.h. > and few changes in cfg files > i can start nagios in chroot, but two problems i have not find solution > for the moment > > all plugins return in nagios.log > --- > [1046955533] Warning: Return code of 127 for check of service 'SSH' on > host 'toto' was out of bounds. > Make sure the plugin you're trying to run actually exists > --- > > path is good and when i chroot a root shell in /var/www, i can execute them > check_ssh need /etc/protocols: ok > check_dns: segmentation fault > check_tcp complains about /etc/protocols, but works > check_disk is no more > check_ups ok > others later. > > > second > tac.cgi return in browser binary data with > --- > Failure reading ld.so > Bad magic: ld.so > Cannot map ld.so > crt0: update /usr/libexec/ld.so > ld.so failed > --- > and some binary between and html code too > > nagios is static, nothing change when i add a ld.so in chroot and for > fun trying to ktrace it (always in chroot) gives a core with > 22023 ktrace RET ktrace 0 > 22023 ktrace CALL execve(0xcfbfdb0f,0xcfbfda98,0xcfbfdaa0) > 22023 ktrace NAMI "/usr/libexec/ld.so" > 22023 ld.so EMUL "native" > 22023 ld.so RET execve 0 > 22023 ld.so PSIG SIGSEGV SIG_DFL code 1 addr=0x20 trapno=1 > 22023 ld.so PSIG SIGSEGV SIG_DFL code 0 addr=0x0 trapno=0 > 22023 ld.so NAMI "ld.so.core" > > in chroot shell, normal response, but > Error: Could not open main config file '/opt/nagios/etc/nagios.cfg' > (before it doesn't find cgi.cfg, but correct with common/locations.h) > > /opt/nagios was the place were i install before testing chroot but which > is no more used > bash-2.05b$ grep "/opt" /tmp2/nagios/nagios-1.0/* > /tmp2/nagios/nagios-1.0/functions:PATH=/opt/gnu/bin:/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin > > so i don't know where it comes from. > > > Regards > > Julien > > Note: also, nagios, started with chroot -u nagios -g nagios $ChrootBase, > complains about it cannot change uid/gid, but doesn't matter a lot > > Note2: please cc. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any > issue. > ::: Messages without supporting info will risk being sent to /dev/null > > -- Mike McClure, CCIE # 5125, CISSP # 30232 PNE Services, Inc. - http://www.pneservices.com mmcclure at pneservices.com mobile: 913-636-5590 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DFinn at studentadvantage.com Thu Mar 6 17:42:25 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Thu, 6 Mar 2003 11:42:25 -0500 Subject: problems using check_snmp to monitor sendmail Message-ID: <80C364880EDAD511BE39009027B0DCB80434506A@RAINBOW2> I'm having issues trying to implement check_snmp to monitor the status of sendmail. Your first question is why am I not just using check_smtp, it's because all the mail servers that I need to implement this on only listen on 127.0.0.1:25. I've enabled the MIB or OID in snmpd.conf on the test box and that appears to be working fine: [root at sadqalx38 plugins]# snmpwalk -v 1 l52m-be sapublic .1.3.6.1.4.1.2021.2 enterprises.ucdavis.prTable.prEntry.prIndex.1 = 1 enterprises.ucdavis.prTable.prEntry.prNames.1 = sendmail enterprises.ucdavis.prTable.prEntry.prMin.1 = 1 enterprises.ucdavis.prTable.prEntry.prMax.1 = 10 enterprises.ucdavis.prTable.prEntry.prCount.1 = 2 enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 = 0 enterprises.ucdavis.prTable.prEntry.prErrMessage.1 = enterprises.ucdavis.prTable.prEntry.prErrFix.1 = 0 enterprises.ucdavis.prTable.prEntry.prErrFixCmd.1 = [root at sadqalx38 plugins]# snmpwalk -v 1 -On l52m-be sapublic .1.3.6.1.4.1.2021.2 .1.3.6.1.4.1.2021.2.1.1.1 = 1 .1.3.6.1.4.1.2021.2.1.2.1 = sendmail .1.3.6.1.4.1.2021.2.1.3.1 = 1 .1.3.6.1.4.1.2021.2.1.4.1 = 10 .1.3.6.1.4.1.2021.2.1.5.1 = 3 .1.3.6.1.4.1.2021.2.1.100.1 = 0 .1.3.6.1.4.1.2021.2.1.101.1 = .1.3.6.1.4.1.2021.2.1.102.1 = 0 .1.3.6.1.4.1.2021.2.1.103.1 = So, it appears I can either monitor enterprises.ucdavis.prTable.prEntry.prCount.1 which lists the number of sendmail processes running or enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 which is 0 when sendmail is running or 1 when it's either not running or there are more procs running than what you've specified acceptible (10 in this case). Here's the problem I'm having with the snmp_check program. It always reports back that it's either at a WARNING state or a CRITICAL state. [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic SNMP WARNING - 1 Am I doing something wrong. Shouldn't it return OK because the value it's returning is between 1 and 10? Now if I change the warning and critical threshholds to be outside of what it's returning I get : [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic SNMP CRITICAL - *1* I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this system and I still have the same problem. If anyone could help that would be great. Also, I'm not subscribed to this list so if you could reply to me via email that would be great. Thanks Dan Finn Unix Systems Administrator Student Advantage Inc dfinn at studentadvantage.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Thu Mar 6 18:18:46 2003 From: benny at bennyvision.com (C. Bensend) Date: Thu, 6 Mar 2003 11:18:46 -0600 Subject: nagios + chroot (test on openbsd) In-Reply-To: <2236.192.168.1.9.1046966818.squirrel@xyzzy.homeip.net>; from mmcclure@pneservices.com on Thu, Mar 06, 2003 at 10:06:58AM -0600 References: <3E676898.1010504@lycos.com> <2236.192.168.1.9.1046966818.squirrel@xyzzy.homeip.net> Message-ID: <20030306111846.A5505@bennyvision.com> On Thu, Mar 06, 2003 at 10:06:58AM -0600, Mike McClure wrote: > > On another note, why are you running this on 3.3-current? Bad idea for a production > system, my friend. Run 3.2-stable. I'm guessing he's running -CURRENT (as I am) because we're working on ports. Porters _should_ be running -CURRENT. Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Hagen_Deike at icon-scm.com Thu Mar 6 18:36:46 2003 From: Hagen_Deike at icon-scm.com (Hagen Deike) Date: Thu, 6 Mar 2003 18:36:46 +0100 Subject: Help NRPE 1.8 won't work Message-ID: <7E47A0E20913514C8F4CD1BC241A37030A4508@serv-075.icon-germany.local> Hi all, I need a little help on nrpe 1.8 I Installed nrpe on a Linux Box running Nagios and a HP/UX Server with the nrpe daemon. On the HP/UX Server the nrpe exec is installed in /usr/sbin. Path is set correct. The config file is in /usr/local/nagios/etc/nrpe.cfg nrpe is loaded in inetd.conf nrpe stream tcp nowait daemon /usr/sbin/nrpe -c /usr/local/nagios/etc/nrpe.cfg --inetd If I open a telnet to the server on port 5666 I get a message back from nrpe. There is a entry in nrpe.cfg for following command command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20 Running the plugin on the shell is OK $ /usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20 OK - load average: 0.06, 0.10, 0.20 But as soon as I try to use the check_nrpe plugin I get an error... me at mon:/usr/lib/nagios/plugins> ./check_nrpe -H 10.x.x.x -c check_load CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? What's wrong with it??? Regards, Hagen Deike ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 6 18:43:56 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 6 Mar 2003 11:43:56 -0600 Subject: problems using check_snmp to monitor sendmail Message-ID: I can't comment on the SNMP approach, but I'm curious: Do you need to have sendmail listening on socket 127.0.0.1:25? I usually disable the listen functionality of sendmail for outbound-only hosts. Alternatively, if you're going to have sendmail listen on port 25 at all, you could permit connections from your Nagios server. (I know, it would mean tweaking all the hosts that you're interested in monitoring....) Food for thought. jc > -----Original Message----- > From: Daniel Finn [mailto:DFinn at studentadvantage.com] > Sent: Thursday, March 06, 2003 10:42 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: [Nagios-users] problems using check_snmp to monitor sendmail > > > I'm having issues trying to implement check_snmp to monitor > the status of > sendmail. Your first question is why am I not just using > check_smtp, it's > because all the mail servers that I need to implement this on > only listen on > 127.0.0.1:25. > > I've enabled the MIB or OID in snmpd.conf on the test box and > that appears > to be working fine: > > [root at sadqalx38 plugins]# snmpwalk -v 1 l52m-be sapublic > .1.3.6.1.4.1.2021.2 > > enterprises.ucdavis.prTable.prEntry.prIndex.1 = 1 > enterprises.ucdavis.prTable.prEntry.prNames.1 = sendmail > enterprises.ucdavis.prTable.prEntry.prMin.1 = 1 > enterprises.ucdavis.prTable.prEntry.prMax.1 = 10 > enterprises.ucdavis.prTable.prEntry.prCount.1 = 2 > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrMessage.1 = > enterprises.ucdavis.prTable.prEntry.prErrFix.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrFixCmd.1 = > > [root at sadqalx38 plugins]# snmpwalk -v 1 -On l52m-be sapublic > .1.3.6.1.4.1.2021.2 > .1.3.6.1.4.1.2021.2.1.1.1 = 1 > .1.3.6.1.4.1.2021.2.1.2.1 = sendmail > .1.3.6.1.4.1.2021.2.1.3.1 = 1 > .1.3.6.1.4.1.2021.2.1.4.1 = 10 > .1.3.6.1.4.1.2021.2.1.5.1 = 3 > .1.3.6.1.4.1.2021.2.1.100.1 = 0 > .1.3.6.1.4.1.2021.2.1.101.1 = > .1.3.6.1.4.1.2021.2.1.102.1 = 0 > .1.3.6.1.4.1.2021.2.1.103.1 = > > > So, it appears I can either monitor > enterprises.ucdavis.prTable.prEntry.prCount.1 which lists the > number of > sendmail processes running or > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 which is 0 > when sendmail > is running or 1 when it's either not running or there are > more procs running > than what you've specified acceptible (10 in this case). > > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because > the value it's > returning is between 1 and 10? Now if I change the warning > and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could > help that would > be great. Also, I'm not subscribed to this list so if you > could reply to me > via email that would be great. > > Thanks > Dan Finn > Unix Systems Administrator > Student Advantage Inc > dfinn at studentadvantage.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 6 18:48:07 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 06 Mar 2003 12:48:07 -0500 (EST) Subject: problems using check_snmp to monitor sendmail In-Reply-To: <80C364880EDAD511BE39009027B0DCB80434506A@RAINBOW2> References: <80C364880EDAD511BE39009027B0DCB80434506A@RAINBOW2> Message-ID: On Thu, 6 Mar 2003, Daniel Finn wrote: > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because the value it's > returning is between 1 and 10? Now if I change the warning and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could help that would > be great. Also, I'm not subscribed to this list so if you could reply to me > via email that would be great. > The WARNING in the first case may be due to output on the stderr. Try the command with with "-m : " to prevent loading the mibs. -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 6 18:48:52 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 6 Mar 2003 14:48:52 -0300 Subject: Please - Notification by e-mail Message-ID: Please, anybody help me ? I can?t get to send notification by e-mail using "mail command" Some sugestion ? Thank you. Hugo Rebello ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Lane.Williams at jhuapl.edu Thu Mar 6 19:04:24 2003 From: Lane.Williams at jhuapl.edu (Williams, P. Lane) Date: Thu, 6 Mar 2003 13:04:24 -0500 Subject: check_cluster Message-ID: Has anyone successfully compiled the check_cluster plugin? If so, how? Thanks much, Lane ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ramog at starcalif.com Thu Mar 6 19:10:43 2003 From: ramog at starcalif.com (Rochel Amog) Date: Thu, 6 Mar 2003 10:10:43 -0800 Subject: check_http Message-ID: <002a01c2e40b$b3fcaf50$0d1fa8c0@sysadmin.starcalif.com> I'm just checking the http service on my 3 remote linux machines and I got the following results: command: ./check_http -I results on one Red Hat Linux 7.2: HTTP ok: HTTP/1.1 200 OK - 0.003 second response time |time= 0.003 results on two Red Hat Linux 8.0: HTTP warning: HTTP/1.1 403 Forbidden Can anybody tell me why it says "warning" on the two machines and how to check these machines to say "HTTP ok". I appreciate your help .. Thank You... Rochel Starcrest Products -------------- next part -------------- An HTML attachment was scrubbed... URL: From slebrun at muskoka.com Thu Mar 6 19:15:21 2003 From: slebrun at muskoka.com (Shayne Lebrun) Date: Thu, 6 Mar 2003 13:15:21 -0500 Subject: Help NRPE 1.8 won't work In-Reply-To: <7E47A0E20913514C8F4CD1BC241A37030A4508@serv-075.icon-germany.local> References: <7E47A0E20913514C8F4CD1BC241A37030A4508@serv-075.icon-germany.local> Message-ID: Have you thrown it into debugging mode and watched the errors in the syslog? Have you made sure that both the nrpe executable and the config file have the appropriate permissions? Have you done anything in the way of diagnosis? > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hagen > Deike > Sent: Thursday, March 06, 2003 12:37 PM > To: 'nagios-users at lists.sourceforge.net' > Subject: [Nagios-users] Help NRPE 1.8 won't work > > > Hi all, > > I need a little help on nrpe 1.8 > I Installed nrpe on a Linux Box running Nagios and a HP/UX Server with the > nrpe daemon. > > On the HP/UX Server the nrpe exec is installed in /usr/sbin. Path is set > correct. > The config file is in /usr/local/nagios/etc/nrpe.cfg > nrpe is loaded in inetd.conf > > nrpe stream tcp nowait daemon /usr/sbin/nrpe -c > /usr/local/nagios/etc/nrpe.cfg --inetd > > If I open a telnet to the server on port 5666 I get a message back from > nrpe. > There is a entry in nrpe.cfg for following command > > command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c > 30,25,20 > > Running the plugin on the shell is OK > > $ /usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20 > OK - load average: 0.06, 0.10, 0.20 > > But as soon as I try to use the check_nrpe plugin I get an error... > > me at mon:/usr/lib/nagios/plugins> ./check_nrpe -H 10.x.x.x -c check_load > CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? > > > What's wrong with it??? > > Regards, > Hagen Deike > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, > The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on > major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DFinn at studentadvantage.com Thu Mar 6 19:14:14 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Thu, 6 Mar 2003 13:14:14 -0500 Subject: problems using check_snmp to monitor sendmail Message-ID: <80C364880EDAD511BE39009027B0DCB80434506B@RAINBOW2> The way our mail app is setup we do need sendmail to listen on localhost:25 and only there. We've considered allowing the nagios server access to port 25 on each machine but it would mean tweaking the sendmail config on 50+ servers. At this point for ease of management it's much easier to have every server run the same sendmail.cf. -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Thursday, March 06, 2003 12:44 PM To: 'Daniel Finn'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] problems using check_snmp to monitor sendmail I can't comment on the SNMP approach, but I'm curious: Do you need to have sendmail listening on socket 127.0.0.1:25? I usually disable the listen functionality of sendmail for outbound-only hosts. Alternatively, if you're going to have sendmail listen on port 25 at all, you could permit connections from your Nagios server. (I know, it would mean tweaking all the hosts that you're interested in monitoring....) Food for thought. jc > -----Original Message----- > From: Daniel Finn [mailto:DFinn at studentadvantage.com] > Sent: Thursday, March 06, 2003 10:42 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: [Nagios-users] problems using check_snmp to monitor sendmail > > > I'm having issues trying to implement check_snmp to monitor > the status of > sendmail. Your first question is why am I not just using > check_smtp, it's > because all the mail servers that I need to implement this on > only listen on > 127.0.0.1:25. > > I've enabled the MIB or OID in snmpd.conf on the test box and > that appears > to be working fine: > > [root at sadqalx38 plugins]# snmpwalk -v 1 l52m-be sapublic > .1.3.6.1.4.1.2021.2 > > enterprises.ucdavis.prTable.prEntry.prIndex.1 = 1 > enterprises.ucdavis.prTable.prEntry.prNames.1 = sendmail > enterprises.ucdavis.prTable.prEntry.prMin.1 = 1 > enterprises.ucdavis.prTable.prEntry.prMax.1 = 10 > enterprises.ucdavis.prTable.prEntry.prCount.1 = 2 > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrMessage.1 = > enterprises.ucdavis.prTable.prEntry.prErrFix.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrFixCmd.1 = > > [root at sadqalx38 plugins]# snmpwalk -v 1 -On l52m-be sapublic > .1.3.6.1.4.1.2021.2 > .1.3.6.1.4.1.2021.2.1.1.1 = 1 > .1.3.6.1.4.1.2021.2.1.2.1 = sendmail > .1.3.6.1.4.1.2021.2.1.3.1 = 1 > .1.3.6.1.4.1.2021.2.1.4.1 = 10 > .1.3.6.1.4.1.2021.2.1.5.1 = 3 > .1.3.6.1.4.1.2021.2.1.100.1 = 0 > .1.3.6.1.4.1.2021.2.1.101.1 = > .1.3.6.1.4.1.2021.2.1.102.1 = 0 > .1.3.6.1.4.1.2021.2.1.103.1 = > > > So, it appears I can either monitor > enterprises.ucdavis.prTable.prEntry.prCount.1 which lists the > number of > sendmail processes running or > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 which is 0 > when sendmail > is running or 1 when it's either not running or there are > more procs running > than what you've specified acceptible (10 in this case). > > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because > the value it's > returning is between 1 and 10? Now if I change the warning > and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could > help that would > be great. Also, I'm not subscribed to this list so if you > could reply to me > via email that would be great. > > Thanks > Dan Finn > Unix Systems Administrator > Student Advantage Inc > dfinn at studentadvantage.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasmine.chua at securecirt.com Thu Mar 6 19:11:55 2003 From: jasmine.chua at securecirt.com (Jasmine) Date: Fri, 7 Mar 2003 02:11:55 +0800 Subject: not seeing passive results Message-ID: <200303070211.57068.jasmine.chua@securecirt.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi guys, Just wanna know what can cause nagios not to write passive check results to the main nagios.log file when I could see connection established on both sides when i do a netstat grabbing for port 5667. I have checked the configuration again but nothing seems to be wrong. - --Warmest Regards, Jasmine Chua Security Engineer SecureCiRT Pte Ltd Blk 750C Chai Chee Road #04-01 Technopark at ChaiChee Singapore 469003 Tel: 6243 6800 DID: 6243 6802 Fax: 6441 5119 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+Z49rNgvTa7Hj2AURAg9yAJ9WKQykNpnQH58sbhpjwx5+D9YHdwCcC0d2 Txe0MFJGI+g0GmmRlzvl31Q= =hec5 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Thu Mar 6 19:21:07 2003 From: briank at nacs.net (Brian Kosick) Date: Thu, 06 Mar 2003 13:21:07 -0500 Subject: Help NRPE 1.8 won't work In-Reply-To: <7E47A0E20913514C8F4CD1BC241A37030A4508@serv-075.icon-germany.local> References: <7E47A0E20913514C8F4CD1BC241A37030A4508@serv-075.icon-germany.local> Message-ID: <3E679193.20007@nacs.net> Make sure that you have edited the nrpe.cfg file correctly, it has a "Allow connections from this IP" variable. Hagen Deike wrote: >Hi all, > >I need a little help on nrpe 1.8 >I Installed nrpe on a Linux Box running Nagios and a HP/UX Server with the >nrpe daemon. > >On the HP/UX Server the nrpe exec is installed in /usr/sbin. Path is set >correct. >The config file is in /usr/local/nagios/etc/nrpe.cfg >nrpe is loaded in inetd.conf > > nrpe stream tcp nowait daemon /usr/sbin/nrpe -c >/usr/local/nagios/etc/nrpe.cfg --inetd > >If I open a telnet to the server on port 5666 I get a message back from >nrpe. >There is a entry in nrpe.cfg for following command > > command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c >30,25,20 > >Running the plugin on the shell is OK > > $ /usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20 > OK - load average: 0.06, 0.10, 0.20 > >But as soon as I try to use the check_nrpe plugin I get an error... > > me at mon:/usr/lib/nagios/plugins> ./check_nrpe -H 10.x.x.x -c check_load > CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? > > >What's wrong with it??? > >Regards, >Hagen Deike > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark at woodstream.net Thu Mar 6 19:15:19 2003 From: mark at woodstream.net (mark) Date: Thu, 6 Mar 2003 13:15:19 -0500 (EST) Subject: Distributed monitoring quirks Message-ID: Hi all, I'm setting up distributed monitoring and can't quite get the behavior I'm after. I'm guessing I just haven't hit on the right configuration but after a day of working on it I thought I'd ask the list. My environment uses a central server the recieves passive checks from a distributed server. The two servers are connected by a site-to-site VPN. This is important because it means the central monitor can not see the remote hosts being monitored. So host checks from the central monitor won't work if they are a ping. Now on with the problem description... I have the distributed monitoring server up and running fine. It is working as expected and sending updates to the central server fine. The problem I'm having is on the central server. If a remote service goes to hard critical, the distributed monitor picks it up fine. The central monitor recieves the event but the critical services shows up as "disabled". Further, if the remote host goes to hard critical (i.e. down), the distributed monitor also see's that fine. On the central server, I never see anything about the host being down .. not even a hint. Now, as for configurations. On the central monitor, a host looks like this # Generic host definition template define host{ name generic-host ; The name of this host template notifications_enabled 1 ;Host notifications are enabled event_handler_enabled 1 ;Host event handler is enabled flap_detection_enabled 1 ;Flap detection is enabled process_perf_data 1 ; Process performance data retain_status_information 1 ; Retain status information retain_nonstatus_information 1 ; Retain non-status info register 0 ; DONT REGISTER } # 'deathstar' host definition define host{ use generic-host ; Name of host template host_name deathstar alias deathstar.company.com address 10.1.1.1 max_check_attempts 10 notification_interval 120 notification_period 24x7 notification_options d,u,r } Note there is NO check_command definition. Because the central monitor can not see the remote hosts, I had to remove the check_command entry. Otherwise, each time a service had a problem, the central monitor would try to ping the remote host, fail, and mark the host as being down incorrectly. I have a feeling the lack of a check_command is why I never see remote hosts go down... even when the distributed monitor sees them go down. A service entry on the central monitor looks like this: define service{ name passive-service ; Template name active_checks_enabled 0 ; Disable Active checks passive_checks_enabled 1 ; Enable Passive checks parallelize_check 1 ; parallelize checks obsess_over_service 1 ; obsess over this svc check_freshness 1 ; check service fresh freshness_threshold 900 ; Stale if over 15 min. notifications_enabled 1 ; enable notification event_handler_enabled 1 ; enable event handler flap_detection_enabled 1 ; enable flap detection process_perf_data 1 ; Process performance data retain_status_information 1 ; Retain status info retain_nonstatus_information 1 ; Retain non-status info check_command no-passive-update ; if stale run this cmd register 0 ; DONT REGISTER THIS } # Service definition define service{ use passive-service ;template host_name mx1,mx2,mximc1 service_description SMTP is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups unix-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r } Note passive checks are enabled and active checks are disabled. I'm guessing a hard critical service shows up as "disabled" on the central server because the service definition has active checks disabled. The no-passive-update command simply echos a CRITICAL warning that the passive check is stale (as defined by freshness_threshold). So...does anyone have some ideas on how I can do distributed monitoring, in my situation where the central monitor can not see the remote hosts, have hard critical service events not show up as "disabled" and get critical host events to show up at all on the central monitor? Any and all input is greatly appreciated! Thanks, Mark ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Thu Mar 6 19:39:49 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Thu, 06 Mar 2003 13:39:49 -0500 (EST) Subject: check_http In-Reply-To: <002a01c2e40b$b3fcaf50$0d1fa8c0@sysadmin.starcalif.com> References: <002a01c2e40b$b3fcaf50$0d1fa8c0@sysadmin.starcalif.com> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- On 06-Mar-2003 Rochel Amog wrote: > Can anybody tell me why it says "warning" on the two machines and how to > check these machines to say "HTTP ok". Configure your web server so that your nagios machine is allowed to access it. - -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPmeV9FPEkLgodAWVAQE2SAQAm7KaORJPoJ04k/cBVrlMz345hrcrNygr 7bNmuTpAIoclzsagIoLYZJ0BrXAstCo7IsdaJXgSk58S9JODtLpxawf29SmGHToF mVCErCeI8G5o/DQSQB4Sywq++I3qsU6t7i0zOZU9V4sdw/m2BurPuxmWSYMNJ+IF IaVWDQnlxuE= =rEA5 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 6 19:22:43 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 6 Mar 2003 12:22:43 -0600 Subject: problems using check_snmp to monitor sendmail Message-ID: I'm not familiar with how sendmail manages the list of allowed connections, but if all the config files are identical, you could either push a single file to all your hosts from a trusted host (ie, 'gold server') using scp, or if you have a config server (rsync, cfengine) then you could change the file on the config server and let your machines update themselves. Managing large numbers of hosts has always been an issue. As always, I'll chant the mantra, and refer all to http://www.infrastructures.org . jc > -----Original Message----- > From: Daniel Finn [mailto:DFinn at studentadvantage.com] > Sent: Thursday, March 06, 2003 12:14 PM > To: Carroll, Jim P [Contractor]; Daniel Finn; > 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] problems using check_snmp to monitor > sendmail > > > The way our mail app is setup we do need sendmail to listen > on localhost:25 > and only there. We've considered allowing the nagios server > access to port > 25 on each machine but it would mean tweaking the sendmail > config on 50+ > servers. At this point for ease of management it's much > easier to have > every server run the same sendmail.cf. > > -----Original Message----- > From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] > Sent: Thursday, March 06, 2003 12:44 PM > To: 'Daniel Finn'; 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] problems using check_snmp to monitor > sendmail > > > I can't comment on the SNMP approach, but I'm curious: Do > you need to have > sendmail listening on socket 127.0.0.1:25? I usually disable > the listen > functionality of sendmail for outbound-only hosts. > Alternatively, if you're > going to have sendmail listen on port 25 at all, you could permit > connections from your Nagios server. (I know, it would mean > tweaking all > the hosts that you're interested in monitoring....) > > Food for thought. > > jc > > > > -----Original Message----- > > From: Daniel Finn [mailto:DFinn at studentadvantage.com] > > Sent: Thursday, March 06, 2003 10:42 AM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: [Nagios-users] problems using check_snmp to > monitor sendmail > > > > > > I'm having issues trying to implement check_snmp to monitor > > the status of > > sendmail. Your first question is why am I not just using > > check_smtp, it's > > because all the mail servers that I need to implement this on > > only listen on > > 127.0.0.1:25. > > > > I've enabled the MIB or OID in snmpd.conf on the test box and > > that appears > > to be working fine: > > > > [root at sadqalx38 plugins]# snmpwalk -v 1 l52m-be sapublic > > .1.3.6.1.4.1.2021.2 > > > > enterprises.ucdavis.prTable.prEntry.prIndex.1 = 1 > > enterprises.ucdavis.prTable.prEntry.prNames.1 = sendmail > > enterprises.ucdavis.prTable.prEntry.prMin.1 = 1 > > enterprises.ucdavis.prTable.prEntry.prMax.1 = 10 > > enterprises.ucdavis.prTable.prEntry.prCount.1 = 2 > > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 = 0 > > enterprises.ucdavis.prTable.prEntry.prErrMessage.1 = > > enterprises.ucdavis.prTable.prEntry.prErrFix.1 = 0 > > enterprises.ucdavis.prTable.prEntry.prErrFixCmd.1 = > > > > [root at sadqalx38 plugins]# snmpwalk -v 1 -On l52m-be sapublic > > .1.3.6.1.4.1.2021.2 > > .1.3.6.1.4.1.2021.2.1.1.1 = 1 > > .1.3.6.1.4.1.2021.2.1.2.1 = sendmail > > .1.3.6.1.4.1.2021.2.1.3.1 = 1 > > .1.3.6.1.4.1.2021.2.1.4.1 = 10 > > .1.3.6.1.4.1.2021.2.1.5.1 = 3 > > .1.3.6.1.4.1.2021.2.1.100.1 = 0 > > .1.3.6.1.4.1.2021.2.1.101.1 = > > .1.3.6.1.4.1.2021.2.1.102.1 = 0 > > .1.3.6.1.4.1.2021.2.1.103.1 = > > > > > > So, it appears I can either monitor > > enterprises.ucdavis.prTable.prEntry.prCount.1 which lists the > > number of > > sendmail processes running or > > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 which is 0 > > when sendmail > > is running or 1 when it's either not running or there are > > more procs running > > than what you've specified acceptible (10 in this case). > > > > > > Here's the problem I'm having with the snmp_check program. > It always > > reports back that it's either at a WARNING state or a > CRITICAL state. > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > > SNMP WARNING - 1 > > > > > > Am I doing something wrong. Shouldn't it return OK because > > the value it's > > returning is between 1 and 10? Now if I change the warning > > and critical > > threshholds to be outside of what it's returning I get : > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > > SNMP CRITICAL - *1* > > > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled > them for this > > system and I still have the same problem. If anyone could > > help that would > > be great. Also, I'm not subscribed to this list so if you > > could reply to me > > via email that would be great. > > > > Thanks > > Dan Finn > > Unix Systems Administrator > > Student Advantage Inc > > dfinn at studentadvantage.com > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of > > TotalView, The debugger > > for complex code. Debugging C/C++ programs can leave you > > feeling lost and > > disoriented. TotalView can help you find your way. Available > > on major UNIX > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent > to /dev/null > > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From phouse at ig.com.br Thu Mar 6 19:44:49 2003 From: phouse at ig.com.br (Renato) Date: Thu, 6 Mar 2003 15:44:49 -0300 Subject: nsca plugin example Message-ID: <005601c2e410$78cff720$020aa8c0@credicomm.com.br> Some person here of this list ja use plugin nsca If yes, it can pass an explanation of the functioning of this plugin. If possivel as to make this configuration with details. I used nrpe to monitor remote equipment, but I am needing to know as to use nsca, for the reason of the same one encryption the data. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From DFinn at studentadvantage.com Thu Mar 6 19:24:37 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Thu, 6 Mar 2003 13:24:37 -0500 Subject: problems using check_snmp to monitor sendmail Message-ID: <80C364880EDAD511BE39009027B0DCB80434506E@RAINBOW2> I just upgraded to 1.3beta1 of nagiosplug and I'm still seeing the same problem. Am I doing something wrong? I found an old email where someone was having the same problem I was and had to get the most latest version from cvs but I would think a fix like this would quickly make it's way into what I'm building. -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Thursday, March 06, 2003 12:44 PM To: 'Daniel Finn'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] problems using check_snmp to monitor sendmail I can't comment on the SNMP approach, but I'm curious: Do you need to have sendmail listening on socket 127.0.0.1:25? I usually disable the listen functionality of sendmail for outbound-only hosts. Alternatively, if you're going to have sendmail listen on port 25 at all, you could permit connections from your Nagios server. (I know, it would mean tweaking all the hosts that you're interested in monitoring....) Food for thought. jc > -----Original Message----- > From: Daniel Finn [mailto:DFinn at studentadvantage.com] > Sent: Thursday, March 06, 2003 10:42 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: [Nagios-users] problems using check_snmp to monitor sendmail > > > I'm having issues trying to implement check_snmp to monitor > the status of > sendmail. Your first question is why am I not just using > check_smtp, it's > because all the mail servers that I need to implement this on > only listen on > 127.0.0.1:25. > > I've enabled the MIB or OID in snmpd.conf on the test box and > that appears > to be working fine: > > [root at sadqalx38 plugins]# snmpwalk -v 1 l52m-be sapublic > .1.3.6.1.4.1.2021.2 > > enterprises.ucdavis.prTable.prEntry.prIndex.1 = 1 > enterprises.ucdavis.prTable.prEntry.prNames.1 = sendmail > enterprises.ucdavis.prTable.prEntry.prMin.1 = 1 > enterprises.ucdavis.prTable.prEntry.prMax.1 = 10 > enterprises.ucdavis.prTable.prEntry.prCount.1 = 2 > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrMessage.1 = > enterprises.ucdavis.prTable.prEntry.prErrFix.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrFixCmd.1 = > > [root at sadqalx38 plugins]# snmpwalk -v 1 -On l52m-be sapublic > .1.3.6.1.4.1.2021.2 > .1.3.6.1.4.1.2021.2.1.1.1 = 1 > .1.3.6.1.4.1.2021.2.1.2.1 = sendmail > .1.3.6.1.4.1.2021.2.1.3.1 = 1 > .1.3.6.1.4.1.2021.2.1.4.1 = 10 > .1.3.6.1.4.1.2021.2.1.5.1 = 3 > .1.3.6.1.4.1.2021.2.1.100.1 = 0 > .1.3.6.1.4.1.2021.2.1.101.1 = > .1.3.6.1.4.1.2021.2.1.102.1 = 0 > .1.3.6.1.4.1.2021.2.1.103.1 = > > > So, it appears I can either monitor > enterprises.ucdavis.prTable.prEntry.prCount.1 which lists the > number of > sendmail processes running or > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 which is 0 > when sendmail > is running or 1 when it's either not running or there are > more procs running > than what you've specified acceptible (10 in this case). > > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because > the value it's > returning is between 1 and 10? Now if I change the warning > and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could > help that would > be great. Also, I'm not subscribed to this list so if you > could reply to me > via email that would be great. > > Thanks > Dan Finn > Unix Systems Administrator > Student Advantage Inc > dfinn at studentadvantage.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Hagen_Deike at icon-scm.com Thu Mar 6 19:44:43 2003 From: Hagen_Deike at icon-scm.com (Hagen Deike) Date: Thu, 6 Mar 2003 19:44:43 +0100 Subject: Help NRPE 1.8 won't work Message-ID: <7E47A0E20913514C8F4CD1BC241A37030A4509@serv-075.icon-germany.local> > -----Original Message----- > From: Brian Kosick [mailto:briank at nacs.net] > Sent: Donnerstag, 6. M?rz 2003 19:21 > To: Hagen Deike > Cc: 'nagios-users at lists.sourceforge.net' > Subject: Re: [Nagios-users] Help NRPE 1.8 won't work > > Make sure that you have edited the nrpe.cfg file correctly, it has a > "Allow connections from this IP" variable. Don't belive that's the problem. I run it from inetd # NOTE: This option is ignored if NRPE is running under either inetd or xinetd regards, Hagen Deike ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From slebrun at muskoka.com Thu Mar 6 19:55:19 2003 From: slebrun at muskoka.com (Shayne Lebrun) Date: Thu, 6 Mar 2003 13:55:19 -0500 Subject: Help NRPE 1.8 won't work In-Reply-To: <3E679193.20007@nacs.net> References: <3E679193.20007@nacs.net> Message-ID: > Make sure that you have edited the nrpe.cfg file correctly, it has a > "Allow connections from this IP" variable. Which is handily ignored if you're running in inetd mode. Your /etc/hosts.allow file, on the other hand, aye. But he's not using tcpd. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From twelsh at square-box.com Thu Mar 6 11:25:17 2003 From: twelsh at square-box.com (Tom Welsh) Date: Thu, 6 Mar 2003 10:25:17 -0000 Subject: Please - Notification by e-mail In-Reply-To: References: Message-ID: <000b01c2e3ca$aec8f660$0400a8c0@squarebox.com> Firstly can you mail from the command line to another account, If this doesn't work then you have a problem with the mail system and not nagios. My mail command for nagios is as follows. This is from my debian machine (wrapped for readability) # 'notify-by-email' command definition (ORIGINAL) define command{ name notify-by-email ; The name of this command definition - can be used for template recursion/resolution command_name notify-by-email ; The name of this command, as used/recognized by Nagios command_line /usr/bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$' | /usr/bin/mail -s ' $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ ' $CONTACTEMAIL$ Hope this helps Tom Welsh twelsh at square-box.com -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Hugo Rebello Sent: 06 March 2003 17:49 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Please - Notification by e-mail Please, anybody help me ? I can?t get to send notification by e-mail using "mail command" Some sugestion ? Thank you. Hugo Rebello ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 6 20:24:30 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 6 Mar 2003 16:24:30 -0300 Subject: Please - Notification by e-mail In-Reply-To: <000b01c2e3ca$aec8f660$0400a8c0@squarebox.com> References: <000b01c2e3ca$aec8f660$0400a8c0@squarebox.com> Message-ID: Are you using this command to send smtp e-mail ? What smtp server are you using ? Thank you. Hugo -----Original Message----- From: Tom Welsh [mailto:twelsh at square-box.com] Sent: quinta-feira, 6 de mar?o de 2003 07:25 To: 'Hugo Rebello'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Please - Notification by e-mail Firstly can you mail from the command line to another account, If this doesn't work then you have a problem with the mail system and not nagios. My mail command for nagios is as follows. This is from my debian machine (wrapped for readability) # 'notify-by-email' command definition (ORIGINAL) define command{ name notify-by-email ; The name of this command definition - can be used for template recursion/resolution command_name notify-by-email ; The name of this command, as used/recognized by Nagios command_line /usr/bin/echo -e 'Notification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$' | /usr/bin/mail -s ' $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ ' $CONTACTEMAIL$ Hope this helps Tom Welsh twelsh at square-box.com -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Hugo Rebello Sent: 06 March 2003 17:49 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Please - Notification by e-mail Please, anybody help me ? I can?t get to send notification by e-mail using "mail command" Some sugestion ? Thank you. Hugo Rebello ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From JSnodgrass at sourcerefrigeration.com Thu Mar 6 22:33:24 2003 From: JSnodgrass at sourcerefrigeration.com (JSnodgrass at sourcerefrigeration.com) Date: Thu, 6 Mar 2003 13:33:24 -0800 Subject: Some Minor Issues Message-ID: I am missing the following files for Nagios 1.0 running on Red Hat 8.0 - Statusmap.cgi - Histogram.cgi - Trends.cgi I wanted to know if someone could send them to me. Also I seem to have a problem with the notification alerts. They seem to be a couple hours behind the actual event and when they are sent the system is sending way to many alerts through the pager feature. I am also unable to get the system to send the alerts via e-mail which is odd cause the system is essentially sending an e-mail to our phones when it is using the paging feature. Nay help would be greatly appreciated. Jason Snodgrass, A+, CCA, CLP Network Support Source Refrigeration & HVAC, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From twebster at daksoft.com Thu Mar 6 22:57:09 2003 From: twebster at daksoft.com (twebster at daksoft.com) Date: Thu, 6 Mar 2003 14:57:09 -0700 Subject: Distributed monitoring quirks Message-ID: Do you have "check for external commands" turned on"? do your other external commands run, like acknowledgments to a downed host? Also, when you say that the central server is receiving events, how are you verifying this? Are you watch a log or are you dumping on the interface? The only difference in my services config compared to your is I have, passive and active checks enabled in the global service definition at the top and at the local service definition for my passive services I have active_check_enabled set to 0. Tony ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Fri Mar 7 00:13:21 2003 From: briank at nacs.net (Brian Kosick) Date: Thu, 06 Mar 2003 18:13:21 -0500 Subject: plugin problems.... Message-ID: <3E67D611.6060300@nacs.net> Hi all, I'm having some difficulty with two plugins.... specifically the check_ifstatus, and check_rpc When I run them from the command line as nagios, they work great sh-2.05a$ ./check_ifstatus -H XXX.XXX.XXX.XXX -C public Use of uninitialized value in sprintf at ./check_ifstatus line 194. CRITICAL: host 'XXX.XXX.XXX.XXX', interfaces up: 30, down: 1, dormant: 0
DS3 Controller B -- Standby: down ->
sh-2.05a$ ./check_rpc -H XXX.XXX.XXX.XXX -C nfs OK: RPC program nfs version 2 version 3 udp running when I try to run them within nagios, they show up as critical "No Output" here's my relevant checkcommands.cfg # check_nfs define command{ command_name check_nfs command_line $USER1$/check_rpc -H $HOSTADDRESS$ -C nfs } # snmp_intstatus define command{ command_name snmp_intstatus command_line $USER1$/check_ifstatus -H $HOSTADDRESS$ -C $ARG1$ } Here's my services.cfg # Service definition define service{ use generic-service ; Name of service template to use host_name ginger service_description NFS is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 2 retry_check_interval 1 contact_groups linux-admins notification_interval 240 notification_period 24x7 notification_options w,u,c,r check_command check_nfs } # Service definition define service{ use generic-service ; Name of service template to use host_name cac-mux service_description Interface Status is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups switch-admins notification_interval 240 notification_period 24x7 notification_options c,r check_command snmp_intstatus!public } Any ideas as to why they can run fine from the command line as the nagios user, but not produce any output? the check_ifstatus takes around 5-6 seconds to return, and the check_rpc 1-2 seconds. Any help would be greatly appreciated..... Thanks, Brian Kosick ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg at intouch.ca Fri Mar 7 00:23:43 2003 From: greg at intouch.ca (Greg Webster) Date: Thu, 6 Mar 2003 15:23:43 -0800 Subject: Some Minor Issues In-Reply-To: References: Message-ID: <20030306152343.28c3beb4.greg@intouch.ca> I'm having the same issue, which has been narrowed down to not having the GD (gif, png, jpeg) libraries (base, devel, headers/includes) installed. This isn't all that helpful for me due to Debian's silliness, but hopefully you have an easier time of it. Greg On Thu, 6 Mar 2003 13:33:24 -0800: JSnodgrass at sourcerefrigeration.com wrote: > I am missing the following files for Nagios 1.0 running on Red Hat 8.0 > - Statusmap.cgi > - Histogram.cgi > - Trends.cgi > > I wanted to know if someone could send them to me. > > Also I seem to have a problem with the notification alerts. They seem to > be a couple hours behind the actual event and when they are sent the > system is sending way to many alerts through the pager feature. > > I am also unable to get the system to send the alerts via e-mail which is > odd cause the system is essentially sending an e-mail to our phones when > it is using the paging feature. > > Nay help would be greatly appreciated. > > Jason Snodgrass, A+, CCA, CLP > Network Support > Source Refrigeration & HVAC, Inc. > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mbailey at empoweredsystems.com Fri Mar 7 06:02:32 2003 From: mbailey at empoweredsystems.com (Michael Bailey) Date: Fri, 7 Mar 2003 05:02:32 +0000 Subject: Notify by email when comment added Message-ID: <20030307050232.C1167@empoweredsystems.com> Is it possible to have nagios send an email to contact groups when someone adds a comment? When there is an alert and someone is looking at the problem it would be handy for others to be notified what someone is workign on it. thanks, Mike ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at nagios.org Fri Mar 7 06:20:43 2003 From: nagios at nagios.org (Ethan Galstad) Date: Thu, 06 Mar 2003 23:20:43 -0600 Subject: Notify by email when comment added In-Reply-To: <20030307050232.C1167@empoweredsystems.com> References: <20030307050232.C1167@empoweredsystems.com> Message-ID: <3E67D7CB.13874.13C2320@localhost> You probably want to use the acknowledgement feature instead of just a comment. An ack will send out a notification (if you tell it to) and a comment will automatically be added to the host/service in question. On 7 Mar 2003 at 5:02, Michael Bailey wrote: > Is it possible to have nagios send an email to contact groups when > someone adds a comment? When there is an alert and someone is looking at > the problem it would be handy for others to be notified what someone > is workign on it. > > thanks, > > Mike Ethan Galstad, Nagios Developer --- Email: nagios at nagios.org Website: http://www.nagios.org ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Fri Mar 7 06:44:18 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Fri, 7 Mar 2003 16:44:18 +1100 Subject: plugin problems.... In-Reply-To: <3E67D611.6060300@nacs.net>; from briank@nacs.net on Thu, Mar 06, 2003 at 06:13:21PM -0500 References: <3E67D611.6060300@nacs.net> Message-ID: <20030307164414.A39112@IPAustralia.Gov.AU> Dear Sir, I would guess that your Nagios has the embedded Perl intrepreter support (ePN). If that is not the case, then please ignore this noise. Thank you for reporting a bug in check_ifstatus: the uninitialised variable is a coding fault. The ePN requires that all plugins be squeaky clean. The warning in check_ifstatus will lead to the ePN throwing the plugin out: it won't be run and you will get the default plugin output 'No putput'. I am using check_rpc with ePN. What version of check_rpc is it (check_rpc -V) ? You could try it with the program number (100003) instead tsitc> /usr/local/nagios/libexec/check_rpc -H oradev -C 100003 RPC ok: program (version 2) is running tsitc> If it works, then there is also a coding error with check_rpc. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Fri Mar 7 07:53:17 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Fri, 07 Mar 2003 07:53:17 +0100 Subject: Modifications of right bar References: <3626546DC152134382A0A029C29365C6076A0A@net-mail.int.netways.de> Message-ID: <3E6841DD.7050903@datavis.se> It's a home-modified version.. I generate the group-list per user based on a small config file. /FredrikW nagios-users wrote: >Hi ! >As I discovered on the page of http://apan.sourceforge.net/ in the >screenshot -> there >Is a nice modification of the right bar in cgi; displaying > >Groups under the the service detail button.... Is this a patch or just a >modified version ? > >Thankx Nik > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From frankie at etsetb.upc.es Fri Mar 7 08:48:54 2003 From: frankie at etsetb.upc.es (Francesc Guasch) Date: Fri, 07 Mar 2003 08:48:54 +0100 Subject: Some Minor Issues In-Reply-To: <20030306152343.28c3beb4.greg@intouch.ca> References: <20030306152343.28c3beb4.greg@intouch.ca> Message-ID: <3E684EE6.6020002@etsetb.upc.es> Greg Webster wrote: > I'm having the same issue, which has been narrowed down to not having the GD (gif, png, jpeg) libraries (base, devel, headers/includes) installed. This are the packages I installed to make nagios compile: - gd-devel-1.8.4-9 - libjpeg-devel-6b-21 - libpng-devel-1.2.2-8 either from the redhat CDs or updates. > > This isn't all that helpful for me due to Debian's silliness, but hopefully you have an easier time of it. > > Greg > > On Thu, 6 Mar 2003 13:33:24 -0800: JSnodgrass at sourcerefrigeration.com wrote: > >>I am missing the following files for Nagios 1.0 running on Red Hat 8.0 >>- Statusmap.cgi >>- Histogram.cgi >>- Trends.cgi Maybe you need nagios-www rpm. I built mine first downloading nagios-1.0.1 src.rpm from: ftp://development.origix.net/pub/SRPMS/ then # rpm -Uhv nagios ..src.rpm # rpmbuild -ba /usr/src/redhat/SPECS/nagios.spec -- frankie ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Fri Mar 7 10:06:44 2003 From: lejert at hotmail.com (le jert) Date: Fri, 07 Mar 2003 10:06:44 +0100 Subject: no output on check_mrtgtraf Message-ID: Hello ! I've installed mrtg and it's working well. I can see the bandwidth for each port of my switches. When I use it in nagios, I get the message 'No output' in the status information.log file seems to be well specifiated Could you tell me what is the reason of this problem ? running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 _________________________________________________________________ Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From atulsh at hclinsys.com Fri Mar 7 10:25:25 2003 From: atulsh at hclinsys.com (Atul Shrivastava) Date: Fri, 7 Mar 2003 14:55:25 +0530 (IST) Subject: no output on check_mrtgtraf In-Reply-To: References: Message-ID: Hello, You use the command /usr/local/nagios/libexec/check_mrtgtraf -F -e 30 -w 307200,51200 -c 409600,614400 I think that this will solve your problem. Better you go for check_traffic Regards, Atul Shrivastava On Fri, 7 Mar 2003, le jert wrote: > > Hello ! > > > I've installed mrtg and it's working well. I can see the bandwidth for each > port of my switches. When I use it in nagios, I get the message 'No output' > in the status information.log file seems to be well specifiated > Could you tell me what is the reason of this problem ? > > > running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 > > _________________________________________________________________ > Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- Regards and have a nice day, Atul Shrivastava Info Structure Services HCL INFOSYSTEMS LTD. E - 4,5,6 Sector XI, Noida - 201301 Tel: 91-120-2526910,2443013 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From philc at foundation-it.com Fri Mar 7 10:59:50 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Fri, 7 Mar 2003 09:59:50 -0000 Subject: Help NRPE 1.8 won't work Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909EC8B@netfinity-1.foundation-it.local> From: Hagen Deike [mailto:Hagen_Deike at icon-scm.com] > > I need a little help on nrpe 1.8 > I Installed nrpe on a Linux Box running Nagios and a HP/UX > Server with the nrpe daemon. > > On the HP/UX Server the nrpe exec is installed in /usr/sbin. > Path is set correct. The config file is in > /usr/local/nagios/etc/nrpe.cfg nrpe is loaded in inetd.conf > > nrpe stream tcp nowait daemon /usr/sbin/nrpe -c /usr/local/nagios/etc/nrpe.cfg --inetd > [snip] > But as soon as I try to use the check_nrpe plugin I get an error... > > me at mon:/usr/lib/nagios/plugins> ./check_nrpe -H 10.x.x.x -c > check_load > CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? > > What's wrong with it??? Second time this week this problem has come up, and it's really a problem with the documentation which only gives an inetd.conf example for tcpwrapper-ed systems (course all systems should be :). Here's the format for inetd.conf entries (taken from Solaris 8) # Syntax for socket-based Internet services: # is /usr/sbin/nrpe (in this case) but must also include argument 0, i.e. the server program again. So the correct inetd.conf entry is : nrpe stream tcp nowait daemon /usr/sbin/nrpe /usr/sbin/nrpe -c /usr/local/nagios/etc/nrpe.cfg --inetd I'll submit a documentation patch as soon as I get the chance. Phil ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Fri Mar 7 12:13:37 2003 From: lejert at hotmail.com (le jert) Date: Fri, 07 Mar 2003 12:13:37 +0100 Subject: no output on check_mrtgtraf Message-ID: that's better : before I got critical for for the service, now I get a warning maybe I could adapt the parameters for -c and -w ... what do you think ??? >From: Atul Shrivastava >To: le jert >CC: nagios-users at lists.sourceforge.net >Subject: Re: [Nagios-users] no output on check_mrtgtraf >Date: Fri, 7 Mar 2003 14:55:25 +0530 (IST) > >Hello, > >You use the command > >/usr/local/nagios/libexec/check_mrtgtraf -F -e 30 -w >307200,51200 -c 409600,614400 > >I think that this will solve your problem. Better you go for check_traffic > >Regards, > >Atul Shrivastava > > > >On Fri, 7 Mar 2003, le jert wrote: > > > > > Hello ! > > > > > > I've installed mrtg and it's working well. I can see the bandwidth for >each > > port of my switches. When I use it in nagios, I get the message 'No >output' > > in the status information.log file seems to be well specifiated > > Could you tell me what is the reason of this problem ? > > > > > > running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 > > > > _________________________________________________________________ > > Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of TotalView, The >debugger > > for complex code. Debugging C/C++ programs can leave you feeling lost >and > > disoriented. TotalView can help you find your way. Available on major >UNIX > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > >-- > >Regards and have a nice day, > Atul Shrivastava > Info Structure Services > HCL INFOSYSTEMS LTD. > E - 4,5,6 Sector XI, > Noida - 201301 > Tel: 91-120-2526910,2443013 > > > > > > > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at alienn.net Fri Mar 7 12:36:32 2003 From: nagios-users at alienn.net (Nicki Messerschmidt, Linksystem Muenchen GmbH) Date: Fri, 7 Mar 2003 12:36:32 +0100 Subject: Debian Packages Message-ID: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi List, does anyone of you know, where to get recent debian packages for nagios, or even better a server, which I can put into my apt/sources.list...? Thanks in advance, Cheers Nicki - -- Linksystem Muenchen GmbH info at link-m.de Schloerstrasse 10 http://www.link-m.de 80634 Muenchen Tel. 089 / 890 518-0 We make the Net work. Fax 089 / 890 518-77 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use Comment: Keys at: https://www.link-m.de/pgp iQA/AwUBPmh2MOs1nPm17iBDEQL2VQCg614KS6D5shyjrQe7rTEaqjLXGt4AnAu6 GkhzkSQkAJa8S60J3x8kCEa4 =JJR3 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jens.kruse at mobilcom.de Fri Mar 7 14:20:02 2003 From: jens.kruse at mobilcom.de (Jens Kruse) Date: Fri, 07 Mar 2003 14:20:02 +0100 Subject: check_nagios Message-ID: <3E689C82.8090009@mobilcom.de> Hi, I couldn't find a solution for the following problem with google, so maybe someone has experienced this before ... check_nagios gives out the following ... nagios at monitor1-lx:~> /usr/local/nagios/libexec/check_nagios -F /usr/local/nagios/var/status.log -e 5 -C /usr/local/nagios/bin/nagios Nagios problem: located 80 processes, status log updated 1047042679 seconds ago though status.log is only some minutes old ... nagios at monitor1-lx:~> l var/status.log -rw-r--r-- 1 nagios nagios 0 M?r 7 13:50 var/status.log And the actual date is ok as well ... :-) nagios at monitor1-lx:~> date Fre M?r 7 14:14:28 MET 2003 Any hints where/what to look/check for? TIA, Jens -- Mit freundlichen Gr??en Jens Kruse Linux Systemadministration MobilCom AG Hollerstra?e 126 24782 B?delsdorf Telefon: +49 (0)4331/ 447 - 2168 Telefax: +49 (0)4331/ 434 - 4010 jens.kruse at mobilcom.de Besucher: Am Friedrichsbrunnen ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lou at ece.cmu.edu Fri Mar 7 14:29:49 2003 From: lou at ece.cmu.edu (Lou Anschuetz) Date: Fri, 07 Mar 2003 08:29:49 -0500 Subject: Scheduled downtime author Message-ID: <578901055.1047025789@beeblebrox.ece.cmu.edu> I seem to be unable to find any references to this in the documentation, FAQ, etc. but it wouldn't be the first time I failed to see the obvious. When someone writes the comments for a scheduled downtime it does create the file properly with that users name. The comments all show and work properly, but the author (on the web page) is always listed as "nagios process" rather than the authenticated user. Is there somewhere to get this information on the web page or can this field be somehow set to use the information in the file? TIA! Lou Anschuetz, lou at ece.cmu.edu Network Manager, ECE Department, CMU 412-512-6052 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasmine.chua at securecirt.com Fri Mar 7 15:06:57 2003 From: jasmine.chua at securecirt.com (Jasmine) Date: Fri, 7 Mar 2003 22:06:57 +0800 Subject: status log Message-ID: <200303072207.01589.jasmine.chua@securecirt.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi guys, Can someone explained this? I have checked nagios seems to be ok but I am having this error in checking nagios. Nagios problem: located 2 processes, status log updated 1047045905 seconds ago - --Warmest Regards, Jasmine Chua Security Engineer SecureCiRT Pte Ltd Blk 750C Chai Chee Road #04-01 Technopark at ChaiChee Singapore 469003 Tel: 6243 6800 DID: 6243 6802 Fax: 6441 5119 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+aKeENgvTa7Hj2AURAvOJAKCvVrZOW9J9yuFTPKlu2NfY+0FvpgCggXlN 4hjs3u+9MZ2ZmwlSeovT0is= =njkK -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasmine.chua at securecirt.com Fri Mar 7 15:13:10 2003 From: jasmine.chua at securecirt.com (Jasmine) Date: Fri, 7 Mar 2003 22:13:10 +0800 Subject: Fwd: check_nagios In-Reply-To: <3E689C82.8090009@mobilcom.de> References: <3E689C82.8090009@mobilcom.de> Message-ID: <200303072213.11254.jasmine.chua@securecirt.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi I have the same problem too. And, would like to know hows its being solved. - -rw-r--r-- 1 root root 0 Mar 7 22:05 status.log Time on checking: Fri Mar 7 22:12:44 SGT 2003 On Friday 07 March 2003 21:20, Jens Kruse wrote: > Hi, > > I couldn't find a solution for the following problem with google, so > maybe someone has experienced this before ... > > check_nagios gives out the following ... > > nagios at monitor1-lx:~> /usr/local/nagios/libexec/check_nagios -F > /usr/local/nagios/var/status.log -e 5 -C /usr/local/nagios/bin/nagios > Nagios problem: located 80 processes, status log updated 1047042679 > seconds ago > > though status.log is only some minutes old ... > > nagios at monitor1-lx:~> l var/status.log > -rw-r--r-- 1 nagios nagios 0 M?r 7 13:50 var/status.log > > And the actual date is ok as well ... :-) > > nagios at monitor1-lx:~> date > Fre M?r 7 14:14:28 MET 2003 > > Any hints where/what to look/check for? > > TIA, Jens - -- Jasmine Chua Security Engineer SecureCiRT Pte Ltd Blk 750C Chai Chee Road #04-01 Technopark at ChaiChee Singapore 469003 Tel: 6243 6800 DID: 6243 6802 Fax: 6441 5119 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+aKj2NgvTa7Hj2AURAsBnAJ9Tw4btczYNe65WHFfvnamMSeqioACglf0I 2RjhlDlw36f444omuDsijG8= =h1BP -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Fri Mar 7 15:27:39 2003 From: lejert at hotmail.com (le jert) Date: Fri, 07 Mar 2003 15:27:39 +0100 Subject: [Res]: no output on check_mrtgtraf Message-ID: Ok things look goog now Thanks >From: Atul Shrivastava >To: le jert >Subject: Re: [Nagios-users] no output on check_mrtgtraf >Date: Fri, 7 Mar 2003 17:16:13 +0530 (IST) > >Yes, then you have to change the parameters for the critical annd warning >values. > >Atul Shrivastava > > >On Fri, 7 Mar 2003, le jert wrote: > > > > > > > that's better : before I got critical for for the service, now I get a > > warning > > maybe I could adapt the parameters for -c and -w ... what do you think >??? > > > > > > > > > > > > >From: Atul Shrivastava > > >To: le jert > > >CC: nagios-users at lists.sourceforge.net > > >Subject: Re: [Nagios-users] no output on check_mrtgtraf > > >Date: Fri, 7 Mar 2003 14:55:25 +0530 (IST) > > > > > >Hello, > > > > > >You use the command > > > > > >/usr/local/nagios/libexec/check_mrtgtraf -F -e 30 -w > > >307200,51200 -c 409600,614400 > > > > > >I think that this will solve your problem. Better you go for >check_traffic > > > > > >Regards, > > > > > >Atul Shrivastava > > > > > > > > > > > >On Fri, 7 Mar 2003, le jert wrote: > > > > > > > > > > > Hello ! > > > > > > > > > > > > I've installed mrtg and it's working well. I can see the bandwidth >for > > >each > > > > port of my switches. When I use it in nagios, I get the message 'No > > >output' > > > > in the status information.log file seems to be well specifiated > > > > Could you tell me what is the reason of this problem ? > > > > > > > > > > > > running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0 > > > > > > > > _________________________________________________________________ > > > > Hotmail: votre e-mail gratuit ! http://www.fr.msn.be/hotmail > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Etnus, makers of TotalView, The > > >debugger > > > > for complex code. Debugging C/C++ programs can leave you feeling >lost > > >and > > > > disoriented. TotalView can help you find your way. Available on >major > > >UNIX > > > > and Linux platforms. Try it free. www.etnus.com > > > > _______________________________________________ > > > > Nagios-users mailing list > > > > Nagios-users at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ::: Please include Nagios version, plugin version (-v) and OS when > > >reporting any issue. > > > > ::: Messages without supporting info will risk being sent to >/dev/null > > > > > > > > > >-- > > > > > >Regards and have a nice day, > > > Atul Shrivastava > > > Info Structure Services > > > HCL INFOSYSTEMS LTD. > > > E - 4,5,6 Sector XI, > > > Noida - 201301 > > > Tel: 91-120-2526910,2443013 > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >------------------------------------------------------- > > >This SF.net email is sponsored by: Etnus, makers of TotalView, The >debugger > > >for complex code. Debugging C/C++ programs can leave you feeling lost >and > > >disoriented. TotalView can help you find your way. Available on major >UNIX > > >and Linux platforms. Try it free. www.etnus.com > > >_______________________________________________ > > >Nagios-users mailing list > > >Nagios-users at lists.sourceforge.net > > >https://lists.sourceforge.net/lists/listinfo/nagios-users > > >::: Please include Nagios version, plugin version (-v) and OS when > > >reporting any issue. > > >::: Messages without supporting info will risk being sent to /dev/null > > > > > > _________________________________________________________________ > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of TotalView, The >debugger > > for complex code. Debugging C/C++ programs can leave you feeling lost >and > > disoriented. TotalView can help you find your way. Available on major >UNIX > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > >-- > >Regards and have a nice day, > Atul Shrivastava > Info Structure Services > HCL INFOSYSTEMS LTD. > E - 4,5,6 Sector XI, > Noida - 201301 > Tel: 91-120-2526910,2443013 > > > > > > _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Fri Mar 7 15:28:46 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Fri, 7 Mar 2003 06:28:46 -0800 Subject: Debian Packages In-Reply-To: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> References: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> Message-ID: <20030307142846.GA16833@UnderGrid.net> You can add the following to get the nagios package on your machine: deb http://http.us.debian.org/debian unstable main contrib non-free Then you would 'apt-get install' either nagios-text, nagios-mysql or nagios-pgsql... Although nagios-text would be the build most like the older netsaint package... It is maintained by Turbo Fredriksson who also maintained the netsaint packages. Jeremy On Fri, Mar 07, 2003 at 12:36:32PM +0100, Nicki Messerschmidt, Linksystem Muenchen GmbH wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi List, > does anyone of you know, where to get recent debian packages for > nagios, or even better a server, which I can put into my > apt/sources.list...? > > > Thanks in advance, > Cheers > Nicki > > - -- > Linksystem Muenchen GmbH info at link-m.de > Schloerstrasse 10 http://www.link-m.de > 80634 Muenchen Tel. 089 / 890 518-0 > We make the Net work. Fax 089 / 890 518-77 > > -----BEGIN PGP SIGNATURE----- > Version: PGPfreeware 6.5.3 for non-commercial use > Comment: Keys at: https://www.link-m.de/pgp > > iQA/AwUBPmh2MOs1nPm17iBDEQL2VQCg614KS6D5shyjrQe7rTEaqjLXGt4AnAu6 > GkhzkSQkAJa8S60J3x8kCEa4 > =JJR3 > -----END PGP SIGNATURE----- > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ric at nkn.net Fri Mar 7 15:37:14 2003 From: ric at nkn.net (Ric Moseley) Date: Fri, 7 Mar 2003 08:37:14 -0600 Subject: trouble tickets into nagios In-Reply-To: <200303072213.11254.jasmine.chua@securecirt.com> References: <200303072213.11254.jasmine.chua@securecirt.com> Message-ID: <004b01c2e4b7$0c967410$1bd010ac@theplanet.com> Does anyone know how to insert trouble tickets (or the like) into the nagios web interface to look like a server that is down? I would like if someone starts a ticket though our trouble ticket system that a message is sent to nagios and then an event pops up in the web interface to reboot a server or something? Thanks. Ric. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jesus_navarro at undominio.net Fri Mar 7 15:42:06 2003 From: jesus_navarro at undominio.net (=?ISO-8859-1?Q?Jes=FAs?= M. NAVARRO) Date: 07 Mar 2003 15:42:06 +0100 Subject: Debian Packages In-Reply-To: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> References: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> Message-ID: <1047048126.25517.2.camel@mithrandir> Hi: On Fri, 2003-03-07 at 12:36, Nicki Messerschmidt, Linksystem Muenchen GmbH wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi List, > does anyone of you know, where to get recent debian packages for > nagios, or even better a server, which I can put into my > apt/sources.list...? > http://apt-get.org/search.php -- SALUD, Jes?s *** jesus_navarro at undominio.net *** ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From prisoner at addventure.com Fri Mar 7 13:20:25 2003 From: prisoner at addventure.com (Allen S. Firstenberg) Date: Fri, 07 Mar 2003 07:20:25 -0500 Subject: notification_period and service escalation Message-ID: <20030307072025.30103@addventure.com> We have a situation that I'm having trouble finding a good solution for. For some of our services, we do email notifications. If the problem isn't resolved after 30 minutes, we start paging people every 30 minutes. Service escalations are ideal for this. We wish to change it so that if it is outside certain hours, the pages occur every hour instead. A "notification_interval" field for service escalation doesn't seem to exist (I'm using an older version, but the latest documentation doesn't seem to indicate it has been added.) I've tried the following in a test (reducing the test intervals to 5 and 10 minutes): I have two timeperiods defined "time-even" and "time-odd" which define the even and odd hours of the day respectively. They're long, so I won't reprint them. define contact{ contact_name prisoner-1 alias Allen "Prisoner" Firstenberg email prisoner-1 at nagios.addventure.com service_notification_period time-even service_notification_options w,u,c,r service_notification_commands notify-by-email host_notification_period time-even host_notification_options d,u,r host_notification_commands host-notify-by-email } define contact{ contact_name prisoner-2 alias Allen "Prisoner" Firstenberg email prisoner-2 at nagios.addventure.com service_notification_period time-odd service_notification_options w,u,c,r service_notification_commands notify-by-email host_notification_period time-odd host_notification_options d,u,r host_notification_commands host-notify-by-email } define contactgroup{ contactgroup_name contact-1 alias All Administrators members prisoner-1 } define contactgroup{ contactgroup_name contact-2 alias All Administrators members prisoner-2 } define service{ name service-generic active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 3 retry_check_interval 1 notification_interval 120 notification_period 24x7 notification_options w,u,c,r register 0 ; DONT REGISTER THIS DEFINITION } define service{ host_name radar service_description test notification_interval 5 use service-generic contact_groups all-users check_command check-test } define serviceescalation{ host_name radar service_description test contact_groups contact-1 first_notification 2 last_notification 0 notification_interval 5 } define serviceescalation{ host_name radar service_description test contact_groups contact-2 first_notification 2 last_notification 0 notification_interval 10 } What I expected was that the contact-2 group would receive notifications no more frequently than once every 10 minutes since its the only group valid during the odd hours. Instead, both groups get notifications every 5 minutes during their hour ranges (so the user notification periods work, the mail works, and the test itself works). The documentation _does_ say that it uses the lowest notification_interval for overlapping escalations, so this is not entirely unexpected, just a little odd since one of the escalations is ultimately never used half the time. I know I can implement this as separate _services_ that nave their own notification_periods, but this would double the number of services we have on the display page, which would be undesirable. Other thoughts about how to implement this or suggestions for where to start looking in the code to implement escalation notification_periods would be appreciated. I've been testing this using Nagios 1.0b5, but didn't see anything in later documentation to indicate this has changed. Thanks for your thoughts on this, your help, and this great system. Allen ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From JTorres at abnamroprime.com Fri Mar 7 15:39:07 2003 From: JTorres at abnamroprime.com (Torres, Joe) Date: Fri, 7 Mar 2003 09:39:07 -0500 Subject: (no subject) Message-ID: <9F6689758D87D51191180002A55CB988067FF37C@pb350exc.ingprime.com> Help Question Once you setup your nrpe daemon on your remote host how do you setup the service for this? Do you setup the check_nrpe command on the nagios server under the services.cfg file and how because the doc is not to clear For example if I am checking PING on the remote server do I setup the services.cfg file on nagios With the following command Check_nrpe!check_ping -w 30 -c 20 ? Thanks for your help Joe Torres Prime Brokerage I.T. ABN AMRO Incorporated 350 Park Ave. New York,N.Y.10022 Phone-212 251-3924 Fax-212 251-3950 Email-jtorres at abnamroprime.com This message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. ABN AMRO Bank N.V. (including its group companies) shall not be liable for the improper or incomplete transmission of the information contained in this communication nor for any delay in its receipt or damage to your system. ABN AMRO Bank N.V. (or its group companies) does not guarantee that the integrity of this communication has been maintained nor that this communication is free of viruses, interceptions or interference. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jesus_navarro at undominio.net Fri Mar 7 15:50:05 2003 From: jesus_navarro at undominio.net (=?ISO-8859-1?Q?Jes=FAs?= M. NAVARRO) Date: 07 Mar 2003 15:50:05 +0100 Subject: Fwd: check_nagios In-Reply-To: <200303072213.11254.jasmine.chua@securecirt.com> References: <3E689C82.8090009@mobilcom.de> <200303072213.11254.jasmine.chua@securecirt.com> Message-ID: <1047048605.23108.6.camel@mithrandir> Hi: On Fri, 2003-03-07 at 15:13, Jasmine wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi I have the same problem too. And, would like to know hows its being solved. > - -rw-r--r-- 1 root root 0 Mar 7 22:05 status.log > Time on checking: Fri Mar 7 22:12:44 SGT 2003 > Hummm... it's a 0 length file owned by root (and only root can write to it). > On Friday 07 March 2003 21:20, Jens Kruse wrote: > > Hi, > > > > I couldn't find a solution for the following problem with google, so > > maybe someone has experienced this before ... > > > > check_nagios gives out the following ... > > > > nagios at monitor1-lx:~> /usr/local/nagios/libexec/check_nagios -F > > /usr/local/nagios/var/status.log -e 5 -C /usr/local/nagios/bin/nagios > > Nagios problem: located 80 processes, status log updated 1047042679 > > seconds ago > > > > though status.log is only some minutes old ... > > > > nagios at monitor1-lx:~> l var/status.log > > -rw-r--r-- 1 nagios nagios 0 M?r 7 13:50 var/status.log > > Well... here it's zero length too but owned by nagios user... Anyway, can the user agent write to the given file? (maybe it's neither root nor nagios). -- SALUD, Jes?s *** jesus_navarro at undominio.net *** ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Fri Mar 7 15:54:35 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Fri, 7 Mar 2003 15:54:35 +0100 Subject: Fwd: check_nagios In-Reply-To: <200303072213.11254.jasmine.chua@securecirt.com>; from jasmine.chua@securecirt.com on Fri, Mar 07, 2003 at 10:13:10PM +0800 References: <3E689C82.8090009@mobilcom.de> <200303072213.11254.jasmine.chua@securecirt.com> Message-ID: <20030307155435.E1444@hpce.nec.com> On Fri, Mar 07, 2003 at 10:13:10PM +0800, Jasmine wrote: > On Friday 07 March 2003 21:20, Jens Kruse wrote: > > > > I couldn't find a solution for the following problem with google, so > > maybe someone has experienced this before ... > > > > check_nagios gives out the following ... > > > > nagios at monitor1-lx:~> /usr/local/nagios/libexec/check_nagios -F > > /usr/local/nagios/var/status.log -e 5 -C /usr/local/nagios/bin/nagios > > Nagios problem: located 80 processes, status log updated 1047042679 > > seconds ago > > > > though status.log is only some minutes old ... > > > > nagios at monitor1-lx:~> l var/status.log > > -rw-r--r-- 1 nagios nagios 0 M?r 7 13:50 var/status.log > > Hi I have the same problem too. And, would like to know hows its > being solved. > - -rw-r--r-- 1 root root 0 Mar 7 22:05 status.log > Time on checking: Fri Mar 7 22:12:44 SGT 2003 Simple: By making use of the file. You will notice that both your files are empty, and if you had looked into the plugin source you could have noticed the line: /* get the date/time of the last item updated in the log */ I didn't have a closer look at the source (but it works for me with: -rw-rw-r-- 1 user group 49078 Mar 7 15:51 status.log and a "Nagios ok: located 167 processes, status log updated 9 seconds ago" returned from the plugin). But I would think the guess is pretty obvious. Rasmus ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DFinn at studentadvantage.com Fri Mar 7 15:49:08 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Fri, 7 Mar 2003 09:49:08 -0500 Subject: Nagios mailing list (check_snmp) .... Message-ID: <80C364880EDAD511BE39009027B0DCB80434507A@RAINBOW2> No, I downloaded and compiled the most recent version they offer on thier site and it's still broken. Unfortunately I wasn't getting much help from people on here so I wrote my own simple script that uses snmpget and either returns OK or CRITICAL and why. -----Original Message----- From: Rookwell at t-online.de [mailto:Rookwell at t-online.de] Sent: Friday, March 07, 2003 1:46 AM To: DFinn at studentadvantage.com Subject: Nagios mailing list (check_snmp) .... Hi, do you fix the check_snmp problem? I want to check the netbios-sessions on a w2k-server, but it always return "Warning....". Rookwell (Germany) Sorry, my english is not so good! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bas.vanderveen at kahuna.nl Fri Mar 7 16:04:18 2003 From: bas.vanderveen at kahuna.nl (Bas van der Veen) Date: Fri, 7 Mar 2003 16:04:18 +0100 Subject: After svc recovery, host still down | Svc warning results in host down Message-ID: Hi, I got Nagios up and running just fine on FreeBSD. It pings around for 92 hosts, everything is working fine as long as everything is ok :) I am experiencing trouble with 2 things: 1) I have defined a ping service (with check_ping) for each host (apart from the check-host-alive host command). If the service fails and the state becomes critical, both the 'Hosts' and 'Services' pane (tactical overview) show the critical state. However, if the service state becomes OK again, the host state doesn't change. When I look at the hosts via the 'Hosts'pane (tac. overview), all the critical hosts are shown including the host for which the state changed to OK. The state is even printed in green! What am I doing wrong here? I looked at the manual, especially the part on state changes, but couldn't find the answer :( 2) With check ping, you can define a warning level and a critical level. If the ping results in a value that triggers a warning, the service is being marked 'warning', the host is being marked down. This surprises me, as this is only a warning about packet loss or a high RTA value. My question: a ping warning result equals host down? Thanks in advance, Bas sample host and svc definition: ------------ # nl_test host definition define host { use generic-host host_name nl_test alias alias address 62.177.182.x check_command check-host-alive max_check_attempts 10 notification_interval 0 notification_period 5x12 notification_options d } # # Service definition # define service{ use generic-service host_name nl_test service_description hst_ping_24x7_5x12 is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups on_call_support notification_interval 0 notification_period 5x12 notification_options c check_command check_ping!4000.0,50%!5000.0,60% } --------------- -----Original Message----- From: Daniel Finn [mailto:DFinn at studentadvantage.com] Sent: donderdag 6 maart 2003 19:14 To: 'Carroll, Jim P [Contractor]'; Daniel Finn; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] problems using check_snmp to monitor sendmail The way our mail app is setup we do need sendmail to listen on localhost:25 and only there. We've considered allowing the nagios server access to port 25 on each machine but it would mean tweaking the sendmail config on 50+ servers. At this point for ease of management it's much easier to have every server run the same sendmail.cf. -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Thursday, March 06, 2003 12:44 PM To: 'Daniel Finn'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] problems using check_snmp to monitor sendmail I can't comment on the SNMP approach, but I'm curious: Do you need to have sendmail listening on socket 127.0.0.1:25? I usually disable the listen functionality of sendmail for outbound-only hosts. Alternatively, if you're going to have sendmail listen on port 25 at all, you could permit connections from your Nagios server. (I know, it would mean tweaking all the hosts that you're interested in monitoring....) Food for thought. jc > -----Original Message----- > From: Daniel Finn [mailto:DFinn at studentadvantage.com] > Sent: Thursday, March 06, 2003 10:42 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: [Nagios-users] problems using check_snmp to monitor sendmail > > > I'm having issues trying to implement check_snmp to monitor > the status of > sendmail. Your first question is why am I not just using > check_smtp, it's > because all the mail servers that I need to implement this on > only listen on > 127.0.0.1:25. > > I've enabled the MIB or OID in snmpd.conf on the test box and > that appears > to be working fine: > > [root at sadqalx38 plugins]# snmpwalk -v 1 l52m-be sapublic > .1.3.6.1.4.1.2021.2 > > enterprises.ucdavis.prTable.prEntry.prIndex.1 = 1 > enterprises.ucdavis.prTable.prEntry.prNames.1 = sendmail > enterprises.ucdavis.prTable.prEntry.prMin.1 = 1 > enterprises.ucdavis.prTable.prEntry.prMax.1 = 10 > enterprises.ucdavis.prTable.prEntry.prCount.1 = 2 > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrMessage.1 = > enterprises.ucdavis.prTable.prEntry.prErrFix.1 = 0 > enterprises.ucdavis.prTable.prEntry.prErrFixCmd.1 = > > [root at sadqalx38 plugins]# snmpwalk -v 1 -On l52m-be sapublic > .1.3.6.1.4.1.2021.2 > .1.3.6.1.4.1.2021.2.1.1.1 = 1 > .1.3.6.1.4.1.2021.2.1.2.1 = sendmail > .1.3.6.1.4.1.2021.2.1.3.1 = 1 > .1.3.6.1.4.1.2021.2.1.4.1 = 10 > .1.3.6.1.4.1.2021.2.1.5.1 = 3 > .1.3.6.1.4.1.2021.2.1.100.1 = 0 > .1.3.6.1.4.1.2021.2.1.101.1 = > .1.3.6.1.4.1.2021.2.1.102.1 = 0 > .1.3.6.1.4.1.2021.2.1.103.1 = > > > So, it appears I can either monitor > enterprises.ucdavis.prTable.prEntry.prCount.1 which lists the > number of > sendmail processes running or > enterprises.ucdavis.prTable.prEntry.prErrorFlag.1 which is 0 > when sendmail > is running or 1 when it's either not running or there are > more procs running > than what you've specified acceptible (10 in this case). > > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because > the value it's > returning is between 1 and 10? Now if I change the warning > and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could > help that would > be great. Also, I'm not subscribed to this list so if you > could reply to me > via email that would be great. > > Thanks > Dan Finn > Unix Systems Administrator > Student Advantage Inc > dfinn at studentadvantage.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ****************************************************************** This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. ****************************************************************** http://www.kahuna.nl ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Fri Mar 7 16:02:16 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Fri, 7 Mar 2003 16:02:16 +0100 Subject: status log In-Reply-To: <200303072207.01589.jasmine.chua@securecirt.com>; from jasmine.chua@securecirt.com on Fri, Mar 07, 2003 at 10:06:57PM +0800 References: <200303072207.01589.jasmine.chua@securecirt.com> Message-ID: <20030307160216.F1444@hpce.nec.com> On Fri, Mar 07, 2003 at 10:06:57PM +0800, Jasmine wrote: > > Can someone explained this? I have checked nagios seems to be ok but I am > having this error in checking nagios. > Nagios problem: located 2 processes, status log updated 1047045905 > seconds ago Just out of curiosity: Do you expect a higher chance for a reply if you send the same question twice in different threads? And does it work? Because I'm still looking for a reliable method to make people answer/help me... Rasmus ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Cian at logic.bm Fri Mar 7 16:07:00 2003 From: Cian at logic.bm (Cian O'Sullivan) Date: Fri, 7 Mar 2003 11:07:00 -0400 Subject: Graphing service check results with cricket? Message-ID: I have a comprehensive cricket setup, and a very big Netsaint setup. I will be moving to nagios shortly. Before I do that, what is the best way to graph the service check results via cricket? Are there any scripts that can read the service check logs, parse the info into a form I can import with ease to RRD? Has anyone worked on anything like this? Thanks very much. cian ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jstuart at edenpr.k12.mn.us Fri Mar 7 16:09:41 2003 From: jstuart at edenpr.k12.mn.us (Joe Stuart) Date: Fri, 07 Mar 2003 09:09:41 -0600 Subject: Services disappear Message-ID: Hi, I have a slight problem with services not showing up in the web interface. I have about 84 entries with 44 of them being hosts. It will consistently show 55 of the entries and randomly display all 84 at once. Then after the next refresh it will revert back to showing only 55 entries and there doesnt seem to be any ryme or reason to it. I'm running nagios version 1.0 on redhat 7.3. Any help would be appreciated. Thanks, Joe ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rburnson at cps.k12.il.us Fri Mar 7 16:30:18 2003 From: rburnson at cps.k12.il.us (Burnson, Richard) Date: Fri, 7 Mar 2003 09:30:18 -0600 Subject: Services disappear Message-ID: Typically this indicates that you have multiple instances of Nagios running. With RedHat you can run "service Nagios stop", to stop the process, and then run "ps -ef | grep Nagios" to see if any rogue Nagios processes are running. Richard -----Original Message----- From: Joe Stuart [mailto:jstuart at edenpr.k12.mn.us] Sent: Friday, March 07, 2003 9:10 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Services disappear Hi, I have a slight problem with services not showing up in the web interface. I have about 84 entries with 44 of them being hosts. It will consistently show 55 of the entries and randomly display all 84 at once. Then after the next refresh it will revert back to showing only 55 entries and there doesnt seem to be any ryme or reason to it. I'm running nagios version 1.0 on redhat 7.3. Any help would be appreciated. Thanks, Joe ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jstuart at edenpr.k12.mn.us Fri Mar 7 16:35:45 2003 From: jstuart at edenpr.k12.mn.us (Joe Stuart) Date: Fri, 07 Mar 2003 09:35:45 -0600 Subject: Services disappear Message-ID: Thank you very much. I was breaking my back over the config files and never thought of that. >>> "Burnson, Richard" 03/07/03 07:30AM >>> Typically this indicates that you have multiple instances of Nagios running. With RedHat you can run "service Nagios stop", to stop the process, and then run "ps -ef | grep Nagios" to see if any rogue Nagios processes are running. Richard -----Original Message----- From: Joe Stuart [mailto:jstuart at edenpr.k12.mn.us] Sent: Friday, March 07, 2003 9:10 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Services disappear Hi, I have a slight problem with services not showing up in the web interface. I have about 84 entries with 44 of them being hosts. It will consistently show 55 of the entries and randomly display all 84 at once. Then after the next refresh it will revert back to showing only 55 entries and there doesnt seem to be any ryme or reason to it. I'm running nagios version 1.0 on redhat 7.3. Any help would be appreciated. Thanks, Joe ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 7 16:34:45 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 07 Mar 2003 10:34:45 -0500 (EST) Subject: Nagios mailing list (check_snmp) .... In-Reply-To: <80C364880EDAD511BE39009027B0DCB80434507A@RAINBOW2> References: <80C364880EDAD511BE39009027B0DCB80434507A@RAINBOW2> Message-ID: >From my message on thursday.. ---------- Forwarded message ---------- Date: Thu, 6 Mar 2003 12:48:07 -0500 (EST) From: Subhendu Ghosh To: "'nagios-users at lists.sourceforge.net'" Subject: Re: [Nagios-users] problems using check_snmp to monitor sendmail On Thu, 6 Mar 2003, Daniel Finn wrote: > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because the value it's > returning is between 1 and 10? Now if I change the warning and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could help that would > be great. Also, I'm not subscribed to this list so if you could reply to me > via email that would be great. > The WARNING in the first case may be due to output on the stderr. Try the command with with "-m : " to prevent loading the mibs. On Fri, 7 Mar 2003, Daniel Finn wrote: > No, I downloaded and compiled the most recent version they offer on thier > site and it's still broken. Unfortunately I wasn't getting much help from > people on here so I wrote my own simple script that uses snmpget and either > returns OK or CRITICAL and why. > > -----Original Message----- > From: Rookwell at t-online.de [mailto:Rookwell at t-online.de] > Sent: Friday, March 07, 2003 1:46 AM > To: DFinn at studentadvantage.com > Subject: Nagios mailing list (check_snmp) .... > > > Hi, > > do you fix the check_snmp problem? > I want to check the netbios-sessions on a w2k-server, but it always return > "Warning....". > > Rookwell (Germany) > > Sorry, my english is not so good! > > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jay.pike at corecomm.com Fri Mar 7 16:25:10 2003 From: jay.pike at corecomm.com (Jay Pike) Date: Fri, 7 Mar 2003 10:25:10 -0500 Subject: Issue with downtime reporting. Message-ID: <20030307152509.GK14102@net-link.net> Hello all, I seem to be having an issue with Nagios Availability reporting functionality. Anytime a outage occurs during a scheduled downtime, Nagios reports that as unscheduled downtime (see attached image). Information about what I'm running: Debian Linux Unstable (only distro carrying Nagios) Nagios version 1.0 (nagios-mysql 1.0-6) The Nagios installation is mysql based (which I'm worried is the reason this is happening). jp -- __________________________________________________________________ / \ | James J. Pike Jr. Phone: 888.747.4638 | | Systems Engineer Direct Phone: 517-664-8610 | | CoreComm Inc. Http: http://www.core.com/ | | EMail: jay.pike at corecomm.com | | PGPKey: http://my.voyager.net/jaypike/pgpkey.txt | \ / ------------------------------------------------------------------ -------------- next part -------------- A non-text attachment was scrubbed... Name: screencap1.jpg Type: image/jpeg Size: 221535 bytes Desc: not available URL: From drich at employees.org Fri Mar 7 16:28:54 2003 From: drich at employees.org (Dan Rich) Date: Fri, 7 Mar 2003 07:28:54 -0800 (PST) Subject: Services disappear In-Reply-To: References: Message-ID: <38954.63.237.201.12.1047050934.squirrel@www.lapseofthought.com> Joe Stuart said: > I have a slight problem with services not showing up in the web > interface. I have about 84 entries with 44 of them being hosts. It will > consistently show 55 of the entries and randomly display all 84 at once. > Then after the next refresh it will revert back to showing only 55 > entries and there doesnt seem to be any ryme or reason to it. I'm > running nagios version 1.0 on redhat 7.3. Any help would be > appreciated. Make sure you do not have multiple copies of nagios running. I have seen things like this happen multiple times when a restart doesn't kill off the old copy of nagios. You end up with one copy running against your new config file and one copy running against an older version of the config. When you connect to the web interface, sometimes you get information from one, sometimes from the other. -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DFinn at studentadvantage.com Fri Mar 7 16:51:46 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Fri, 7 Mar 2003 10:51:46 -0500 Subject: Nagios mailing list (check_snmp) .... Message-ID: <80C364880EDAD511BE39009027B0DCB80434507B@RAINBOW2> I don't remember seeing that email from you but that doesn't fix the problem. -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Friday, March 07, 2003 10:35 AM To: Daniel Finn Cc: 'Rookwell at t-online.de'; 'nagios-users at lists.sourceforge.net' Subject: Re: [Nagios-users] RE: Nagios mailing list (check_snmp) .... >From my message on thursday.. ---------- Forwarded message ---------- Date: Thu, 6 Mar 2003 12:48:07 -0500 (EST) From: Subhendu Ghosh To: "'nagios-users at lists.sourceforge.net'" Subject: Re: [Nagios-users] problems using check_snmp to monitor sendmail On Thu, 6 Mar 2003, Daniel Finn wrote: > > Here's the problem I'm having with the snmp_check program. It always > reports back that it's either at a WARNING state or a CRITICAL state. > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > SNMP WARNING - 1 > > > Am I doing something wrong. Shouldn't it return OK because the value it's > returning is between 1 and 10? Now if I change the warning and critical > threshholds to be outside of what it's returning I get : > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > SNMP CRITICAL - *1* > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > system and I still have the same problem. If anyone could help that would > be great. Also, I'm not subscribed to this list so if you could reply to me > via email that would be great. > The WARNING in the first case may be due to output on the stderr. Try the command with with "-m : " to prevent loading the mibs. On Fri, 7 Mar 2003, Daniel Finn wrote: > No, I downloaded and compiled the most recent version they offer on thier > site and it's still broken. Unfortunately I wasn't getting much help from > people on here so I wrote my own simple script that uses snmpget and either > returns OK or CRITICAL and why. > > -----Original Message----- > From: Rookwell at t-online.de [mailto:Rookwell at t-online.de] > Sent: Friday, March 07, 2003 1:46 AM > To: DFinn at studentadvantage.com > Subject: Nagios mailing list (check_snmp) .... > > > Hi, > > do you fix the check_snmp problem? > I want to check the netbios-sessions on a w2k-server, but it always return > "Warning....". > > Rookwell (Germany) > > Sorry, my english is not so good! > > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 7 17:08:47 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 7 Mar 2003 10:08:47 -0600 Subject: Graphing service check results with cricket? Message-ID: http://apan.sourceforge.net/ > -----Original Message----- > From: Cian O'Sullivan [mailto:Cian at logic.bm] > Sent: Friday, March 07, 2003 9:07 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Graphing service check results with cricket? > > > I have a comprehensive cricket setup, and a very big Netsaint > setup. I will be moving to nagios shortly. Before I do > that, what is the best way to graph the service check results > via cricket? Are there any scripts that can read the service > check logs, parse the info into a form I can import with ease > to RRD? Has anyone worked on anything like this? > > Thanks very much. > > cian > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DTerrell at Delphi-Tech.com Fri Mar 7 17:33:26 2003 From: DTerrell at Delphi-Tech.com (DTerrell at Delphi-Tech.com) Date: Fri, 7 Mar 2003 11:33:26 -0500 Subject: SMB Pop-up Message-ID: <880E60DA7286AB4CBEECB01B169A63BD02867679@NJ-2K-Email1.delphi-tech.com> Just to let you know, we've been using the smb pop-up for a few days now. The smb-tng smbclient didn't like the usernames as much, so I dropped back to putting in just host names that I know of. As a third tier to this, we'll be adding cell text messages, so smb pop-ups won't be the last line of defense. Thanks so much for your help -Dave -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: Wednesday, March 05, 2003 12:40 PM To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SMB Pop-up Steve, Just to let you know, and all others, I followed your directions exactly and everything worked perfectly the first time! Also, I too am interested in this non-standard notification that you use ;-) -----Original Message----- From: Hagen Deike [mailto:Hagen_Deike at icon-scm.com] Sent: Wednesday, March 05, 2003 10:30 AM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Steve, Could you post the script to the list? I'm interested... :-D Thanks & Regards, Hagen Deike > -----Original Message----- > From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] > Sent: Mittwoch, 5. M?rz 2003 15:52 > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] SMB Pop-up > > - > the general consensus was that you could put multiple entries entries into > the e-mail or pager variables as no checking is done on the Nagios end, > and > that you could delimit them and use a notification script that strips the > values out and does the different notifications to both. > > I do something similar to what you are proposing and use two contacts - > one > for working hours, and one for out-of-hours support with the working hours > receiving the winpopup's, and the out-of-hours getting a SMS using > sendpage > and this works pretty well for me. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Fri Mar 7 17:52:25 2003 From: briank at nacs.net (Brian Kosick) Date: Fri, 07 Mar 2003 11:52:25 -0500 Subject: plugin problems.... In-Reply-To: <20030307164414.A39112@IPAustralia.Gov.AU> References: <3E67D611.6060300@nacs.net> <20030307164414.A39112@IPAustralia.Gov.AU> Message-ID: <3E68CE49.6040400@nacs.net> Thanks for the reply, No I did not even have epn compiled, which I promptly did. nagios -m Nagios 1.0 Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 11-24-2002 License: GPL External Data I/O ----------------- Object Data: TEMPLATE Status Data: DATABASE (MySQL) Retention Data: DATABASE (MySQL) Comment Data: DATABASE (MySQL) Downtime Data: DATABASE (MySQL) Performance Data: FILE Options ------- * Embedded Perl compiler (With caching) BTW, I've been building RPM's from the tar files, and whoever is in charge of the rpm specs may like to know that p1.pl is not in the rpm. I had to manually copy it over to /usr/sbin. I also got the mini_epn (which also is not in the rpm) Here's my results from the command line and via mini_epn ./check_ifstatus -H XXX.XXX.XXX.XXX.X Use of uninitialized value in sprintf at ./check_ifstatus line 194. CRITICAL: host 'XXX.XXX.XXX.X', interfaces up: 30, down: 1, dormant: 0
DS3 Controller B -- Standby: down ->
./mini_epn Enter file name: check_ifstatus -H XXX.XXX.XXX.X embedded perl plugin output was -2,CRITICAL: host 'XXX.XXX.XXX.X', interfaces up: 30, down: 1, dormant: 0
DS3 Controller B -- Standby: down ->
Enter file name: ERROR: No snmp response from XXX.XXX.XXX.X (alarm timeout) ExitTrap: 3 (Embed::check_5fifstatus) at (eval 1) line 4. ^^^^And after about 10 seconds this pops up and mini_epm exits ^^^^ Here's the check_rpc stuff ./check_rpc -H ginger -C nfs OK: RPC program nfs version 2 version 3 udp running ./mini_epn Enter file name: check_rpc -H ginger -C nfs embedded perl plugin output was -2,OK: RPC program nfs version 2 version 3 udp running Enter file name: ERROR: No response from RPC server (alarm) ExitTrap: 3 (Embed::check_5frpc) at (eval 1) line 4. Again the Error from the perl script/mini_epn comes approx 10 seconds after the check successfully runs... Stanley Hopcroft wrote: >Dear Sir, > >I would guess that your Nagios has the embedded Perl intrepreter support >(ePN). > >If that is not the case, then please ignore this noise. > >Thank you for reporting a bug in check_ifstatus: the uninitialised >variable is a coding fault. > > > >The ePN requires that all plugins be squeaky clean. > >The warning in check_ifstatus will lead to the ePN throwing the plugin >out: it won't be run and you will get the default plugin output 'No >putput'. > >I am using check_rpc with ePN. > >What version of check_rpc is it (check_rpc -V) ? >You could try it with the program number (100003) instead > >tsitc> /usr/local/nagios/libexec/check_rpc -H oradev -C 100003 >RPC ok: program (version 2) is running >tsitc> > >If it works, then there is also a coding error with check_rpc. > > > >Yours sincerely. > >-- >------------------------------------------------------------------------ >Stanley Hopcroft >------------------------------------------------------------------------ > >'...No man is an island, entire of itself; every man is a piece of the >continent, a part of the main. If a clod be washed away by the sea, >Europe is the less, as well as if a promontory were, as well as if a >manor of thy friend's or of thine own were. Any man's death diminishes >me, because I am involved in mankind; and therefore never send to know >for whom the bell tolls; it tolls for thee...' > >from Meditation 17, J Donne. > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 7 17:41:04 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 07 Mar 2003 11:41:04 -0500 (EST) Subject: Fwd: check_nagios In-Reply-To: <200303072213.11254.jasmine.chua@securecirt.com> References: <200303072213.11254.jasmine.chua@securecirt.com> Message-ID: If nagios is using a database for status then status.log is never updated - use plugins/contrib/check_nagios_db instead. -sg On Fri, 7 Mar 2003, Jasmine wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi I have the same problem too. And, would like to know hows its being solved. > - -rw-r--r-- 1 root root 0 Mar 7 22:05 status.log > Time on checking: Fri Mar 7 22:12:44 SGT 2003 > > On Friday 07 March 2003 21:20, Jens Kruse wrote: > > Hi, > > > > I couldn't find a solution for the following problem with google, so > > maybe someone has experienced this before ... > > > > check_nagios gives out the following ... > > > > nagios at monitor1-lx:~> /usr/local/nagios/libexec/check_nagios -F > > /usr/local/nagios/var/status.log -e 5 -C /usr/local/nagios/bin/nagios > > Nagios problem: located 80 processes, status log updated 1047042679 > > seconds ago > > > > though status.log is only some minutes old ... > > > > nagios at monitor1-lx:~> l var/status.log > > -rw-r--r-- 1 nagios nagios 0 M?r 7 13:50 var/status.log > > > > And the actual date is ok as well ... :-) > > > > nagios at monitor1-lx:~> date > > Fre M?r 7 14:14:28 MET 2003 > > > > Any hints where/what to look/check for? > > > > TIA, Jens > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Fri Mar 7 17:56:04 2003 From: briank at nacs.net (Brian Kosick) Date: Fri, 07 Mar 2003 11:56:04 -0500 Subject: plugin problems.... In-Reply-To: <20030307164414.A39112@IPAustralia.Gov.AU> References: <3E67D611.6060300@nacs.net> <20030307164414.A39112@IPAustralia.Gov.AU> Message-ID: <3E68CF24.7070307@nacs.net> Opps I forgot a few things... ./check_rpc -V check_rpc (nagios-plugins 1.3.0) 1.7 and I tried with the 100003 rather than nfs, they both worked. ./check_rpc -H ginger -C nfs OK: RPC program nfs version 2 version 3 udp running ./check_rpc -H ginger -C 100003 OK: RPC program 100003 version 2 version 3 udp running Stanley Hopcroft wrote: >Dear Sir, > >I would guess that your Nagios has the embedded Perl intrepreter support >(ePN). > >If that is not the case, then please ignore this noise. > >Thank you for reporting a bug in check_ifstatus: the uninitialised >variable is a coding fault. > > > >The ePN requires that all plugins be squeaky clean. > >The warning in check_ifstatus will lead to the ePN throwing the plugin >out: it won't be run and you will get the default plugin output 'No >putput'. > >I am using check_rpc with ePN. > >What version of check_rpc is it (check_rpc -V) ? >You could try it with the program number (100003) instead > >tsitc> /usr/local/nagios/libexec/check_rpc -H oradev -C 100003 >RPC ok: program (version 2) is running >tsitc> > >If it works, then there is also a coding error with check_rpc. > > > >Yours sincerely. > >-- >------------------------------------------------------------------------ >Stanley Hopcroft >------------------------------------------------------------------------ > >'...No man is an island, entire of itself; every man is a piece of the >continent, a part of the main. If a clod be washed away by the sea, >Europe is the less, as well as if a promontory were, as well as if a >manor of thy friend's or of thine own were. Any man's death diminishes >me, because I am involved in mankind; and therefore never send to know >for whom the bell tolls; it tolls for thee...' > >from Meditation 17, J Donne. > > >------------------------------------------------------- >This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger >for complex code. Debugging C/C++ programs can leave you feeling lost and >disoriented. TotalView can help you find your way. Available on major UNIX >and Linux platforms. Try it free. www.etnus.com >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 7 18:35:41 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 07 Mar 2003 12:35:41 -0500 (EST) Subject: plugin problems.... In-Reply-To: <3E68CE49.6040400@nacs.net> References: <3E68CE49.6040400@nacs.net> Message-ID: plugins version ?? > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Fri Mar 7 17:47:00 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Fri, 07 Mar 2003 11:47:00 -0500 (EST) Subject: Graphing service check results with cricket? In-Reply-To: References: Message-ID: On 07-Mar-2003 Carroll, Jim P [Contractor] wrote: > http://apan.sourceforge.net/ Don't bother. It doesn't work and they don't answer anything but the easiest questions in the mailing list. -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DFinn at studentadvantage.com Fri Mar 7 18:45:22 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Fri, 7 Mar 2003 12:45:22 -0500 Subject: Nagios mailing list (check_snmp) .... Message-ID: <80C364880EDAD511BE39009027B0DCB804345086@RAINBOW2> Sure. Here's the output using version 1.3-beta1: [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -v -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : /tmp/nagiosplug-1.3-beta1/plugins/check_snmp: invalid option -- v check_snmp: Unknown argument: (null) Usage: check_snmp -H -o [-w warn_range] [-c crit_range] [-C community] [-s string] [-r regex] [-R regexi] [-t timeout] [-l label] [-u units] [-d delimiter] [-D output-delimiter] check_snmp --help check_snmp --version [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : SNMP WARNING - 0 [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -d : SNMP problem - No data recieved from host CMD: /usr/bin/snmpget -m ALL -v 1 10.209.68.92 sapublic .1.3.6.1.4.1.2021.2.1.100.1 and here's netsaint-plugins version 1.2.9-4: [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp --version check_snmp (netsaint-plugins 1.2.9-4) 1.21.2.5 The netsaint plugins come with ABSOLUTELY NO WARRANTY. You may redistribute copies of the plugins under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING. [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : SNMP WARNING - 0 [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp -H 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -d : SNMP problem - No data recieved from host CMD: /usr/bin/snmpget -m ALL -v 1 10.209.68.92 sapublic .1.3.6.1.4.1.2021.2.1.100.1 it doesn't appear that either of these like verbose mode or the -m flag. Should I be using a different version? -----Original Message----- From: Subhendu Ghosh To: Daniel Finn Sent: 3/7/03 11:39 AM Subject: RE: [Nagios-users] RE: Nagios mailing list (check_snmp) .... Can you post the results running it with -v (verbose) output? -sg On Fri, 7 Mar 2003, Daniel Finn wrote: > I don't remember seeing that email from you but that doesn't fix the > problem. > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Friday, March 07, 2003 10:35 AM > To: Daniel Finn > Cc: 'Rookwell at t-online.de'; 'nagios-users at lists.sourceforge.net' > Subject: Re: [Nagios-users] RE: Nagios mailing list (check_snmp) .... > > > >From my message on thursday.. > > > ---------- Forwarded message ---------- > Date: Thu, 6 Mar 2003 12:48:07 -0500 (EST) > From: Subhendu Ghosh > To: "'nagios-users at lists.sourceforge.net'" > > Subject: Re: [Nagios-users] problems using check_snmp to monitor sendmail > > On Thu, 6 Mar 2003, Daniel Finn wrote: > > > > > > Here's the problem I'm having with the snmp_check program. It always > > reports back that it's either at a WARNING state or a CRITICAL state. > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > > SNMP WARNING - 1 > > > > > > Am I doing something wrong. Shouldn't it return OK because the value > it's > > returning is between 1 and 10? Now if I change the warning and critical > > threshholds to be outside of what it's returning I get : > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > > SNMP CRITICAL - *1* > > > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for this > > system and I still have the same problem. If anyone could help that > would > > be great. Also, I'm not subscribed to this list so if you could reply > to me > > via email that would be great. > > > > The WARNING in the first case may be due to output on the stderr. > > Try the command with with "-m : " to prevent loading the mibs. > > > > > On Fri, 7 Mar 2003, Daniel Finn wrote: > > > No, I downloaded and compiled the most recent version they offer on thier > > site and it's still broken. Unfortunately I wasn't getting much help from > > people on here so I wrote my own simple script that uses snmpget and > either > > returns OK or CRITICAL and why. > > > > -----Original Message----- > > From: Rookwell at t-online.de [mailto:Rookwell at t-online.de] > > Sent: Friday, March 07, 2003 1:46 AM > > To: DFinn at studentadvantage.com > > Subject: Nagios mailing list (check_snmp) .... > > > > > > Hi, > > > > do you fix the check_snmp problem? > > I want to check the netbios-sessions on a w2k-server, but it always return > > "Warning....". > > > > Rookwell (Germany) > > > > Sorry, my english is not so good! > > > > > > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Fri Mar 7 18:50:15 2003 From: briank at nacs.net (Brian Kosick) Date: Fri, 07 Mar 2003 12:50:15 -0500 Subject: plugin problems.... In-Reply-To: <3E68CE49.6040400@nacs.net> References: <3E67D611.6060300@nacs.net> <20030307164414.A39112@IPAustralia.Gov.AU> <3E68CE49.6040400@nacs.net> Message-ID: <3E68DBD7.6060000@nacs.net> I'm replying to myself here, I took a look at the spec file, and the rpm maintainers can ignore my comment about p1.pl not being in the rpm, I did not compile it with rpmbuild -ba nagios.spec --define'EMBPERL 1' , I had instead edited the configure lines in the spec. Doh! p1.pl and mini_epn are included when you do it right. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Fri Mar 7 18:56:40 2003 From: briank at nacs.net (Brian Kosick) Date: Fri, 07 Mar 2003 12:56:40 -0500 Subject: plugin problems.... In-Reply-To: References: Message-ID: <3E68DD58.6040807@nacs.net> Redhat 7.3 (fully updated) Perl 5.6.1 Nagios 1.0 Nagios Plugins 1.3 stable/released Subhendu Ghosh wrote: >plugins version ?? > > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sproba1 at llnl.gov Fri Mar 7 18:43:15 2003 From: sproba1 at llnl.gov (Judd Sproba) Date: Fri, 7 Mar 2003 09:43:15 -0800 Subject: Strange Directories Message-ID: <031201c2e4d1$085ee610$26dc7380@aisntx009> Every so often, I'll take a look around the structure of my nagios directory tree and I've been noticing that strange random directories seem to keep popping up and never disappear (even when I restart the nagios service). All of the directories are created within my base nagios root (/usr/local/nagios). I'm not sure if this is something I've done wrong on my part of if others have noticed similar behavior. If you've seen something similar to this, please enlighten me. Almost looks like a `mktemp -d`kind of output, but I don't have any scripts that call mktemp. Thanks, - Judd Here is just a sample of them: 4 drwx------ 2 nagios nagios 4096 Feb 21 05:44 y0hI9H 4 drwx------ 2 nagios nagios 4096 Mar 5 18:32 y4PXB7 4 drwx------ 2 nagios nagios 4096 Mar 5 18:49 y6rbEV 4 drwx------ 2 nagios nagios 4096 Mar 5 19:38 yFFaFN 4 drwx------ 2 nagios nagios 4096 Feb 21 05:42 ykN9gG 4 drwx------ 2 nagios nagios 4096 Feb 19 20:00 yp3JzA 4 drwx------ 2 nagios nagios 4096 Feb 19 18:18 yuZrYW 4 drwx------ 2 nagios nagios 4096 Feb 21 05:11 yuaBOb 4 drwx------ 2 nagios nagios 4096 Feb 28 17:50 yzKv21 4 drwx------ 2 nagios nagios 4096 Feb 28 17:47 z1DxoV 4 drwx------ 2 nagios nagios 4096 Feb 21 05:18 z26rQ3 4 drwx------ 2 nagios nagios 4096 Feb 19 19:50 z429ZZ 4 drwx------ 2 nagios nagios 4096 Feb 28 18:31 z5jJtl 4 drwx------ 2 nagios nagios 4096 Feb 28 17:16 z7xkui 4 drwx------ 2 nagios nagios 4096 Feb 21 05:37 zDnT6R 4 drwx------ 2 nagios nagios 4096 Feb 22 05:05 zG0wlb 4 drwx------ 2 nagios nagios 4096 Feb 19 20:03 zHP1G1 4 drwx------ 2 nagios nagios 4096 Feb 21 05:34 zJ58eJ 4 drwx------ 2 nagios nagios 4096 Feb 28 17:36 zJGbi1 4 drwx------ 2 nagios nagios 4096 Feb 26 05:10 zb0XjO 4 drwx------ 2 nagios nagios 4096 Feb 19 19:49 zm7pOB 4 drwx------ 2 nagios nagios 4096 Feb 19 19:24 zyaoKX -------------- next part -------------- An HTML attachment was scrubbed... URL: From Cian at logic.bm Fri Mar 7 19:25:57 2003 From: Cian at logic.bm (Cian O'Sullivan) Date: Fri, 7 Mar 2003 14:25:57 -0400 Subject: Solaris 8 package available? Message-ID: Just wondering if anyone has a Solaris 8 package of nagios compiled and ready to go. Dont want to re-invent the wheel Cheers Cian ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From christian.masopust at siemens.com Fri Mar 7 19:33:39 2003 From: christian.masopust at siemens.com (Masopust Christian) Date: Fri, 7 Mar 2003 19:33:39 +0100 Subject: AW: SMB Pop-up Message-ID: hi dave, i did it all like steve described and it works fine! i first tried it with old smbclient and hostname because i couldn't reach webpage of samba-tng. after talking to steve, he sent me the actual samba-tng and smbclient works fine at my site... but.... tng isn't really neccessary, as i found out also the old smbclient (2.2.7a) is sending messages to usernames!! you simply have to replace the hostname with the username! regards, chris -----Originalnachricht----- Von: DTerrell at Delphi-Tech.com An: nagios-users at lists.sourceforge.net Gesendet: 07.03.03 17:33 Betreff: RE: [Nagios-users] SMB Pop-up Just to let you know, we've been using the smb pop-up for a few days now. The smb-tng smbclient didn't like the usernames as much, so I dropped back to putting in just host names that I know of. As a third tier to this, we'll be adding cell text messages, so smb pop-ups won't be the last line of defense. Thanks so much for your help -Dave -----Original Message----- From: DTerrell at Delphi-Tech.com [mailto:DTerrell at Delphi-Tech.com] Sent: Wednesday, March 05, 2003 12:40 PM To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SMB Pop-up Steve, Just to let you know, and all others, I followed your directions exactly and everything worked perfectly the first time! Also, I too am interested in this non-standard notification that you use ;-) -----Original Message----- From: Hagen Deike [mailto:Hagen_Deike at icon-scm.com] Sent: Wednesday, March 05, 2003 10:30 AM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] SMB Pop-up Hi Steve, Could you post the script to the list? I'm interested... :-D Thanks & Regards, Hagen Deike > -----Original Message----- > From: Steve Freegard [mailto:steve.freegard at lbsltd.co.uk] > Sent: Mittwoch, 5. M?rz 2003 15:52 > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] SMB Pop-up > > - > the general consensus was that you could put multiple entries entries into > the e-mail or pager variables as no checking is done on the Nagios end, > and > that you could delimit them and use a notification script that strips the > values out and does the different notifications to both. > > I do something similar to what you are proposing and use two contacts - > one > for working hours, and one for out-of-hours support with the working hours > receiving the winpopup's, and the out-of-hours getting a SMS using > sendpage > and this works pretty well for me. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From drich at employees.org Fri Mar 7 19:58:16 2003 From: drich at employees.org (Dan Rich) Date: Fri, 7 Mar 2003 10:58:16 -0800 (PST) Subject: Config file parsing/reporting Message-ID: <51748.63.237.201.12.1047063496.squirrel@www.lapseofthought.com> Does anyone have any tools for parsing the config files? I am almost looking for a reporting/summary tool that will let me say things like "list all of the monitored hosts", or more importantly at this point "what are all of the services and who gets paged/e-mail when each one goes down"? -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From drich at employees.org Fri Mar 7 19:57:15 2003 From: drich at employees.org (Dan Rich) Date: Fri, 7 Mar 2003 10:57:15 -0800 (PST) Subject: Nagios pronunciation Message-ID: <51333.63.237.201.12.1047063435.squirrel@www.lapseofthought.com> We have been having a discussion about what the proper pronunciation of Nagios is so I figured I would ask the source. :) I'm leaning towards something that almost sounds Russian -- nog-e-os. We have a few people that seem to think it's more American -- nag-e-os (which might be correct, since it is constantly nagging us about systems :). There are a few other interpretations, but those are the two major ones. So, how does everyone else pronounce it, and to the authors, which one is correct? -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hidden at invalid Fri Mar 7 20:46:06 2003 From: hidden at invalid (Anonymous Writer) Date: Fri, 7 Mar 2003 20:46:06 +0100 (CET) Subject: How to configure check_http on port 81? Message-ID: <63304.80.133.98.98.1047066366.squirrel@vhost1.gh-online.net> Hi there, how must a template in services.cfg look like to use check_html on an other port then port 80? In some cases our servers run the apache daemon on port 81... Any ideas? thanks Anonymous Writer ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From brampling at methanex.com Fri Mar 7 20:42:35 2003 From: brampling at methanex.com (Blair Rampling) Date: Fri, 07 Mar 2003 11:42:35 -0800 Subject: Nagios pronunciation Message-ID: You could have checked the FAQ: http://www.nagios.org/faqs/viewfaq.php?faq_id=3&expand=false&showdesc=true - -- Blair Rampling >>> "Dan Rich" 03/07/03 10:57am >>> We have been having a discussion about what the proper pronunciation of Nagios is so I figured I would ask the source. :) I'm leaning towards something that almost sounds Russian -- nog-e-os. We have a few people that seem to think it's more American -- nag-e-os (which might be correct, since it is constantly nagging us about systems :). There are a few other interpretations, but those are the two major ones. So, how does everyone else pronounce it, and to the authors, which one is correct? -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From phil at bolthole.com Fri Mar 7 20:43:09 2003 From: phil at bolthole.com (Philip Brown) Date: Fri, 7 Mar 2003 11:43:09 -0800 Subject: Solaris 8 package available? In-Reply-To: ; from Cian@logic.bm on Fri, Mar 07, 2003 at 02:25:57PM -0400 References: Message-ID: <20030307114309.A54704@bolthole.com> On Fri, Mar 07, 2003 at 02:25:57PM -0400, Cian O'Sullivan wrote: > > Just wondering if anyone has a Solaris 8 package of nagios compiled and ready to go. > > Dont want to re-invent the wheel not yet. I was considering adding it to the packages available from www.blastwave.org but I'm already maintaining many many packages. it would be great if someone else in this mailing list would like to step up and volunteer. Build machines, and packaging help, are all available through blastwave.org I hope some folks will check it out. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 7 20:46:19 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 7 Mar 2003 13:46:19 -0600 Subject: Nagios pronunciation Message-ID: I pronounce it "This ROCKS!" ;) In fact, this is in the FAQ: http://www.nagios.org/faqs/viewfaq.php?faq_id=3&expand=false&showdesc=true jc > -----Original Message----- > From: Dan Rich [mailto:drich at employees.org] > Sent: Friday, March 07, 2003 12:57 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Nagios pronunciation > > > > We have been having a discussion about what the proper > pronunciation of Nagios > is so I figured I would ask the source. :) > > I'm leaning towards something that almost sounds Russian -- > nog-e-os. We have > a few people that seem to think it's more American -- > nag-e-os (which might be > correct, since it is constantly nagging us about systems :). > There are a few > other interpretations, but those are the two major ones. > > So, how does everyone else pronounce it, and to the authors, > which one is > correct? > > -- > Dan Rich | http://www.employees.org/~drich/ > | "Step up to red alert!" > "Are you sure, sir? > | It means changing the bulb > in the sign..." > | - Red Dwarf (BBC) > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Fri Mar 7 21:01:33 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Fri, 07 Mar 2003 12:01:33 -0800 Subject: How to configure check_http on port 81? In-Reply-To: <63304.80.133.98.98.1047066366.squirrel@vhost1.gh-online.net> References: <63304.80.133.98.98.1047066366.squirrel@vhost1.gh-online.net> Message-ID: <3E68FA9D.9060507@sbcglobal.net> Anonymous Writer wrote: >Hi there, > >how must a template in services.cfg look like to use check_html on an >other port then port 80? In some cases our servers run the apache daemon >on port 81... Any ideas? > >thanks > >Anonymous Writer > > > > Depends on what your checkcommands.cfg looks like. The default looks like this: # 'check_http' command definition define command{ command_name check_http command_line $USER1$/check_http -H $HOSTADDRESS$ -w 4 -c 6 } You can either add a "-p 81" above or add it in services.cfg: #services.cfg check_command check_http -p 81 -Sean ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From drich at employees.org Fri Mar 7 21:01:41 2003 From: drich at employees.org (Dan Rich) Date: Fri, 7 Mar 2003 12:01:41 -0800 (PST) Subject: Nagios pronunciation In-Reply-To: References: Message-ID: <38090.63.237.201.12.1047067301.squirrel@www.lapseofthought.com> Blair Rampling said: > You could have checked the FAQ: > > http://www.nagios.org/faqs/viewfaq.php?faq_id=3&expand=false&showdesc=true Argh!! We had two different people look at the FAQ and neither of us saw that page. Thanks! (admittedly, I just tried searching the FAQ for both pronounce and pronunciation -- neither returned any pages). >>>> "Dan Rich" 03/07/03 10:57am >>> > > We have been having a discussion about what the proper pronunciation of Nagios > is so I figured I would ask the source. :) > > I'm leaning towards something that almost sounds Russian -- nog-e-os. We have > a few people that seem to think it's more American -- nag-e-os (which might be > correct, since it is constantly nagging us about systems :). There are a few > other interpretations, but those are the two major ones. > > So, how does everyone else pronounce it, and to the authors, which one is > correct? > > -- > Dan Rich | http://www.employees.org/~drich/ > | "Step up to red alert!" "Are you sure, sir? > | It means changing the bulb in the sign..." > | - Red Dwarf (BBC) > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Marc.Gaumond at cum.qc.ca Fri Mar 7 21:10:50 2003 From: Marc.Gaumond at cum.qc.ca (Gaumond Marc) Date: Fri, 7 Mar 2003 15:10:50 -0500 Subject: install Nagios on Solaris 9 Message-ID: I tried to install Nagios on Solaris 9 for Intel pc. We want to implement on sparc station with over 6000 users. I went through all F.A.Q. RTFM and so on. I have installed-it under red hat Linux and every thing works just fine.(including most of the package and add-on) I went thought all the configuration files and all. Even GCC doesn't want to compile. Can you tell me before I start again under witch version of Solaris nagios will work? Clevermind dgti -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 2074 bytes Desc: not available URL: From jay.pike at corecomm.com Fri Mar 7 21:43:33 2003 From: jay.pike at corecomm.com (Jay Pike) Date: Fri, 7 Mar 2003 15:43:33 -0500 Subject: Availability reporting functionality issue Message-ID: <20030307204333.GB27920@net-link.net> Hello all, I seem to be having an issue with Nagios Availability reporting functionality. Anytime a outage occurs during a scheduled downtime, Nagios reports that as unscheduled downtime (see http://jinx.jinxed.net/~jaypike/screencap1.jpg ). Information about what I'm running: Debian Linux Unstable (only distro carrying Nagios) Nagios version 1.0 (nagios-mysql 1.0-6) Intel based hardware MySQL 3.23.55 (mysql-server) The Nagios installation is mysql based (which I'm worried is the reason this is happening). jp -- __________________________________________________________________ / \ | James J. Pike Jr. Phone: 888.747.4638 | | Systems Engineer Direct Phone: 517-664-8610 | | CoreComm Inc. Http: http://www.core.com/ | | EMail: jay.pike at corecomm.com | | PGPKey: http://my.voyager.net/jaypike/pgpkey.txt | \ / ------------------------------------------------------------------ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Fri Mar 7 20:57:15 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Fri, 07 Mar 2003 11:57:15 -0800 Subject: Debian Packages In-Reply-To: <1047048126.25517.2.camel@mithrandir> References: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> <1047048126.25517.2.camel@mithrandir> Message-ID: <3E68F99B.3080705@sbcglobal.net> > > >Hi List, >does anyone of you know, where to get recent debian packages for >nagios, or even better a server, which I can put into my >apt/sources.list...? > > > > >http://apt-get.org/search.php > > Be careful when using unofficial apt repositories such as that one. While you can often get the latest and greatest package, you lose the quality control provided by the Debian testing process and can easily screw up your system. Use apt-setup to configure your official, Debian apt repositories, and use unofficials ones to find cool stuff like KDE3. Also, to find the fastest apt mirror, use the netselect-apt package. http://www.debian.org/doc/manuals/apt-howto/ch-basico.en.html#s-netselect Sean ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Fri Mar 7 21:38:57 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Fri, 07 Mar 2003 15:38:57 -0500 (EST) Subject: install Nagios on Solaris 9 In-Reply-To: References: Message-ID: On 07-Mar-2003 Gaumond Marc wrote: > I tried to install Nagios on Solaris 9 for Intel pc. We want to implement > on sparc station with over 6000 users. I went through all F.A.Q. RTFM and > so on. I have installed-it under red hat Linux and every thing works just > fine.(including most of the package and add-on) I went thought all the > configuration files and all. Even GCC doesn't want to compile. Can you > tell me before I start again under witch version of Solaris nagios will > work? How about an error message or something... -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcolby at enterasys.com Fri Mar 7 21:10:36 2003 From: jcolby at enterasys.com (Colby, James) Date: Fri, 7 Mar 2003 15:10:36 -0500 Subject: statusmap.cgi question Message-ID: All - I'm having a problem accessing my statusmap.cgi and trends.cgi. I have successfully compiled all of the CGIs, but I am still getting this error when I try to view them in nagios: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at damascus.ctron.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. ------------------------------------------------------------------------ ---- Apache/1.3.20 Server at Port 80 And in the the server error log I have the following message [Fri Mar 7 14:50:50 2003] [error] [client 134.141.1.61] script not found or unable to stat: /usr/local/nagios /sbin/statusmap.cgi ld.so.1: statusmap.cgi: fatal: libgd.so.2: open failed: No such file or directory [Fri Mar 7 14:52:03 2003] [error] [client 134.141.1.61] Premature end of script headers: /usr/local/nagios/sb in/statusmap.cgi If I log into my nagios server, and try to execute the statusmap.cgi as the nagios user I get the following output: getcgivars(): Unsupported REQUEST_METHOD -> '' I'm guessing you're trying to execute the CGI from a command line. In order to do that, you need to set the REQUEST_METHOD environment variable to either "GET", "HEAD", or "POST". When using the GET and HEAD methods, arguments can be passed to the CGI by setting the "QUERY_STRING" environment variable. If you're using the POST method, data is read from standard input. Also of note: if you've enabled authentication in the CGIs, you must set the "REMOTE_USER" environment variable to be the name of the user you're "authenticated" as. I am running nagios version 1.0 on a soloris 2.7 server running apache 1.3.20 Thanks in advance for all of your help James ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Fri Mar 7 20:56:57 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Fri, 07 Mar 2003 11:56:57 -0800 Subject: Debian Packages In-Reply-To: <20030307142846.GA16833@UnderGrid.net> References: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> <20030307142846.GA16833@UnderGrid.net> Message-ID: <3E68F989.3000206@sbcglobal.net> Jeremy T. Bouse wrote: > You can add the following to get the nagios package on your machine: > > deb http://http.us.debian.org/debian unstable main contrib non-free > > Then you would 'apt-get install' either nagios-text, nagios-mysql or >nagios-pgsql... Although nagios-text would be the build most like the older >netsaint package... It is maintained by Turbo Fredriksson who also maintained >the netsaint packages. > > Jeremy > > I highly recommend staying away from the nagios deb package for the moment and just build from source to a single location. The nagios packages just aren't ready to use yet. This is a pretty good guide: http://www.onlamp.com/pub/a/onlamp/2002/09/05/nagios.html Nicki wrote: >Hi List, >does anyone of you know, where to get recent debian packages for >nagios, or even better a server, which I can put into my >apt/sources.list...? Use apt-cache search to find packages. venus:/home/sknox/nagios-1.0# apt-cache search nagios nagios-mysql - A host/service/network monitoring and management system. nagios-pgsql - A host/service/network monitoring and management system. nagios-text - A host/service/network monitoring and management system. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Fri Mar 7 22:10:16 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Fri, 7 Mar 2003 13:10:16 -0800 Subject: [OT] Re: Debian Packages In-Reply-To: <3E68F99B.3080705@sbcglobal.net> References: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> <1047048126.25517.2.camel@mithrandir> <3E68F99B.3080705@sbcglobal.net> Message-ID: <20030307211016.GA18108@UnderGrid.net> On Fri, Mar 07, 2003 at 11:57:15AM -0800, Sean Knox wrote: > Be careful when using unofficial apt repositories such as that one. > While you can often get the latest and greatest package, you lose the A > quality control provided by the Debian testing process and can easily > screw up your system. Use apt-setup to configure your official, Debian > apt repositories, and use unofficials ones to find cool stuff like KDE3. > You obviously either run stable(Woody) or testing(Sarge) as unstable(Sid) has KDE3.1 already... ii kdebase 3.1.0-2 KDE Base metapackage ii kdebase-bin 3.1.0-2 KDE Base (binaries) ii kdebase-data 3.1.0-2 KDE Base (shared data) ii kdebase-kio-pl 3.1.0-2 KDE I/O Slaves ii kdelibs-bin 3.1.0-2 KDE core binaries ii kdelibs-data 3.1.0-2 KDE core shared data ii kdelibs4 3.1.0-2 KDE core libraries ii kdepasswd 3.1.0-1 KDE password changer ii kdeprint 3.1.0-2 KDE Print ii kdesktop 3.1.0-2 KDE Desktop ii kdf 3.1.0-1 KDE disk free ii kdm 3.1.0-2 KDE Display Manager Jeremy ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Fri Mar 7 22:24:08 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Fri, 7 Mar 2003 16:24:08 -0500 Subject: Running Checks To Remote Hosts Over SSH Message-ID: <5593DA408212D511B0910002A513501F01D28917@phsexch20.mgh.harvard.edu> Hi there, We have a server which has only port 22 (ssh) open for remote connection. Isn't there a way to run checks to the nrpe client on the remote server over ssh? ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From greg at intouch.ca Fri Mar 7 22:28:36 2003 From: greg at intouch.ca (Greg Webster) Date: Fri, 7 Mar 2003 13:28:36 -0800 Subject: Differences between Nagios and Netsaint Message-ID: <20030307132836.2331b925.greg@intouch.ca> I'm trying to explain why I would prefer to use Nagios over Netsaint to my co-administrator and would like to get a bit better list than just "Netsaint is no longer being developed". Is there a resource that explains the differences/features? Are the bugs that have been found since the name change been fixed in Netsaint as well? This is only an issue since only the unstable release of Debian's apt-get lists Nagios. Thanks, Greg Webster ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Fri Mar 7 22:28:18 2003 From: mpowell at ena.com (Marc Powell) Date: Fri, 7 Mar 2003 15:28:18 -0600 Subject: statusmap.cgi question Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED531@mismail.ena.com> > -----Original Message----- > From: Colby, James [mailto:jcolby at enterasys.com] > Sent: Friday, March 07, 2003 2:11 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] statusmap.cgi question > [Fri Mar 7 14:50:50 2003] [error] [client 134.141.1.61] script not > found or unable to stat: /usr/local/nagios > /sbin/statusmap.cgi > ld.so.1: statusmap.cgi: fatal: libgd.so.2: open failed: No such file or > directory Do you have GD installed? If so, where is libgd.so.2 located? I'm not really familiar with lib paths under solaris but you may need to add the location of libgd.so.2 to that path (it's /etc/ld.so.conf under linux, maybe it's the same under solaris). You could also symlink it under /lib but that's messy. -- Marc ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Fri Mar 7 22:31:23 2003 From: mpowell at ena.com (Marc Powell) Date: Fri, 7 Mar 2003 15:31:23 -0600 Subject: Running Checks To Remote Hosts Over SSH Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED532@mismail.ena.com> check_by_ssh plugin. [mpowell at oscar mpowell]$ ~nagios/libexec/check_by_ssh --help check_by_ssh (nagios-plugins 1.3.0-alpha1) 1.1.1.1 The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute copies of the plugins under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING. Copyright (c) 1999 Karl DeBisschop (kdebisschop at alum.mit.edu) This plugin will execute a command on a remote host using SSH Usage: check_by_ssh [-f] [-t timeout] [-i identity] [-l user] -H [-n name] [-s servicelist] [-O outputfile] [-P port] check_by_ssh -V prints version info check_by_ssh -h prints more detailed help Options: -H, --hostname=HOST name or IP address of remote host -C, --command='COMMAND STRING' command to execute on the remote machine -f tells ssh to fork rather than create a tty -t, --timeout=INTEGER specify timeout (default: 10 seconds) [optional] -l, --logname=USERNAME SSH user name on remote host [optional] -i, --identity=KEYFILE identity of an authorized key [optional] -O, --output=FILE external command file for nagios [optional] -s, --services=LIST list of nagios service names, separated by ':' [optional] -n, --name=NAME short name of host in nagios configuration [optional] The most common mode of use is to refer to a local identity file with the '-i' option. In this mode, the identity pair should have a null passphrase and the public key should be listed in the authorized_keys file of the remote host. Usually the key will be restricted to running only one command on the remote server. If the remote SSH server tracks invocation agruments, the one remote program may be an agent that can execute additional commands as proxy To use passive mode, provide multiple '-C' options, and provide all of -O, -s, and -n options (servicelist order must match '-C' options) -- Marc > -----Original Message----- > From: Kaplan, Andrew H. [mailto:AHKAPLAN at PARTNERS.ORG] > Sent: Friday, March 07, 2003 3:24 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Running Checks To Remote Hosts Over SSH > > Hi there, > > We have a server which has only port 22 (ssh) open for remote connection. > Isn't > there a way to > run checks to the nrpe client on the remote server over ssh? > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The > debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcolby at enterasys.com Fri Mar 7 22:31:27 2003 From: jcolby at enterasys.com (Colby, James) Date: Fri, 7 Mar 2003 16:31:27 -0500 Subject: statusmap.cgi question Message-ID: Marc - Yes I do have the libraries installed. The library is installed in /usr/local/lib and the headers in /usr/local/include Thanks, James > -----Original Message----- > From: Colby, James [mailto:jcolby at enterasys.com] > Sent: Friday, March 07, 2003 2:11 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] statusmap.cgi question > [Fri Mar 7 14:50:50 2003] [error] [client 134.141.1.61] script not > found or unable to stat: /usr/local/nagios > /sbin/statusmap.cgi > ld.so.1: statusmap.cgi: fatal: libgd.so.2: open failed: No such file or > directory Do you have GD installed? If so, where is libgd.so.2 located? I'm not really familiar with lib paths under solaris but you may need to add the location of libgd.so.2 to that path (it's /etc/ld.so.conf under linux, maybe it's the same under solaris). You could also symlink it under /lib but that's messy. -- Marc ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Fri Mar 7 22:48:34 2003 From: mpowell at ena.com (Marc Powell) Date: Fri, 7 Mar 2003 15:48:34 -0600 Subject: Differences between Nagios and Netsaint Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED533@mismail.ena.com> More/Better reporting. Netsaint is no longer being maintained... Many Bug Fixes Netsaint is no longer being maintained... Template based config files. Netsaint is no longer being maintained... http://www.nagios.org/changelog.php Netsaint is no longer being maintained... You get the picture... Bug fixes have not been backported to Netsaint that I am aware of. I don't see anything in the Netsaint CVS that has been touched in the last 12 months and most of it is much longer than that. It makes no sense to install a program that is no longer being maintained when a compatible, newer version is, IMHO. -- Marc > -----Original Message----- > From: Greg Webster [mailto:greg at intouch.ca] > Sent: Friday, March 07, 2003 3:29 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Differences between Nagios and Netsaint > > > I'm trying to explain why I would prefer to use Nagios over Netsaint to my > co-administrator and would like to get a bit better list than just > "Netsaint is no longer being developed". > > Is there a resource that explains the differences/features? Are the bugs > that have been found since the name change been fixed in Netsaint as well? > > This is only an issue since only the unstable release of Debian's apt-get > lists Nagios. > > Thanks, > > Greg Webster > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The > debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Fri Mar 7 22:54:13 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Fri, 07 Mar 2003 13:54:13 -0800 Subject: [OT] Re: Debian Packages In-Reply-To: <20030307211016.GA18108@UnderGrid.net> References: <010701c2e49d$ce6c7d10$d0551ec3@linkm.de> <1047048126.25517.2.camel@mithrandir> <3E68F99B.3080705@sbcglobal.net> <20030307211016.GA18108@UnderGrid.net> Message-ID: <3E691505.8030200@sbcglobal.net> Jeremy T. Bouse wrote: > > You obviously either run stable(Woody) or testing(Sarge) as >unstable(Sid) has KDE3.1 already... > > > It's been a while since I checked KDE3's status on the official apt sites. I run Debian on servers and don't install things like X or KDE, so I wouldn't know. The point I was trying to make was to be cautious of non-official Debian apt repositories. Things break. Sean ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From whiatt at upstanding.com Fri Mar 7 23:09:15 2003 From: whiatt at upstanding.com (Hiatt, William) Date: Fri, 7 Mar 2003 14:09:15 -0800 Subject: Passive Service Checks from E-mail? Message-ID: <71520D1F83A0C6408D99155D4CCAE0AA26C3@exch-be-01.upstanding.com> I need to monitor some backup jobs from Veritas BackupEXEC. Unfortunately, BackupEXEC doesn't send SNMP traps when a job is successful (Figure that out!). But, it can send an e-mail out when a job has failed or is successful. Does anyone know the best way to parse this e-mail, or is anybody doing something like this already? Just thought I'd check-in before I spent the time to write one myself. Thanks william ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 7 23:16:25 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 7 Mar 2003 16:16:25 -0600 Subject: Running Checks To Remote Hosts Over SSH Message-ID: You would use check_by_ssh, but you wouldn't need NRPE in that case. Caveat: If you're planning to do a *lot* of checks, SSH doesn't scale well. jc > -----Original Message----- > From: Kaplan, Andrew H. [mailto:AHKAPLAN at PARTNERS.ORG] > Sent: Friday, March 07, 2003 3:24 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Running Checks To Remote Hosts Over SSH > > > Hi there, > > We have a server which has only port 22 (ssh) open for remote > connection. Isn't > there a way to > run checks to the nrpe client on the remote server over ssh? > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 7 23:37:57 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 7 Mar 2003 16:37:57 -0600 Subject: Differences between Nagios and Netsaint Message-ID: There is also the other side of the coin: If it ain't broke, don't fix it. This might be where the other SA is coming from. *However*, the problem with that approach is, "you can pay now, or you can pay later." Meaning, you can work now on making the migration, or you can wait till you absolutely need to solve a problem (or add in a feature) and work like a frightened monkey trying to implement it. As a point of reference, just look at any environment where they don't keep their operating systems up to a supported level. One word: Legacy. Food for thought. jc > -----Original Message----- > From: Marc Powell [mailto:mpowell at ena.com] > Sent: Friday, March 07, 2003 3:49 PM > To: Greg Webster; nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Differences between Nagios and Netsaint > > > More/Better reporting. > Netsaint is no longer being maintained... > Many Bug Fixes > Netsaint is no longer being maintained... > Template based config files. > Netsaint is no longer being maintained... > http://www.nagios.org/changelog.php > Netsaint is no longer being maintained... > > You get the picture... Bug fixes have not been backported to Netsaint > that I am aware of. I don't see anything in the Netsaint CVS that has > been touched in the last 12 months and most of it is much longer than > that. It makes no sense to install a program that is no longer being > maintained when a compatible, newer version is, IMHO. > > -- > Marc > > > -----Original Message----- > > From: Greg Webster [mailto:greg at intouch.ca] > > Sent: Friday, March 07, 2003 3:29 PM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] Differences between Nagios and Netsaint > > > > > > I'm trying to explain why I would prefer to use Nagios over Netsaint > to my > > co-administrator and would like to get a bit better list than just > > "Netsaint is no longer being developed". > > > > Is there a resource that explains the differences/features? Are the > bugs > > that have been found since the name change been fixed in Netsaint as > well? > > > > This is only an issue since only the unstable release of Debian's > apt-get > > lists Nagios. > > > > Thanks, > > > > Greg Webster > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of TotalView, The > > debugger > > for complex code. Debugging C/C++ programs can leave you > feeling lost > and > > disoriented. TotalView can help you find your way. > Available on major > UNIX > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > ::: Messages without supporting info will risk being sent > to /dev/null > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Fri Mar 7 23:38:36 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Sat, 8 Mar 2003 09:38:36 +1100 Subject: SMB Pop-up In-Reply-To: ; from christian.masopust@siemens.com on Fri, Mar 07, 2003 at 07:33:39PM +0100 References: Message-ID: <20030308093832.A233@IPAustralia.Gov.AU> Dear Gentlemen, On Fri, Mar 07, 2003 at 07:33:39PM +0100, Masopust Christian wrote: > > hi dave, > > i did it all like steve described and it works fine! > i first tried it with old smbclient and hostname because i couldn't > reach webpage of samba-tng. > after talking to steve, he sent me the actual samba-tng and smbclient > works fine at my site... > > but.... tng isn't really neccessary, as i found out also the old > smbclient (2.2.7a) is sending messages to usernames!! you simply have > to replace the hostname with the username! I think smbclient has always had this capability; that is what NetBIOS names and winpopup is all about. If you don't have a broadcast network - ie all NetBIOS names are resolved by broadcast (shame) - you need a functioning WINS to accept the username 'name registrations' from the clients and return the IP Address to smbclient. > > regards, > chris > my understanding of the TNG branch of Samba is that it is a code fork designed to provide viable domaain controllers. AFAIK, the client tools in TNG - except the rpcclient - do not receive much of any emphasis. I think you will find, as the TNG developers say, that smbclient in HEAD (ie the release Samba branch [2.2.x]) is the most stable and accurate way of interacting with an SMB file server. OTOH, if you want to replace NT/2K domain controllers and save on CALs and OS licenses, and you are _not_ afraid of code and work, TNG is a proven alternative. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From JSnodgrass at sourcerefrigeration.com Sat Mar 8 00:48:04 2003 From: JSnodgrass at sourcerefrigeration.com (JSnodgrass at sourcerefrigeration.com) Date: Fri, 7 Mar 2003 15:48:04 -0800 Subject: Late Notifications Message-ID: I have my configuration set-up to send alerts to out phones but they are falling about 2 hours behind reality. Is there some time delay setting that I am missing? Also if someone has copies of the following files please send them to me? Statusmap.cgi Histogram.cgi Trends.cgi Jason Snodgrass, A+, CCA, CLP Network Support Source Refrigeration & HVAC, Inc. (714) 578-2327 -------------- next part -------------- An HTML attachment was scrubbed... URL: From Stanley.Hopcroft at IPAustralia.Gov.AU Sat Mar 8 01:10:35 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Sat, 8 Mar 2003 11:10:35 +1100 Subject: Passive Service Checks from E-mail? In-Reply-To: <71520D1F83A0C6408D99155D4CCAE0AA26C3@exch-be-01.upstanding.com>; from whiatt@upstanding.com on Fri, Mar 07, 2003 at 02:09:15PM -0800 References: <71520D1F83A0C6408D99155D4CCAE0AA26C3@exch-be-01.upstanding.com> Message-ID: <20030308111025.B233@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say I think you facre two probelms in having an email produce a passive service check result, On Fri, Mar 07, 2003 at 02:09:15PM -0800, Hiatt, William wrote: > I need to monitor some backup jobs from Veritas BackupEXEC. > Unfortunately, BackupEXEC doesn't send SNMP traps when a job is > successful (Figure that out!). But, it can send an e-mail out when a job > has failed or is successful. Does anyone know the best way to parse this > e-mail, or is anybody doing something like this already? Just thought > I'd check-in before I spent the time to write one myself. 1 Having your MTA recognise that the letter (from Veritas) needs special handling ie programmatic handling If you are using Sendmail this requires some customisation (local rule 0) to recognise the letter and a 'mailer' to invoke the program that parses the letter and formats the passive service check result (appending it to the command queue) 2 Writing the program that slurps the letter, spits out the headers, and extracts the backup status from what's left, and submitting the properly formatted check result. Here's what I use for an SMS email gateway (same concept) to have letters addressed to .page delivered via an SMS gateway implemented in mail2sms.pl. LOCAL_RULE_0 R$+.page $#sms $: $1 R$+.page<@$=w>$* $#sms $: $1 R$+.page<@$=w.>$* $#sms $: $1 and here is the mailer (sms.m4) ifdef(`SMS_MAILER_ARGS',, `define(`SMS_MAILER_ARGS', mail2sms.pl $u )') ifdef(`SMS_MAILER_PATH',, `define(`SMS_MAILER_PATH', /usr/local/sms/bin/mail2sms.pl)') ifdef(`SMS_MAILER_MAX',, `define(`SMS_MAILER_MAX', 1000)') POPDIVERT #################################### ### SMS Mailer specification ### #################################### VERSIONID(`@(#)sms.m4 1.00 (Berkeley) 6/15/2000') Msms, P=SMS_MAILER_PATH, F=lms, M=SMS_MAILER_MAX, A=SMS_MAILER_ARGS This is simply standard Sendmail (m4) stuff. Nothing fancy. The Sendmail cognoscenti will probably do it a lot more simply. Both items 1 and 2 (vi) I think are quite managable and tractable Anyone experienced in Sendmail could do 1 in 0.5 - 1 hour (maybe two with testing) Item 2 is pretty straight forward in Perl (<= 50 lines unless you want to process the headers to check for forgeries etc). > > Thanks > william > This is a _good_ idea. I was suprised to see that some backup products don't generate traps that one might expect. In fact, you could allow email from anything to submit Nag service check results if you wanted. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdunlap_z at yahoo.com Sat Mar 8 01:32:29 2003 From: tdunlap_z at yahoo.com (Tom Dunlap) Date: Fri, 7 Mar 2003 16:32:29 -0800 (PST) Subject: Statusmap background and icons not loading Message-ID: <20030308003229.47577.qmail@web14107.mail.yahoo.com> I have the following defined in cgi.cfg but I do not see the background map or the icons. I have double-checked the paths for the map and the icons. Any ideas? Thank you Tom Dunlap # STATUSMAP BACKGROUND IMAGE # This option allows you to specify an image to be used as a # background in the statusmap CGI. It is assumed that the image # resides in the HTML images path (i.e. /usr/local/nagios/share/images). # This path is automatically determined by appending "/images" # to the path specified by the 'physical_html_path' directive. # Note: The image file may be in GIF, PNG, JPEG, or GD2 format. # However, I recommend that you convert your image to GD2 format # (uncompressed), as this will cause less CPU load when the CGI # generates the image. #statusmap_background_image=smbackground.gd2 statusmap_background_image=ME-Map-800.jpeg # EXTENDED HOST INFORMATION # Note: All images must be placed in the /logos subdirectory under # the HTML images path (i.e. /usr/local/nagios/share/images/logos/). # This path is automatically determined by appending "/images/logos" # to the path specified by the 'physical_html_path' directive. #hostextinfo[rosie]=/serverinfo/rosie.html;win40.gif;win40.jpg;win40.gd2;NT Server 4.0;;; hostextinfo[hnlfs1]=;win40.png;win40.png;win40.gd2;Windows 2000 Server;;; hostextinfo[hnlfs2]=;win40.png;win40.png;win40.gd2;Windows 2000 Server;;; __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From adalle at ncf.ca Sat Mar 8 02:10:33 2003 From: adalle at ncf.ca (Andre Dalle) Date: Fri, 07 Mar 2003 20:10:33 -0500 Subject: Solaris 8 package available? In-Reply-To: <20030307114309.A54704@bolthole.com> References: <20030307114309.A54704@bolthole.com> Message-ID: <20030308011033.GB14974@ncf.ca> What should a Nagios package use as a base? "/usr/local/nagios" or directly into "/usr/local" like most Solaris pkgs? In the /usr/local case I'd suggest HTML and CGI content would live in /usr/local/share/nagios/{html,cgi} It looks like the blastwave site uses /opt/csw/ for packages? I try to avoid too much stuff in /opt mysql. Any opinions on where to install nagios for Solaris? Perhaps I should stick with the default /usr/local/nagios/ if the Nagios guys will host the package. On Fri, Mar 07, 2003 at 11:43:09AM -0800, Philip Brown wrote: > On Fri, Mar 07, 2003 at 02:25:57PM -0400, Cian O'Sullivan wrote: > > > > Just wondering if anyone has a Solaris 8 package of nagios compiled and ready to go. > > > > Dont want to re-invent the wheel > > not yet. I was considering adding it to the packages available from > www.blastwave.org > > but I'm already maintaining many many packages. it would be great if > someone else in this mailing list would like to step up and volunteer. > > Build machines, and packaging help, are all available through blastwave.org > I hope some folks will check it out. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Sat Mar 8 02:44:00 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Fri, 7 Mar 2003 17:44:00 -0800 Subject: Solaris 8 package available? In-Reply-To: <20030308011033.GB14974@ncf.ca> References: <20030307114309.A54704@bolthole.com> <20030308011033.GB14974@ncf.ca> Message-ID: <20030308014400.GA4909@UnderGrid.net> On Fri, Mar 07, 2003 at 08:10:33PM -0500, Andre Dalle wrote: > It looks like the blastwave site uses /opt/csw/ for packages? I try to > avoid too much stuff in /opt mysql. Actually it's quite common for third-party software to install itself within the /opt directory tree... Even the Solaris 8 SPARC machines in the SourceForge compile farm use /opt/csw for the third-party software... In that case I wouldn't think a pre-built package would be off by using /opt/csw for it just as *BSD ports usually use /usr/local as their base... Jeremy ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ben.Farris at key3media.com Sat Mar 8 02:56:21 2003 From: Ben.Farris at key3media.com (Ben.Farris at key3media.com) Date: Fri, 7 Mar 2003 17:56:21 -0800 Subject: nagios and Solaris 8 problem Message-ID: I have Solaris with the Jan 2003 patchcluster installed. Everything appears to compile properly. However if I try to call the nagios binary i get an error: root at barbrady # ./nagios -v /opt/nagios/etc/nagios.cfg nagios: Cannot find ELF Killed If I do an ldd on nagios and get ldd: nagios: file has insecure interpreter ELF Does anyone have any ideas what is wrong?? Thanks, Ben ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Cian at logic.bm Sat Mar 8 03:08:17 2003 From: Cian at logic.bm (Cian O'Sullivan) Date: Fri, 7 Mar 2003 22:08:17 -0400 Subject: Solaris 8 package available? Message-ID: I agree to put the stuff in /opt I however dont put stuff in /opt/csw as having packages all over can get confusing. Whats wrong with... /opt/nagios binaries /etc/nagios configs /var/nagios logs ? -----Original Message----- From: Jeremy T. Bouse [mailto:jeremy+nagios at undergrid.net] Sent: Friday, March 07, 2003 9:44 PM To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Solaris 8 package available? On Fri, Mar 07, 2003 at 08:10:33PM -0500, Andre Dalle wrote: > It looks like the blastwave site uses /opt/csw/ for packages? I try to > avoid too much stuff in /opt mysql. Actually it's quite common for third-party software to install itself within the /opt directory tree... Even the Solaris 8 SPARC machines in the SourceForge compile farm use /opt/csw for the third-party software... In that case I wouldn't think a pre-built package would be off by using /opt/csw for it just as *BSD ports usually use /usr/local as their base... Jeremy ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Sat Mar 8 04:12:32 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 07 Mar 2003 22:12:32 -0500 Subject: Differences between Nagios and Netsaint In-Reply-To: <20030307132836.2331b925.greg@intouch.ca> References: <20030307132836.2331b925.greg@intouch.ca> Message-ID: <1047093151.1116.5.camel@miles.debisschop.net> On Fri, 2003-03-07 at 16:28, Greg Webster wrote: > I'm trying to explain why I would prefer to use Nagios over Netsaint to my co-administrator and would like to get a bit better list than just "Netsaint is no longer being developed". > > Is there a resource that explains the differences/features? Are the bugs that have been found since the name change been fixed in Netsaint as well? > > This is only an issue since only the unstable release of Debian's apt-get lists Nagios. I would completely ignore the name change. As plugin developers, we do. To ask "should I use nagios or netsaint is the same as to ask should I use the current release of mozilla, or should I stop accepting source code updates for as of a year ago, even though they are released by the devlopers. They are the same program. The only thing that changed was the name. Netsaint is exaclty eqaul to Nagios of more than a year ago. -- Karl ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Sat Mar 8 05:45:44 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 07 Mar 2003 23:45:44 -0500 (EST) Subject: Nagios mailing list (check_snmp) .... In-Reply-To: <80C364880EDAD511BE39009027B0DCB804345086@RAINBOW2> References: <80C364880EDAD511BE39009027B0DCB804345086@RAINBOW2> Message-ID: plugins version 1.3.0 has a verbose mode. (not the betas) -sg On Fri, 7 Mar 2003, Daniel Finn wrote: > Sure. Here's the output using version 1.3-beta1: > > [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -v -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : > /tmp/nagiosplug-1.3-beta1/plugins/check_snmp: invalid option -- v > check_snmp: Unknown argument: (null) > > Usage: check_snmp -H -o [-w warn_range] [-c crit_range] > [-C community] [-s string] [-r regex] [-R regexi] [-t > timeout] > [-l label] [-u units] [-d delimiter] [-D output-delimiter] > check_snmp --help > check_snmp --version > [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : > SNMP WARNING - 0 > [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -d : > SNMP problem - No data recieved from host > CMD: /usr/bin/snmpget -m ALL -v 1 10.209.68.92 sapublic > .1.3.6.1.4.1.2021.2.1.100.1 > > > and here's netsaint-plugins version 1.2.9-4: > > [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp --version > check_snmp (netsaint-plugins 1.2.9-4) 1.21.2.5 > The netsaint plugins come with ABSOLUTELY NO WARRANTY. You may redistribute > copies of the plugins under the terms of the GNU General Public License. > For more information about these matters, see the file named COPYING. > [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : > SNMP WARNING - 0 > [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -d : > SNMP problem - No data recieved from host > CMD: /usr/bin/snmpget -m ALL -v 1 10.209.68.92 sapublic > .1.3.6.1.4.1.2021.2.1.100.1 > > > it doesn't appear that either of these like verbose mode or the -m flag. > Should I be using a different version? > -----Original Message----- > From: Subhendu Ghosh > To: Daniel Finn > Sent: 3/7/03 11:39 AM > Subject: RE: [Nagios-users] RE: Nagios mailing list (check_snmp) .... > > Can you post the results running it with -v (verbose) output? > > -sg > > On Fri, 7 Mar 2003, Daniel Finn wrote: > > > I don't remember seeing that email from you but that doesn't fix the > > problem. > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Friday, March 07, 2003 10:35 AM > > To: Daniel Finn > > Cc: 'Rookwell at t-online.de'; 'nagios-users at lists.sourceforge.net' > > Subject: Re: [Nagios-users] RE: Nagios mailing list (check_snmp) .... > > > > > > >From my message on thursday.. > > > > > > ---------- Forwarded message ---------- > > Date: Thu, 6 Mar 2003 12:48:07 -0500 (EST) > > From: Subhendu Ghosh > > To: "'nagios-users at lists.sourceforge.net'" > > > > Subject: Re: [Nagios-users] problems using check_snmp to monitor > sendmail > > > > On Thu, 6 Mar 2003, Daniel Finn wrote: > > > > > > > > > > Here's the problem I'm having with the snmp_check program. It > always > > > reports back that it's either at a WARNING state or a CRITICAL > state. > > > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > > > SNMP WARNING - 1 > > > > > > > > > Am I doing something wrong. Shouldn't it return OK because the > value > > it's > > > returning is between 1 and 10? Now if I change the warning and > critical > > > threshholds to be outside of what it's returning I get : > > > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > > > SNMP CRITICAL - *1* > > > > > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for > this > > > system and I still have the same problem. If anyone could help that > > > would > > > be great. Also, I'm not subscribed to this list so if you could > reply > > to me > > > via email that would be great. > > > > > > > The WARNING in the first case may be due to output on the stderr. > > > > Try the command with with "-m : " to prevent loading the mibs. > > > > > > > > > > On Fri, 7 Mar 2003, Daniel Finn wrote: > > > > > No, I downloaded and compiled the most recent version they offer on > thier > > > site and it's still broken. Unfortunately I wasn't getting much > help from > > > people on here so I wrote my own simple script that uses snmpget and > > either > > > returns OK or CRITICAL and why. > > > > > > -----Original Message----- > > > From: Rookwell at t-online.de [mailto:Rookwell at t-online.de] > > > Sent: Friday, March 07, 2003 1:46 AM > > > To: DFinn at studentadvantage.com > > > Subject: Nagios mailing list (check_snmp) .... > > > > > > > > > Hi, > > > > > > do you fix the check_snmp problem? > > > I want to check the netbios-sessions on a w2k-server, but it always > return > > > "Warning....". > > > > > > Rookwell (Germany) > > > > > > Sorry, my english is not so good! > > > > > > > > > > > > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Sat Mar 8 05:42:32 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 07 Mar 2003 23:42:32 -0500 (EST) Subject: (no subject) In-Reply-To: <9F6689758D87D51191180002A55CB988067FF37C@pb350exc.ingprime.com> References: <9F6689758D87D51191180002A55CB988067FF37C@pb350exc.ingprime.com> Message-ID: you need to define the commands in nrpe.cfg on the machine running the nrpe daemon. On the nagios machine - call check_nrpe with the command name defined in nrpe.cfg -sg On Fri, 7 Mar 2003, Torres, Joe wrote: > Help > > > Question > > Once you setup your nrpe daemon on your remote host how do you setup the > service for this? > > Do you setup the check_nrpe command on the nagios server under the > services.cfg file and how because the doc is not to clear > > For example if I am checking PING on the remote server do I setup the > services.cfg file on nagios > With the following command > > Check_nrpe!check_ping -w 30 -c 20 ? > > Thanks for your help > > > Joe Torres > Prime Brokerage I.T. > ABN AMRO Incorporated > 350 Park Ave. > New York,N.Y.10022 > Phone-212 251-3924 > Fax-212 251-3950 > Email-jtorres at abnamroprime.com > -- ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From phil at bolthole.com Sat Mar 8 07:11:38 2003 From: phil at bolthole.com (Philip Brown) Date: Fri, 7 Mar 2003 22:11:38 -0800 Subject: Solaris 8 package available? In-Reply-To: ; from Cian@logic.bm on Fri, Mar 07, 2003 at 10:08:17PM -0400 References: Message-ID: <20030307221138.A5801@bolthole.com> On Fri, Mar 07, 2003 at 10:08:17PM -0400, Cian O'Sullivan wrote: > I agree to put the stuff in /opt I however dont put stuff in /opt/csw as > having packages all over can get confusing. Packages arent "all over". Setting your PATH to include /opt/csw/bin, gets you use of all normal packages distributed by blastwave. > > Whats wrong with... > > /opt/nagios binaries > /etc/nagios configs > /var/nagios logs /usr/local is best viewed as "locally compiled stuff". By definition, anything compiled by other people is not "locally compiled". Therefore, people making solaris packages for others, should not put them in /usr/local. The Solaris/SysV standard is to put those things under /opt. Standards are good. The advantage to blastwave's /opt/csw approach is that if the sysadmin CHOOSES to, they can either symlink, or lofs-mount, /opt/csw, to be /usr/local It then will look like a "normal" default compile. You can't do that with your suggestion. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Sat Mar 8 07:44:57 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Sat, 8 Mar 2003 07:44:57 +0100 Subject: Passive Service Checks from E-mail? In-Reply-To: <20030308111025.B233@IPAustralia.Gov.AU>; from Stanley.Hopcroft@IPAustralia.Gov.AU on Sat, Mar 08, 2003 at 11:10:35AM +1100 References: <71520D1F83A0C6408D99155D4CCAE0AA26C3@exch-be-01.upstanding.com> <20030308111025.B233@IPAustralia.Gov.AU> Message-ID: <20030308074457.F1450@hpce.nec.com> On Sat, Mar 08, 2003 at 11:10:35AM +1100, Stanley Hopcroft wrote: > On Fri, Mar 07, 2003 at 02:09:15PM -0800, Hiatt, William wrote: > > > I need to monitor some backup jobs from Veritas BackupEXEC. > > Unfortunately, BackupEXEC doesn't send SNMP traps when a job is > > successful (Figure that out!). But, it can send an e-mail out when a job > > has failed or is successful. Does anyone know the best way to parse this > > e-mail, or is anybody doing something like this already? Just thought > > I'd check-in before I spent the time to write one myself. > > 1 Having your MTA recognise that the letter (from Veritas) needs special > handling ie programmatic handling > > 2 Writing the program that slurps the letter, spits out the headers, and > extracts the backup status from what's left, and submitting the properly > formatted check result. Hmm, what are the disadvantages of simply using check_log(2.pl) on the mail file? Rasmus ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Sat Mar 8 10:52:37 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Sat, 8 Mar 2003 20:52:37 +1100 Subject: Passive Service Checks from E-mail? In-Reply-To: <20030308074457.F1450@hpce.nec.com>; from rplewe@hpce.nec.com on Sat, Mar 08, 2003 at 07:44:57AM +0100 References: <71520D1F83A0C6408D99155D4CCAE0AA26C3@exch-be-01.upstanding.com> <20030308111025.B233@IPAustralia.Gov.AU> <20030308074457.F1450@hpce.nec.com> Message-ID: <20030308205232.A262@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Sat, Mar 08, 2003 at 07:44:57AM +0100, Rasmus Plewe wrote: > On Sat, Mar 08, 2003 at 11:10:35AM +1100, Stanley Hopcroft wrote: > > On Fri, Mar 07, 2003 at 02:09:15PM -0800, Hiatt, William wrote: > > > > > I need to monitor some backup jobs from Veritas BackupEXEC. > > > Unfortunately, BackupEXEC doesn't send SNMP traps when a job is > > > successful (Figure that out!). But, it can send an e-mail out when a job > > > has failed or is successful. Does anyone know the best way to parse this > > > e-mail, or is anybody doing something like this already? Just thought > > > I'd check-in before I spent the time to write one myself. > > > > 1 Having your MTA recognise that the letter (from Veritas) needs special > > handling ie programmatic handling > > > > 2 Writing the program that slurps the letter, spits out the headers, and > > extracts the backup status from what's left, and submitting the properly > > formatted check result. > > Hmm, what are the disadvantages of simply using check_log(2.pl) on the > mail file? > None whatever apart from, 1 =:) spoiling a good story 2 (I think) that the information provided by the mail log is <= 1 bit ie mail has arrived or not. Even traps (some of them) carry more information than that. However, if you only want to act on the receipt of a letter - without any more interpretation - your suggestion is much simpler and more maintainable. > > Rasmus > Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jamie.rossi at ntlworld.com Sat Mar 8 17:06:38 2003 From: jamie.rossi at ntlworld.com (Jamie Rossi) Date: Sat, 8 Mar 2003 16:06:38 -0000 Subject: Help!!!! Message-ID: <000601c2e58c$b7273f60$fd470050@homeworkstation> Hi I recently installed Nagios on a RedHat 7.3 box. The install went fine, the web interface went fine also and can now be accessed via authentication. The libexec contains the plugins which work from the command line fine. I tested check http -I www.whatever.com and it returned the results fine. When I add services and hosts in the cfg files they are as the sample files. However, the monitoring doesn't work with the Status Information reading as "(Return code of 126 is out of bounds - plugin may be missing) " Its almost as if the services file or hosts file doesn't know where the libexec directory is...but I can't find where to set that. I have rub ./nagios restart which checks the config and it tells me everything is OK. What am I doing wrong? Kind Regards Jamie Rossi jamie.rossi at ntlworld.com Tel: +44(0)20 83301128 Mobile: +44(0)7773 427252 Fax: +44(0)7973 232745 MSN: jamesrossi at hotmail.com ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dylan at packetbell.com Sat Mar 8 17:25:42 2003 From: dylan at packetbell.com (Dylan VanHerpen) Date: Sat, 08 Mar 2003 09:25:42 -0700 Subject: Install did not create /usr/local/nagios/etc Message-ID: <3E6A1986.2010408@packetbell.com> I just started installing Nagios. I closely followed the instructions, but when I list the contents of /usr/local/nagios, I only have: bin sbin share var The etc directory is not there. I also looked in /etc and searched for nagios.cfg. Thanks, Dylan. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rouilj at cs.umb.edu Sat Mar 8 19:59:06 2003 From: rouilj at cs.umb.edu (John P. Rouillard) Date: Sat, 08 Mar 2003 13:59:06 -0500 Subject: Nagios and event correlation: plugging in sec simple event correlator Message-ID: <200303081859.NAA10073@cs.umb.edu> Hi all: I get a number of problems that are expected. E.G. high bandwidth usage when jumpstarting a system, or that I want additional thresholding (more than 5 passive events received in a given time) etc.. I would like to add sec (simple event correlator) http://www.estpak.ee/~risto/sec/ to the filtering chain in nagios. Does anybody have any ideas on how to integrate these tools? For purely passive events, I can try using sec to transfer passive events from a sec input pipe to the nagios command pipe. However I also want to suppress events that come from active polls based on other occurrences on the network. I am guessing that I can do something with event triggers, but I am not quite sure how to start, so I thought I would ask here. -- rouilj John Rouillard =========================================================================== My employers don't acknowledge my existence much less my opinions. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rouilj at cs.umb.edu Sat Mar 8 20:03:06 2003 From: rouilj at cs.umb.edu (John P. Rouillard) Date: Sat, 08 Mar 2003 14:03:06 -0500 Subject: Differentiating traps and dynamic alerts. Message-ID: <200303081903.OAA10189@cs.umb.edu> I have nagios collecting traps. Currently I have all traps combing into a single "snmp_trap" event. What I would like to do is have different trap events for each interface on my switches. Some of these switches run to 96 interfaces. I really don't like the prospect of configuring hundreds of events that are different only for the interface index number. How do people deal with multiple sub-cases of a given event, so that instances of a problem aren't hidden. Is the only way to manually configure every possible permutation? -- rouilj John Rouillard =========================================================================== My employers don't acknowledge my existence much less my opinions. ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mmcclure at pneservices.com Sat Mar 8 17:49:21 2003 From: mmcclure at pneservices.com (Mike McClure) Date: Sat, 8 Mar 2003 10:49:21 -0600 (CST) Subject: Install did not create /usr/local/nagios/etc In-Reply-To: <3E6A1986.2010408@packetbell.com> References: <3E6A1986.2010408@packetbell.com> Message-ID: <2933.192.168.1.9.1047142161.squirrel@xyzzy.homeip.net> Did you search the FAQ? http://www.nagios.org/faqs/viewfaq.php?faq_id=49 > I just started installing Nagios. I closely followed the instructions, > but when I list the contents of /usr/local/nagios, I only have: > > bin sbin share var > > The etc directory is not there. I also looked in /etc and searched for > nagios.cfg. > > Thanks, Dylan. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any > issue. > ::: Messages without supporting info will risk being sent to /dev/null > > -- Mike McClure, CCIE # 5125, CISSP # 30232 PNE Services, Inc. - http://www.pneservices.com mmcclure at pneservices.com mobile: 913-636-5590 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jb at bw-networx.net Sun Mar 9 12:49:34 2003 From: jb at bw-networx.net (Joern Bredereck) Date: Sun, 9 Mar 2003 12:49:34 +0100 (CET) Subject: Plugins Crash with NetBSD 1.5.3/PPC Message-ID: Hi, has anyone testet the currently available plugins (nagiosplug-1.3-beta1.tar.gz) with NetBSD 1.5.3 for PowerPC? bash-2.05# uname -a NetBSD apfel1 1.5.3 NetBSD 1.5.3 (GENERIC) #5: Mon Jul 1 20:45:48 PDT 2002 briggs at cheetah:/usr/src/sys/arch/macppc/compile/GENERIC macppc I compiled them without any errors with bash-2.05# gcc -v Reading specs from /usr/pkg/gcc-2.95.3/lib/gcc-lib/powerpc--netbsd/2.95.3/specs gcc version 2.95.3 20010315 (release) (NetBSD nb3) But, when I try to run them, they crash like: bash-2.05# /usr/local/nagios/libexec/check_users -w 20 -c 25 Illegal instruction The binary itself seems to be ok, because without any parameters I get the syntax instructions without crash: bash-2.05# /usr/local/nagios/libexec/check_users Usage: check_users -w -c It seems to me, that the plugins crash when they try to gather any information from the system. Any hints, or even workarounds? Are there precompiled plugins for NetBSD 1.5.x/PPC available? TIA, J?rn Bredereck PGP-Key available: http://www.bw-networx.net/public-key.asc ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Bernd.Bartmann at sohanet.de Sun Mar 9 14:07:34 2003 From: Bernd.Bartmann at sohanet.de (Bernd Bartmann) Date: Sun, 09 Mar 2003 14:07:34 +0100 Subject: Looking for IPSEC VPN check plugin Message-ID: <3E6B3C96.7060509@sohanet.de> Does anybody know if there is a plugin available to check if a remote IPSEC VPN service is still running (UDP port 500 and IP protocol 50)? Thanks in advance! -- Dipl.-Ing. (FH) Bernd Bartmann SoHaNet Technology GmbH / Kaiserin-Augusta-Allee 10-11 / 10553 Berlin Software / Hardware / Netzwerke * Entwicklung / Verkauf / Wartung Fon: +49 30 214783-44 / Fax: +49 30 214783-46 ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Sun Mar 9 18:50:05 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Sun, 9 Mar 2003 09:50:05 -0800 Subject: Looking for IPSEC VPN check plugin In-Reply-To: <3E6B3C96.7060509@sohanet.de> References: <3E6B3C96.7060509@sohanet.de> Message-ID: <20030309175005.GA19418@UnderGrid.net> From my understanding of how most IKE implimentations work the check_udp plugin is not capable of doing this. There would need to be a check_ike plugin crafted and it would need to understand and utilize the IKE protocol to actually verify it is operational. Just merely connecting to 500/udp is not enough... As for checking for ESP (protocol 50), GRE (protocol 47) and AH (protocol 51) which are commonly used in IPSEC VPN services you can't really check for that in any manner I can think of as there is no real way I can think of to confirm without having a security association (SA) established with the VPN gateway server... So in essence to test for them you'd have to bring up a VPN tunnel to test this... These are just my observations and personal testing of check_udp against my already running and operational IPSEC IKE server and not getting anything back to verify it as up.. Jeremy On Sun, Mar 09, 2003 at 02:07:34PM +0100, Bernd Bartmann wrote: > Does anybody know if there is a plugin available to check if a remote > IPSEC VPN service is still running (UDP port 500 and IP protocol 50)? > > Thanks in advance! > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From df at dune.org Mon Mar 10 04:09:28 2003 From: df at dune.org (df at dune.org) Date: Mon, 10 Mar 2003 04:09:28 +0100 Subject: Statusmap, Internet routers, and blocked PINGs Message-ID: <001401c2e6b2$767a7820$6901a8c0@arrakis> Hello I am actually testing a few nagios configs for my setup.. My question mostly concerns routers of the internet. Some of my ISP's are blocking traceroute/pings on their net, causing the check_ping utility to fail. Here is an exemple of what a ping to those servers return: 36 bytes from somerouter.someisp.com (xxx.xxx.xxx.xxx): Communication prohibited by filter Vr HL TOS Len ID Flg off TTL Pro cks Src Dst 4 5 00 5400 e788 0 0000 34 01 d323 xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx At the moment, i only declare those routers without any default checks (in hosts.cfg), nor services checks (services.cfg).. It results that on my statusmaps, those hosts are shown RED/FAULTY.. I also disabled the notification for those hosts so i'm not anoyed by messages telling me the hosts are down.. My question is the following, would their be a way to make those hosts i cannot ping nor access any open ports, to be shown as GREEN/OK hosts on my statusmaps ? Maybe another plugin that would recognize those messages, and make the routers status as OK ? I know it's a little fancy but.. :) Thank you for the help ! -------------- next part -------------- An HTML attachment was scrubbed... URL: From securityguy at ikano.com Mon Mar 10 06:09:40 2003 From: securityguy at ikano.com (Robert Galloway) Date: Sun, 9 Mar 2003 22:09:40 -0700 Subject: Statusmap, Internet routers, and blocked PINGs Message-ID: <200303092209.AA1333068068@mail.ikano.com> Use "check_dummy" for your host and service check. Thanks, Robert S. Galloway Chief Network Security Engineer IKANO Communications ...the Internet branding company Official Data Networking Services Provider for the Salt Lake Olympic Winter Games of 2002 securityguy at ikano.com 801-415-8089 ---------- Original Message ---------------------------------- From: Date: Mon, 10 Mar 2003 04:09:28 +0100 >Hello > >I am actually testing a few nagios configs for my setup.. >My question mostly concerns routers of the internet. > >Some of my ISP's are blocking traceroute/pings on their net, causing the check_ping utility to fail. > >Here is an exemple of what a ping to those servers return: >36 bytes from somerouter.someisp.com (xxx.xxx.xxx.xxx): Communication prohibited by filter >Vr HL TOS Len ID Flg off TTL Pro cks Src Dst > 4 5 00 5400 e788 0 0000 34 01 d323 xxx.xxx.xxx.xxx xxx.xxx.xxx.xxx > >At the moment, i only declare those routers without any default checks (in hosts.cfg), nor services checks (services.cfg).. >It results that on my statusmaps, those hosts are shown RED/FAULTY.. >I also disabled the notification for those hosts so i'm not anoyed by messages telling me the hosts are down.. > >My question is the following, would their be a way to make those hosts i cannot ping nor access any open ports, >to be shown as GREEN/OK hosts on my statusmaps ? >Maybe another plugin that would recognize those messages, and make the routers status as OK ? > >I know it's a little fancy but.. :) > >Thank you for the help ! > > > ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From parmy at WSSPL.com Mon Mar 10 08:21:13 2003 From: parmy at WSSPL.com (Parameshwar) Date: Mon, 10 Mar 2003 12:51:13 +0530 Subject: Return Code of 127 Message-ID: <30BFDEA66FF4D41191EB00D0B765BC6F813BBF@medha.wsspl.com> Hi, This is my very first question to the mailing list. Hope this mailing list helps me to solve the problems which I am facing at present. I have installed and configured nagios-1.0 with the nagiosplug-1.3. Looks like the basic plugin "check_ping" is not working for me. It works fine from the command prompt but not from the services.cfg file due to which I am not able to proceed further. The status of the host is displayed as "Down" even when it can be pinged. The status information states some thing like this "Return code of 127 is out of bounds - plugin may be missing". Please help me how to go about it. Thanks in Advance, -Parmy -------------- next part -------------- An HTML attachment was scrubbed... URL: From Brad at pretzel.com.au Mon Mar 10 08:39:21 2003 From: Brad at pretzel.com.au (Brad Dunn) Date: Mon, 10 Mar 2003 15:39:21 +0800 Subject: Check_dns Message-ID: <131A385F21AAD311BD6400902763781D01DB2560@Z8> Just a quick question, is there anyway I can obtain a copy of the file (normally in /usr/local/nagios/libexec/) check_dns? The exsisting file I had became corrupt and I was just hoping I might be able to download them individually incase it happens again. thanks brad ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From info at exsilia.net Mon Mar 10 09:34:04 2003 From: info at exsilia.net (Exsilia Internet Services) Date: Mon, 10 Mar 2003 09:34:04 +0100 (CET) Subject: Return Code of 127 In-Reply-To: <30BFDEA66FF4D41191EB00D0B765BC6F813BBF@medha.wsspl.com> References: <30BFDEA66FF4D41191EB00D0B765BC6F813BBF@medha.wsspl.com> Message-ID: <33923.212.178.7.53.1047285244.squirrel@embrace.selwerd.nl> Hello, > This is my very first question to the mailing list. Hope this mailing > list helps me to solve the problems which I am facing at present. I have > installed and configured nagios-1.0 with the nagiosplug-1.3. Looks like > the basic plugin "check_ping" is not working for me. It works fine from > the command prompt but not from the services.cfg file due to which I am > not able to proceed further. The status of the host is displayed as > "Down" even when it can be pinged. The status information states some > thing like this "Return code of 127 is out of bounds - plugin may be > missing". Please help me how to go about it. I had this problem with the notification tools I use (sms_client). If everything is alright nagios runs as a non-root user, ie. 'nagios'. Could you verify if the check_ping plugin can be ran by the nagios user? Also, if you have added/removed/changed any subgroups the Nagios user is in, you have to restart Nagios! Hope this helps. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Mon Mar 10 11:08:31 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Mon, 10 Mar 2003 10:08:31 -0000 Subject: Plugins Crash with NetBSD 1.5.3/PPC Message-ID: <53104E20A25CD411B556009027E50636064D5410@pnnemp02.pn.egg.com> Joern, Please can you try with the final v1.3 of nagiosplug. There have been lots of fixes in the build process since beta1. I don't think we've had anyone reported successes with NetBSD on PowerPC - please let us know how you get on. Ton > -----Original Message----- > From: Joern Bredereck [SMTP:jb at bw-networx.net] > Sent: Sunday, March 09, 2003 11:50 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Plugins Crash with NetBSD 1.5.3/PPC > > Hi, > > has anyone testet the currently available plugins > (nagiosplug-1.3-beta1.tar.gz) with NetBSD 1.5.3 for PowerPC? > > bash-2.05# uname -a > NetBSD apfel1 1.5.3 NetBSD 1.5.3 (GENERIC) #5: Mon Jul 1 20:45:48 PDT > 2002 briggs at cheetah:/usr/src/sys/arch/macppc/compile/GENERIC macppc > > I compiled them without any errors with > > bash-2.05# gcc -v > Reading specs from > /usr/pkg/gcc-2.95.3/lib/gcc-lib/powerpc--netbsd/2.95.3/specs > gcc version 2.95.3 20010315 (release) (NetBSD nb3) > > But, when I try to run them, they crash like: > > bash-2.05# /usr/local/nagios/libexec/check_users -w 20 -c 25 > Illegal instruction > > The binary itself seems to be ok, because without any parameters I get the > syntax instructions without crash: > > bash-2.05# /usr/local/nagios/libexec/check_users > > Usage: check_users -w -c > > It seems to me, that the plugins crash when they try to gather any > information from the system. Any hints, or even workarounds? > > Are there precompiled plugins for NetBSD 1.5.x/PPC available? > > TIA, > > J?rn Bredereck > > PGP-Key available: http://www.bw-networx.net/public-key.asc > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The > debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From thiel at ksan.de Mon Mar 10 11:11:26 2003 From: thiel at ksan.de (Florian Thiel) Date: Mon, 10 Mar 2003 11:11:26 +0100 Subject: weird problems with hostgroups/services/inheritance Message-ID: <20030310101126.GO6944@grok.noroute.de> Hi! For all our local servers I have a setup with explicit host definitions for each one of them. They all inherit a standard template and services are specified with multiple entries in the host_name line, if applicable. This part of the setup works fine. I have another group of servers spread throughout the city. They are all similiar, so I have set them up like this. -One template including all the relevant settings. -specific host entries containing host_name, Alias and address -one hostgroup which contains all these hosts -service entries for these hosts are referenced not through host_name but through hostgroup_name nagios -v CONFFILE gives no errors, it detects all hosts. The Status Map (2D) is also working correctly all the time. Nearly all the other views behave strange. -In the "Tactical Overview" the services appaear as disabled. -In "Service Details" the services seem to appear only a few minutes after I reloaded nagios. Everytime I reload it, they disappear again. -In "Host Details" they appear only very seldom. -"Status Summary" shows the hostgroup but most of the time shows "no matching hosts/services" -"Status Grid" is the same What could that be? May I not have services which only specify hostgroup_name? Florian -- Florian Thiel - Medienzentrum Kassel Systembetreuung Internet- und Kommunikationstechnik Kasseler Schulen am Netz - http://www.medienzentrum-kassel.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Markus.Kraus.hp at sysde.eads.net Mon Mar 10 12:14:32 2003 From: Markus.Kraus.hp at sysde.eads.net (Kraus, Markus) Date: Mon, 10 Mar 2003 12:14:32 +0100 Subject: Tip how to compile (nagios whith) histogram.cgi,statusmap.cgi, tr ends.cgi Message-ID: Hello @, I often read about problems in compiling these special cgis. Besides I had the same problems. Now I have maybe found the reason (for me it works). # After installing everything recommended in particular: ######################################################## rpm -qa | grep gd #gd-devel-1.8.4-9 #gd-1.8.4-9 rpm -qa | grep jpeg #libjpeg-6b-21 #libjpeg-devel-6b-21 rpm -qa | grep png #libpng-1.2.2-6 #libpng10-1.0.13-5 #libpng10-devel-1.0.13-5 # Test the following: ##################### find /usr -name "libgd.so*" #/usr/lib/libgd.so.1 #/usr/lib/libgd.so.1.8 #/usr/lib/libgd.so.1.8.4 #/usr/lib/libgd.so find /usr -name "libjpeg.so*" #/usr/lib/libjpeg.so.62 #/usr/lib/libjpeg.so.62.0.0 #/usr/lib/libjpeg.so find /usr -name "libpng.so*" #/usr/lib/libpng.so.3.1.2.2 #/usr/lib/libpng.so.3 #/usr/lib/libpng.so.2.1.0.13 #/usr/lib/libpng.so.2 # So far so good. Everything is in place besides "/usr/lib/libpng.so", so create a link: ############################################################################ ############ cd /usr/lib/ ln -s libpng12.so.0.1.2.2 libpng.so # Add the Libraries path to "/etc/ld.so.conf" and update: ######################################################### echo "/usr/lib" >> /etc/ld.so.conf ldconfig # configure/make: ################# make clean # if you make already a ./configure that doesn't work ./configure --with-gd-lib=/usr/lib --with-gd-inc=/usr/include make all # you don't need to 'make install' if you have an running nagios installation # just copy the missing cgis from .../cgi/ That's it! On my RedHat 8.0 Server everything works fine with this workaround. Best regards Markus _____________________________________________________________ Markus Kraus UNIX Service Operations _____________________________________________________________ ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Mon Mar 10 12:41:04 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Mon, 10 Mar 2003 11:41:04 +0000 Subject: Nagios & database support In-Reply-To: <001401c2e6b2$767a7820$6901a8c0@arrakis> References: <001401c2e6b2$767a7820$6901a8c0@arrakis> Message-ID: Dear All, I was wondering if somebody could clarify to me how Nagios can support logging status data, ie the results of all service and host checks to a database file. We have been running Nagios for almost a year now and the log files are rather large, plus we wish to manipulate the data to perform trending etc. Therefore in order to do this what do we have to do. I can see two choice here : 1. Global event handlers to manually copy the data into a mysql database of my choosing - however this would be messy as all data would have to go into one table. 2. Re-compile Nagios for database support - but does this store the service and hosts results or just the configuration ? Any help and pearls of wisdom would be very gratefully received !!! Thanks Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: From AHKAPLAN at PARTNERS.ORG Mon Mar 10 13:49:07 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Mon, 10 Mar 2003 07:49:07 -0500 Subject: Running Checks To Remote Hosts Over SSH Message-ID: <5593DA408212D511B0910002A513501F01D2891A@phsexch20.mgh.harvard.edu> Hi Jim, Having the nrpe daemon on the client system won't interfere with the check_by_ssh operation will it? -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Friday, March 07, 2003 5:16 PM To: Kaplan, Andrew H.; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Running Checks To Remote Hosts Over SSH You would use check_by_ssh, but you wouldn't need NRPE in that case. Caveat: If you're planning to do a *lot* of checks, SSH doesn't scale well. jc > -----Original Message----- > From: Kaplan, Andrew H. [mailto:AHKAPLAN at PARTNERS.ORG] > Sent: Friday, March 07, 2003 3:24 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Running Checks To Remote Hosts Over SSH > > > Hi there, > > We have a server which has only port 22 (ssh) open for remote > connection. Isn't > there a way to > run checks to the nrpe client on the remote server over ssh? > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From loek at amaze.nl Mon Mar 10 14:18:44 2003 From: loek at amaze.nl (loek at amaze.nl) Date: Mon, 10 Mar 2003 14:18:44 +0100 Subject: notifications from single host. Message-ID: <20030310141844.D9309@amaze.nl> hi all, I've got a question about the notificatios which get send out by nagios, Is it possible to send notifications from a single host to different contact groups? A customer wants to get notifications from his machine, but we dont want to get him notifications from other machines. Is it possible to configure hosts.cfg with 'contact_group customername' ? Or how should I configure nagios, so it will send notifications from a single host, to a contactgroup? thanks in advance, Loek van der Linden ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From henrik at lewander.com Mon Mar 10 14:54:30 2003 From: henrik at lewander.com (Henrik Lewander) Date: Mon, 10 Mar 2003 14:54:30 +0100 Subject: Plugins timeout Message-ID: <01dc01c2e70c$93900bf0$05c6a8c0@europe.ad.flextronics.com> Hi! Sometimes one of my servers are heavily loaded and I get a "CRITICAL - Plugin timed out after 10 seconds" message from Nagios. I would like to increase this timeout, but have been unable to find a setting for this. Does one exist? Regards, Henrik ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stanislaw.szczygiel at amerbank.pl Mon Mar 10 16:04:53 2003 From: stanislaw.szczygiel at amerbank.pl (=?iso-8859-2?Q?Stanis=B3aw_Szczygie=B3?=) Date: Mon, 10 Mar 2003 16:04:53 +0100 Subject: how to compile check_cluster? Message-ID: <14B0262CF202D311A9B10008C7FA43E3016B4393@ACO_NT_I> Hello, Please help... Im not programmer, Im just user. Can anyone help me how to compile check_cluster? I found the source in CVS, what I should do now? There is no help in docs, or on mailing lists... Stanis?aw Szczygie? ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ralf.Schreg at telemarkt-ag.de Mon Mar 10 15:32:05 2003 From: Ralf.Schreg at telemarkt-ag.de (Schreg, Ralf) Date: Mon, 10 Mar 2003 15:32:05 +0100 Subject: AW: statusmap.cgi question Message-ID: <755175A1CAD8CD419B42E8F9FAFA709B2E60@mail.telemarkt.netz> I have nearly the same problem - but only with the Layout Method "User-supplied coords": Viewing statusmaps with "User-supplied coords" can't be viewed because of an "internal error". In the appache-log there's only a line "Premature end of script headers: /usr/local/nagios/sbin/statusmap.cgi" But: All other Layout-Methods are working. What's going wrong? Ralf Schreg Manager IT Teamleiter Systemadministration TELEMARKT AG Telefon: +49.(0)7121.344.178 -----Urspr?ngliche Nachricht----- Von: Colby, James [mailto:jcolby at enterasys.com] Gesendet: Freitag, 7. M?rz 2003 21:11 An: nagios-users at lists.sourceforge.net Betreff: [Nagios-users] statusmap.cgi question All - I'm having a problem accessing my statusmap.cgi and trends.cgi. I have successfully compiled all of the CGIs, but I am still getting this error when I try to view them in nagios: Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at damascus.ctron.com and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. ------------------------------------------------------------------------ ---- Apache/1.3.20 Server at Port 80 And in the the server error log I have the following message [Fri Mar 7 14:50:50 2003] [error] [client 134.141.1.61] script not found or unable to stat: /usr/local/nagios /sbin/statusmap.cgi ld.so.1: statusmap.cgi: fatal: libgd.so.2: open failed: No such file or directory [Fri Mar 7 14:52:03 2003] [error] [client 134.141.1.61] Premature end of script headers: /usr/local/nagios/sb in/statusmap.cgi If I log into my nagios server, and try to execute the statusmap.cgi as the nagios user I get the following output: getcgivars(): Unsupported REQUEST_METHOD -> '' I'm guessing you're trying to execute the CGI from a command line. In order to do that, you need to set the REQUEST_METHOD environment variable to either "GET", "HEAD", or "POST". When using the GET and HEAD methods, arguments can be passed to the CGI by setting the "QUERY_STRING" environment variable. If you're using the POST method, data is read from standard input. Also of note: if you've enabled authentication in the CGIs, you must set the "REMOTE_USER" environment variable to be the name of the user you're "authenticated" as. I am running nagios version 1.0 on a soloris 2.7 server running apache 1.3.20 Thanks in advance for all of your help James ------------------------------------------------------- This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger for complex code. Debugging C/C++ programs can leave you feeling lost and disoriented. TotalView can help you find your way. Available on major UNIX and Linux platforms. Try it free. www.etnus.com _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Mon Mar 10 16:22:10 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 10 Mar 2003 09:22:10 -0600 Subject: Running Checks To Remote Hosts Over SSH Message-ID: It shouldn't. Unless you feel the overwhelming urge to set the NRPE daemon to run on port 22. ;) jc > -----Original Message----- > From: Kaplan, Andrew H. [mailto:AHKAPLAN at PARTNERS.ORG] > Sent: Monday, March 10, 2003 6:49 AM > To: Carroll, Jim P [Contractor] > Cc: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Running Checks To Remote Hosts Over SSH > > > Hi Jim, > > Having the nrpe daemon on the client system won't interfere with the > check_by_ssh operation will it? > > > -----Original Message----- > From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] > Sent: Friday, March 07, 2003 5:16 PM > To: Kaplan, Andrew H.; nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Running Checks To Remote Hosts Over SSH > > > You would use check_by_ssh, but you wouldn't need NRPE in that case. > > Caveat: If you're planning to do a *lot* of checks, SSH > doesn't scale well. > > jc > > > > -----Original Message----- > > From: Kaplan, Andrew H. [mailto:AHKAPLAN at PARTNERS.ORG] > > Sent: Friday, March 07, 2003 3:24 PM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] Running Checks To Remote Hosts Over SSH > > > > > > Hi there, > > > > We have a server which has only port 22 (ssh) open for remote > > connection. Isn't > > there a way to > > run checks to the nrpe client on the remote server over ssh? > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of > > TotalView, The debugger > > for complex code. Debugging C/C++ programs can leave you > > feeling lost and > > disoriented. TotalView can help you find your way. Available > > on major UNIX > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent > to /dev/null > > > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sheken at top-consulting.net Mon Mar 10 16:48:45 2003 From: sheken at top-consulting.net (George Breahna) Date: Mon, 10 Mar 2003 10:48:45 -0500 Subject: FreeBSD & Nagios - revisited Message-ID: <001701c2e71c$884b1e00$2700a8c0@pulsar> Hey guys, before I start let me tell you that I did read the previous messages and it has not solved my problems. Here's what I have done so far on FreeBSD 4.6-Release. configured & installed libjpeg in /usr/local/libjpg configured & installed libpng in /usr/local/libpng configured & installed gd-2.0.11 in /usr/local/gd ( it has found all the libraries, png, jpg, etc, etc ) I updated my ld searchpath and it sees all the libs in jpg/png/gd dirs I configure nagios using with-gd-lib and with-gd-inc set to the proper directories, yet I still get that dreaded message checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no What am I doing wrong ? I tried using the default libs that come with the system ( from the ports collection ), and I used --with-gd-lib and --with-gd-inc as another user mentioned here but that also failed. My only guess right now is that I am missing gd-devel-1.8.44 ?? I did some research and I think it's only available in RPM form for RedHat.. Any clues are more than welcome! Cheers, George -------------- next part -------------- An HTML attachment was scrubbed... URL: From DFinn at studentadvantage.com Mon Mar 10 17:06:23 2003 From: DFinn at studentadvantage.com (Daniel Finn) Date: Mon, 10 Mar 2003 11:06:23 -0500 Subject: Nagios mailing list (check_snmp) .... Message-ID: <80C364880EDAD511BE39009027B0DCB804345089@RAINBOW2> Ok... I'll see if I can get time to download that and give it a try. But I can't immagine just running it in verbose mode is going to tell you what's wrong. All that does is tell you the snmpget command that it's running doesn't it? Do you have any other ideas? -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Friday, March 07, 2003 11:46 PM To: Daniel Finn Cc: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] RE: Nagios mailing list (check_snmp) .... plugins version 1.3.0 has a verbose mode. (not the betas) -sg On Fri, 7 Mar 2003, Daniel Finn wrote: > Sure. Here's the output using version 1.3-beta1: > > [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -v -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : > /tmp/nagiosplug-1.3-beta1/plugins/check_snmp: invalid option -- v > check_snmp: Unknown argument: (null) > > Usage: check_snmp -H -o [-w warn_range] [-c crit_range] > [-C community] [-s string] [-r regex] [-R regexi] [-t > timeout] > [-l label] [-u units] [-d delimiter] [-D output-delimiter] > check_snmp --help > check_snmp --version > [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : > SNMP WARNING - 0 > [dfinn at sadqalx38 dfinn]$ /tmp/nagiosplug-1.3-beta1/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -d : > SNMP problem - No data recieved from host > CMD: /usr/bin/snmpget -m ALL -v 1 10.209.68.92 sapublic > .1.3.6.1.4.1.2021.2.1.100.1 > > > and here's netsaint-plugins version 1.2.9-4: > > [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp --version > check_snmp (netsaint-plugins 1.2.9-4) 1.21.2.5 > The netsaint plugins come with ABSOLUTELY NO WARRANTY. You may redistribute > copies of the plugins under the terms of the GNU General Public License. > For more information about these matters, see the file named COPYING. > [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -D : > SNMP WARNING - 0 > [dfinn at sadqalx38 dfinn]$ /usr/lib/netsaint/plugins/check_snmp -H > 10.209.68.92 -o .1.3.6.1.4.1.2021.2.1.100.1 -w 0 -c 0 -C sapublic -d : > SNMP problem - No data recieved from host > CMD: /usr/bin/snmpget -m ALL -v 1 10.209.68.92 sapublic > .1.3.6.1.4.1.2021.2.1.100.1 > > > it doesn't appear that either of these like verbose mode or the -m flag. > Should I be using a different version? > -----Original Message----- > From: Subhendu Ghosh > To: Daniel Finn > Sent: 3/7/03 11:39 AM > Subject: RE: [Nagios-users] RE: Nagios mailing list (check_snmp) .... > > Can you post the results running it with -v (verbose) output? > > -sg > > On Fri, 7 Mar 2003, Daniel Finn wrote: > > > I don't remember seeing that email from you but that doesn't fix the > > problem. > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Friday, March 07, 2003 10:35 AM > > To: Daniel Finn > > Cc: 'Rookwell at t-online.de'; 'nagios-users at lists.sourceforge.net' > > Subject: Re: [Nagios-users] RE: Nagios mailing list (check_snmp) .... > > > > > > >From my message on thursday.. > > > > > > ---------- Forwarded message ---------- > > Date: Thu, 6 Mar 2003 12:48:07 -0500 (EST) > > From: Subhendu Ghosh > > To: "'nagios-users at lists.sourceforge.net'" > > > > Subject: Re: [Nagios-users] problems using check_snmp to monitor > sendmail > > > > On Thu, 6 Mar 2003, Daniel Finn wrote: > > > > > > > > > > Here's the problem I'm having with the snmp_check program. It > always > > > reports back that it's either at a WARNING state or a CRITICAL > state. > > > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > > .1.3.6.1.4.1.2021.2.1.5.1 -w '1:10' -c '1:10' -C sapublic > > > SNMP WARNING - 1 > > > > > > > > > Am I doing something wrong. Shouldn't it return OK because the > value > > it's > > > returning is between 1 and 10? Now if I change the warning and > critical > > > threshholds to be outside of what it's returning I get : > > > > > > [root at sadqalx38 plugins]# ./check_snmp -H 10.209.68.92 -o > > > .1.3.6.1.4.1.2021.2.1.5.1 -w '3:10' -c '3:10' -C sapublic > > > SNMP CRITICAL - *1* > > > > > > I've downloaded nagios-plugins-1.3.0.tar.gz and compiled them for > this > > > system and I still have the same problem. If anyone could help that > > > would > > > be great. Also, I'm not subscribed to this list so if you could > reply > > to me > > > via email that would be great. > > > > > > > The WARNING in the first case may be due to output on the stderr. > > > > Try the command with with "-m : " to prevent loading the mibs. > > > > > > > > > > On Fri, 7 Mar 2003, Daniel Finn wrote: > > > > > No, I downloaded and compiled the most recent version they offer on > thier > > > site and it's still broken. Unfortunately I wasn't getting much > help from > > > people on here so I wrote my own simple script that uses snmpget and > > either > > > returns OK or CRITICAL and why. > > > > > > -----Original Message----- > > > From: Rookwell at t-online.de [mailto:Rookwell at t-online.de] > > > Sent: Friday, March 07, 2003 1:46 AM > > > To: DFinn at studentadvantage.com > > > Subject: Nagios mailing list (check_snmp) .... > > > > > > > > > Hi, > > > > > > do you fix the check_snmp problem? > > > I want to check the netbios-sessions on a w2k-server, but it always > return > > > "Warning....". > > > > > > Rookwell (Germany) > > > > > > Sorry, my english is not so good! > > > > > > > > > > > > -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Mon Mar 10 17:08:34 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Mon, 10 Mar 2003 08:08:34 -0800 (PST) Subject: FreeBSD & Nagios - revisited In-Reply-To: <001701c2e71c$884b1e00$2700a8c0@pulsar> References: <001701c2e71c$884b1e00$2700a8c0@pulsar> Message-ID: <20030310160834.91531.qmail@web21509.mail.yahoo.com> Did you use the nagios port? Just do make install....Worked on 4.7, try downloading an updated version of the ports collection. George Breahna wrote:Hey guys, before I start let me tell you that I did read the previous messages and it has not solved my problems. Here's what I have done so far on FreeBSD 4.6-Release. configured & installed libjpeg in /usr/local/libjpgconfigured & installed libpng in /usr/local/libpngconfigured & installed gd-2.0.11 in /usr/local/gd ( it has found all the libraries, png, jpg, etc, etc ) I updated my ld searchpath and it sees all the libs in jpg/png/gd dirs I configure nagios using with-gd-lib and with-gd-inc set to the proper directories, yet I still get that dreaded message checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no What am I doing wrong ? I tried using the default libs that come with the system ( from the ports collection ), and I used --with-gd-lib and --with-gd-inc as another user mentioned here but that also failed.My only guess right now is that I am missing gd-devel-1.8.44 ?? I did some research and I think it's only available in RPM form for RedHat.. Any clues are more than welcome! Cheers,George --------------------------------- Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more -------------- next part -------------- An HTML attachment was scrubbed... URL: From sheken at top-consulting.net Mon Mar 10 17:28:34 2003 From: sheken at top-consulting.net (George Breahna) Date: Mon, 10 Mar 2003 11:28:34 -0500 Subject: FreeBSD & Nagios - revisited In-Reply-To: <20030310160834.91531.qmail@web21509.mail.yahoo.com> References: <20030310160834.91531.qmail@web21509.mail.yahoo.com> Message-ID: <002a01c2e722$18bda020$2700a8c0@pulsar> I tried, and although I'd rather not use the ports, here's what it tells me ===> Configuring for nagios-1.0 ===> nagios-1.0 depends on shared library: gd.2 - found ===> nagios-1.0 depends on shared library: gnugetopt.1 - found loading cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for gcc... cc checking whether the C compiler (cc -O -pipe -I/usr/local/include ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. ===> Script "configure" failed unexpectedly. Please report the problem to blaz at si.FreeBSD.org [maintainer] and attach the "/usr/ports/net/nagios/work/nagios-1.0/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/net/nagios. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Monday, March 10, 2003 11:09 AM To: George Breahna; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] FreeBSD & Nagios - revisited Did you use the nagios port? Just do make install....Worked on 4.7, try downloading an updated version of the ports collection. George Breahna wrote: Hey guys, before I start let me tell you that I did read the previous messages and it has not solved my problems. Here's what I have done so far on FreeBSD 4.6-Release. configured & installed libjpeg in /usr/local/libjpg configured & installed libpng in /usr/local/libpng configured & installed gd-2.0.11 in /usr/local/gd ( it has found all the libraries, png, jpg, etc, etc ) I updated my ld searchpath and it sees all the libs in jpg/png/gd dirs I configure nagios using with-gd-lib and with-gd-inc set to the proper directories, yet I still get that dreaded message checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no What am I doing wrong ? I tried using the default libs that come with the system ( from the ports collection ), and I used --with-gd-lib and --with-gd-inc as another user mentioned here but that also failed. My only guess right now is that I am missing gd-devel-1.8.44 ?? I did some research and I think it's only available in RPM form for RedHat.. Any clues are more than welcome! Cheers, George _____ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more -------------- next part -------------- An HTML attachment was scrubbed... URL: From sripley at chiaro.com Mon Mar 10 17:58:03 2003 From: sripley at chiaro.com (Scott Ripley) Date: Mon, 10 Mar 2003 10:58:03 -0600 Subject: FreeBSD & Nagios - revisited Message-ID: <668C5EBD23862F459CF63DAFFCA6268C322695@rchst006.cus.chiaro.com> I have the following gd lib installed from the ports collection, and it works with Nagios compiled from the ports. gd-1.8.4_5 A graphics library for fast PNG creation I'm sure you have your reasons for not using the ports collection, but it worked well for me. I am running on FreeBSD4.2 w/ a selectively updated ports tree. Scott. -----Original Message----- From: George Breahna [mailto:sheken at top-consulting.net] Sent: Monday, March 10, 2003 10:29 AM To: 'Jon Lyons'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] FreeBSD & Nagios - revisited I tried, and although I'd rather not use the ports, here's what it tells me ===> Configuring for nagios-1.0 ===> nagios-1.0 depends on shared library: gd.2 - found ===> nagios-1.0 depends on shared library: gnugetopt.1 - found loading cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for gcc... cc checking whether the C compiler (cc -O -pipe -I/usr/local/include ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. ===> Script "configure" failed unexpectedly. Please report the problem to blaz at si.FreeBSD.org [maintainer] and attach the "/usr/ports/net/nagios/work/nagios-1.0/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/net/nagios. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Monday, March 10, 2003 11:09 AM To: George Breahna; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] FreeBSD & Nagios - revisited Did you use the nagios port? Just do make install....Worked on 4.7, try downloading an updated version of the ports collection. George Breahna wrote: Hey guys, before I start let me tell you that I did read the previous messages and it has not solved my problems. Here's what I have done so far on FreeBSD 4.6-Release. configured & installed libjpeg in /usr/local/libjpg configured & installed libpng in /usr/local/libpng configured & installed gd-2.0.11 in /usr/local/gd ( it has found all the libraries, png, jpg, etc, etc ) I updated my ld searchpath and it sees all the libs in jpg/png/gd dirs I configure nagios using with-gd-lib and with-gd-inc set to the proper directories, yet I still get that dreaded message checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no What am I doing wrong ? I tried using the default libs that come with the system ( from the ports collection ), and I used --with-gd-lib and --with-gd-inc as another user mentioned here but that also failed. My only guess right now is that I am missing gd-devel-1.8.44 ?? I did some research and I think it's only available in RPM form for RedHat.. Any clues are more than welcome! Cheers, George _____ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- ----------------------------------------- (on rchss001) This e-mail and any files transmitted with it are the property of Chiaro Networks, Ltd., and may contain confidential and privileged material for the sole use of the intended recipient(s) to whom this e-mail is addressed. If you are not one of the named recipient(s), or otherwise have reason to believe that you have received this message in error, please notify the sender and delete all copies from your system. Any other use, retention, dissemination, forwarding, printing or copying of this e-mail is strictly prohibited. --------------------------------------------------------- From jlyons30 at yahoo.com Mon Mar 10 18:17:53 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Mon, 10 Mar 2003 09:17:53 -0800 (PST) Subject: FreeBSD & Nagios - revisited In-Reply-To: <668C5EBD23862F459CF63DAFFCA6268C322695@rchst006.cus.chiaro.com> References: <668C5EBD23862F459CF63DAFFCA6268C322695@rchst006.cus.chiaro.com> Message-ID: <20030310171753.14573.qmail@web21512.mail.yahoo.com> Permissions error or something? Does /usr/local/include exist? checking whether the C compiler (cc -O -pipe -I/usr/local/include ) works... no Scott Ripley wrote:I have the following gd lib installed from the ports collection, and it works with Nagios compiled from the ports. gd-1.8.4_5 A graphics library for fast PNG creation I'm sure you have your reasons for not using the ports collection, but it worked well for me. I am running on FreeBSD4.2 w/ a selectively updated ports tree. Scott.-----Original Message----- From: George Breahna [mailto:sheken at top-consulting.net] Sent: Monday, March 10, 2003 10:29 AM To: 'Jon Lyons'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] FreeBSD & Nagios - revisited I tried, and although I'd rather not use the ports, here's what it tells me ===> Configuring for nagios-1.0 ===> nagios-1.0 depends on shared library: gd.2 - found ===> nagios-1.0 depends on shared library: gnugetopt.1 - found loading cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for gcc... cc checking whether the C compiler (cc -O -pipe -I/usr/local/include ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. ===> Script "configure" failed unexpectedly. Please report the problem to blaz at si.FreeBSD.org [maintainer] and attach the "/usr/ports/net/nagios/work/nagios-1.0/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/net/nagios. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Monday, March 10, 2003 11:09 AM To: George Breahna; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] FreeBSD & Nagios - revisited Did you use the nagios port? Just do make install....Worked on 4.7, try downloading an updated version of the ports collection. George Breahna wrote: Hey guys, before I start let me tell you that I did read the previous messages and it has not solved my problems. Here's what I have done so far on FreeBSD 4.6-Release. configured & installed libjpeg in /usr/local/libjpgconfigured & installed libpng in /usr/local/libpngconfigured & installed gd-2.0.11 in /usr/local/gd ( it has found all the libraries, png, jpg, etc, etc ) I updated my ld searchpath and it sees all the libs in jpg/png/gd dirs I configure nagios using with-gd-lib and with-gd-inc set to the proper directories, yet I still get that dreaded message checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no What am I doing wrong ? I tried using the default libs that come with the system ( from the ports collection ), and I used --with-gd-lib and --with-gd-inc as another user mentioned here but that also failed.My only guess right now is that I am missing gd-devel-1.8.44 ?? I did some research and I think it's only available in RPM form for RedHat.. Any clues are more than welcome! Cheers,George --------------------------------- Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more----------------------------------------- (on rchss001) This e-mail and any files transmitted with it are the property of Chiaro Networks, Ltd., and may contain confidential and privileged material for the sole use of the intended recipient(s) to whom this e-mail is addressed. If you are not one of the named recipient(s), or otherwise have reason to believe that you have received this message in error, please notify the sender and delete all copies from your system. Any other use, retention, dissemination, forwarding, printing or copying of this e-mail is strictly prohibited. --------------------------------------------------------- --------------------------------- Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more -------------- next part -------------- An HTML attachment was scrubbed... URL: From df at dune.org Mon Mar 10 19:10:50 2003 From: df at dune.org (df at dune.org) Date: Mon, 10 Mar 2003 19:10:50 +0100 Subject: FreeBSD & Nagios - revisited References: <20030310171753.14573.qmail@web21512.mail.yahoo.com> Message-ID: <006401c2e730$621bc9f0$6901a8c0@arrakis> Ok, got the idea "check_dummy 0" would fit me One last question: Should i rather use check_dummy in services.cfg ? Or in the hosts.cfg as default check ? Or in both ? Thanks. ----- Original Message ----- From: Jon Lyons To: Scott Ripley ; 'George Breahna' ; 'nagios-users at lists.sourceforge.net' Sent: Monday, March 10, 2003 6:17 PM Subject: RE: [Nagios-users] FreeBSD & Nagios - revisited Permissions error or something? Does /usr/local/include exist? checking whether the C compiler (cc -O -pipe -I/usr/local/include ) works... no Scott Ripley wrote: I have the following gd lib installed from the ports collection, and it works with Nagios compiled from the ports. gd-1.8.4_5 A graphics library for fast PNG creation I'm sure you have your reasons for not using the ports collection, but it worked well for me. I am running on FreeBSD4.2 w/ a selectively updated ports tree. Scott. -----Original Message----- From: George Breahna [mailto:sheken at top-consulting.net] Sent: Monday, March 10, 2003 10:29 AM To: 'Jon Lyons'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] FreeBSD & Nagios - revisited I tried, and although I'd rather not use the ports, here's what it tells me ===> Configuring for nagios-1.0 ===> nagios-1.0 depends on shared library: gd.2 - found ===> nagios-1.0 depends on shared library: gnugetopt.1 - found loading cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking for gcc... cc checking whether the C compiler (cc -O -pipe -I/usr/local/include ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. ===> Script "configure" failed unexpectedly. Please report the problem to blaz at si.FreeBSD.org [maintainer] and attach the "/usr/ports/net/nagios/work/nagios-1.0/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/net/nagios. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Monday, March 10, 2003 11:09 AM To: George Breahna; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] FreeBSD & Nagios - revisited Did you use the nagios port? Just do make install....Worked on 4.7, try downloading an updated version of the ports collection. George Breahna wrote: Hey guys, before I start let me tell you that I did read the previous messages and it has not solved my problems. Here's what I have done so far on FreeBSD 4.6-Release. configured & installed libjpeg in /usr/local/libjpg configured & installed libpng in /usr/local/libpng configured & installed gd-2.0.11 in /usr/local/gd ( it has found all the libraries, png, jpg, etc, etc ) I updated my ld searchpath and it sees all the libs in jpg/png/gd dirs I configure nagios using with-gd-lib and with-gd-inc set to the proper directories, yet I still get that dreaded message checking for gdImagePng in -lgd (order 1)... no checking for gdImagePng in -lgd (order 2)... no checking for gdImagePng in -lgd (order 3)... no What am I doing wrong ? I tried using the default libs that come with the system ( from the ports collection ), and I used --with-gd-lib and --with-gd-inc as another user mentioned here but that also failed. My only guess right now is that I am missing gd-devel-1.8.44 ?? I did some research and I think it's only available in RPM form for RedHat.. Any clues are more than welcome! Cheers, George ------------------------------------------------------------------------ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more ----------------------------------------- (on rchss001) This e-mail and any files transmitted with it are the property of Chiaro Networks, Ltd., and may contain confidential and privileged material for the sole use of the intended recipient(s) to whom this e-mail is addressed. If you are not one of the named recipient(s), or otherwise have reason to believe that you have received this message in error, please notify the sender and delete all copies from your system. Any other use, retention, dissemination, forwarding, printing or copying of this e-mail is strictly prohibited. --------------------------------------------------------- ------------------------------------------------------------------------------ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, and more -------------- next part -------------- An HTML attachment was scrubbed... URL: From briank at nacs.net Mon Mar 10 21:01:27 2003 From: briank at nacs.net (Brian Kosick) Date: Mon, 10 Mar 2003 15:01:27 -0500 Subject: plugin problems.... In-Reply-To: <3E68DD58.6040807@nacs.net> References: <3E68DD58.6040807@nacs.net> Message-ID: <3E6CEF17.6070502@nacs.net> Alright, I fixed my my problems with the perl plugins... I had to modify where it was looking for nagios/plugins to /usr/lib/nagios/plugins Brian Kosick wrote: > Redhat 7.3 (fully updated) > Perl 5.6.1 > Nagios 1.0 > Nagios Plugins 1.3 stable/released > > Subhendu Ghosh wrote: > >> plugins version ?? >> >> >> > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The > debugger for complex code. Debugging C/C++ programs can leave you > feeling lost and disoriented. TotalView can help you find your way. > Available on major UNIX and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk > being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jb at bw-networx.net Mon Mar 10 21:11:19 2003 From: jb at bw-networx.net (Joern Bredereck) Date: Mon, 10 Mar 2003 21:11:19 +0100 (CET) Subject: Plugins Crash with NetBSD 1.5.3/PPC In-Reply-To: <53104E20A25CD411B556009027E50636064D5410@pnnemp02.pn.egg.com> References: <53104E20A25CD411B556009027E50636064D5410@pnnemp02.pn.egg.com> Message-ID: On Mon, 10 Mar 2003, Voon, Ton wrote: > Please can you try with the final v1.3 of nagiosplug. There have been lots > of fixes in the build process since beta1. v1.3 crashes, too. :-( ---- bash-2.05# ./check_load --help check_load (nagios-plugins 1.3.0) 1.6 Trace/BPT trap (core dumped) bash-2.05# ./check_users -w 10 -c 15 Illegal instruction ---- I can send you the core-dump of the check_load crash, if you are interested. > I don't think we've had anyone reported successes with NetBSD on PowerPC - > please let us know how you get on. As for now, I'm pretty much stuck. :-( Any further ideas? Thanks, anyway! Joern > > -----Original Message----- > > From: Joern Bredereck [SMTP:jb at bw-networx.net] > > Sent: Sunday, March 09, 2003 11:50 AM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] Plugins Crash with NetBSD 1.5.3/PPC > > > > Hi, > > > > has anyone testet the currently available plugins > > (nagiosplug-1.3-beta1.tar.gz) with NetBSD 1.5.3 for PowerPC? > > > > bash-2.05# uname -a > > NetBSD apfel1 1.5.3 NetBSD 1.5.3 (GENERIC) #5: Mon Jul 1 20:45:48 PDT > > 2002 briggs at cheetah:/usr/src/sys/arch/macppc/compile/GENERIC macppc > > > > I compiled them without any errors with > > > > bash-2.05# gcc -v > > Reading specs from > > /usr/pkg/gcc-2.95.3/lib/gcc-lib/powerpc--netbsd/2.95.3/specs > > gcc version 2.95.3 20010315 (release) (NetBSD nb3) > > > > But, when I try to run them, they crash like: > > > > bash-2.05# /usr/local/nagios/libexec/check_users -w 20 -c 25 > > Illegal instruction > > > > The binary itself seems to be ok, because without any parameters I get the > > syntax instructions without crash: > > > > bash-2.05# /usr/local/nagios/libexec/check_users > > > > Usage: check_users -w -c > > > > It seems to me, that the plugins crash when they try to gather any > > information from the system. Any hints, or even workarounds? > > > > Are there precompiled plugins for NetBSD 1.5.x/PPC available? > > > > TIA, > > > > J?rn Bredereck > > > > PGP-Key available: http://www.bw-networx.net/public-key.asc > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Etnus, makers of TotalView, The > > debugger > > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > > > > and Linux platforms. Try it free. www.etnus.com > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > This private and confidential e-mail has been sent to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd (registered > no. 3319027) and Egg Investments Ltd (registered no. 3403963) which > carries out investment business on behalf of Egg and is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail and have > received it in error, please notify the sender by replying with > 'received in error' as the subject and then delete it from your > mailbox. > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From briank at nacs.net Mon Mar 10 21:34:23 2003 From: briank at nacs.net (Brian Kosick) Date: Mon, 10 Mar 2003 15:34:23 -0500 Subject: chsck_ifstatus Message-ID: <3E6CF6CF.3020405@nacs.net> Hi All, Is there a way to give different warning levels to the check_ifstatus plugin? I have a Wide Bank DS3, that has 32 interfaces on it, 1,2 are the DS3 interfaces and the rest are DS1 interfaces. The second DS2 (interface 2) is configured as a hot standby to the first one. when I run check_ifstatus, here's what I get. CRITICAL: host 'XXX.XXX.XXX.X', interfaces up: 30, down: 1, dormant: 0 DS3 Controller B -- Standby: down -> As you can see it is reporting it as critical, though this is the way it's supposed to be. the help included with the plugin does not specify whether or not you can do this. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jwest at kwcorp.com Mon Mar 10 21:29:00 2003 From: jwest at kwcorp.com (Jay West) Date: Mon, 10 Mar 2003 14:29:00 -0600 Subject: Very general question on nagios setup (host check vs. services) Message-ID: <004601c2e743$af366d40$033310ac@kwcorp.com> I'll forgo the specific platform and release information, as I suspect this is a very general overiew type question. I have nagios set up and it is working, but I feel there is something I "just don't get". I have read the manual and faq, they didn't seem to address this at least in terms that made sense to me. I also tried searching the archives but my question is so general I couldn't find anything specific. I'll ask a few questions, but I have a feeling that a single answer will allow me to figure out all of them. First, when you set up a given host to be monitored, you tell it what test to use.. check_host_alive I believe it is. This seems to just call a ping test. By default I think, this check is "passive", and from the status screen it would appear that this test only happens once when nagios is started up. Sooo if a host goes down, when will it catch it if the test is only done when nagios starts? >From some of the sample config files and my own reading, it seems not uncommon to define a host (and the check-host-alive), and then define a single service for it called "ping". This seems odd to me. If the host will already be pinged via check-host-alive in the host definition, then why the need to define a ping service for it? In my case, there are a group of hosts where all I care about is if the host is up or not. But if I just define the hosts with check-host-alive, nagios complains bitterly that I don't have any services defined. So, I guess to sum up... if one defines a host and it gets pinged via the host definition of check-host-alive, what is the difference between that ping, and one you add to that host as a service check? There seems to be something obvious I'm missing conceptually. Any help is most appreciated! Jay West --- [This E-mail scanned for viruses by Declude Virus] ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fes at users.sourceforge.net Mon Mar 10 21:41:19 2003 From: fes at users.sourceforge.net (Frank Sweetser) Date: Mon, 10 Mar 2003 15:41:19 -0500 Subject: chsck_ifstatus In-Reply-To: <3E6CF6CF.3020405@nacs.net> References: <3E6CF6CF.3020405@nacs.net> Message-ID: <20030310204119.GA9724@erwin.wpi.edu> On Mon, Mar 10, 2003 at 03:34:23PM -0500, Brian Kosick wrote: > Hi All, > Is there a way to give different warning levels to the > check_ifstatus plugin? > I have a Wide Bank DS3, that has 32 interfaces on it, 1,2 are the DS3 > interfaces and the rest are DS1 interfaces. > The second DS2 (interface 2) is configured as a hot standby to the first > one. > > when I run check_ifstatus, here's what I get. > CRITICAL: host 'XXX.XXX.XXX.X', interfaces up: 30, down: 1, dormant: 0 > DS3 Controller B -- Standby: down -> > > As you can see it is reporting it as critical, though this is the way > it's supposed to be. Try the 'negate' plugin wrapper in your service definition. -- Frank Sweetser fs at wpi.edu WPI Network Engineer ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark at woodstream.net Mon Mar 10 21:52:36 2003 From: mark at woodstream.net (mark) Date: Mon, 10 Mar 2003 15:52:36 -0500 (EST) Subject: Passive service color question In-Reply-To: References: Message-ID: I have a question about the color of passive services on the web interface. I have a distributed environment setup and the central host is recieving passive updates from the distributed host fine. My problem is that on the "tactical overview" web page, all the passive services I have defined show up as "disabled". For example, if I have 3 passive services defined, I see a "3 disabled" in white under the OK services column. If one service goes critical, I see "1 disabled" in white under the "critical" services column. First, is this normal? I've re-installed Nagios twice from the source up to make sure it wasn't my setup. Second, if it is normal, is there anyway I can get passive services to NOT be displayed as "disabled". I especially need them to be RED when the service becomes critical so my operations guys can see it quickly. I'm running Nagios 1.0, plugins 1.3, and NSCA 2.3 on FreeBSD 4.7, Apache 2.044. Any and all help is very much appreciated ... I'm about out of ideas on how to make this work like I need. Thanks!! Mark ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From johnmc at johnmc.org Mon Mar 10 21:53:40 2003 From: johnmc at johnmc.org (John McDonnell) Date: Mon, 10 Mar 2003 12:53:40 -0800 (PST) Subject: Mail from address changed. Message-ID: afternoon all, I removed a box from our Nagios setup and all of a sudden the notifications are coming from me (johnmc@ instead of anonymous@ as it used to be). Googling has been of no use and I can't find anything in the docs or faq. Anyone able to shed some light? johnmc. -- . johnmc@ | bucketchild.net - +1-408-985-7992 (home) . . http:// | johnmc.org - +1-408-386-3549 (cell) . -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Mon Mar 10 22:04:14 2003 From: mpowell at ena.com (Marc Powell) Date: Mon, 10 Mar 2003 15:04:14 -0600 Subject: Very general question on nagios setup (host check vs. services) Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED54A@mismail.ena.com> > -----Original Message----- > From: Jay West [mailto:jwest at kwcorp.com] > Sent: Monday, March 10, 2003 2:29 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Very general question on nagios setup (host check > vs. services) [snip] > So, I guess to sum up... if one defines a host and it gets pinged via the > host definition of check-host-alive, what is the difference between that > ping, and one you add to that host as a service check? There seems to be > something obvious I'm missing conceptually. > http://www.nagios.org/faqs/viewfaq.php?faq_id=39&expand=false&showdesc=t rue -- marc ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Mon Mar 10 22:08:42 2003 From: mpowell at ena.com (Marc Powell) Date: Mon, 10 Mar 2003 15:08:42 -0600 Subject: Mail from address changed. Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED54B@mismail.ena.com> What are your host/service-notify-by-email command definitions? Is nagios running as user johnmc now that it's been restarted? Your email could be read a number of ways and I am assuming that your removed a monitored machine from the nagios configuration files and not a distributed nagios monitoring server entirely. -- Marc > -----Original Message----- > From: John McDonnell [mailto:johnmc at johnmc.org] > Sent: Monday, March 10, 2003 2:54 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Mail from address changed. > > afternoon all, > > I removed a box from our Nagios setup and all of a sudden the > notifications are coming from me (johnmc@ instead of anonymous@ as it > used to be). Googling has been of no use and I can't find anything in the > docs or faq. > > Anyone able to shed some light? > > johnmc. > -- > . johnmc@ | bucketchild.net - +1-408-985-7992 (home) . > . http:// | johnmc.org - +1-408-386-3549 (cell) . > -- > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GWCOOK at mactec.com Mon Mar 10 22:21:09 2003 From: GWCOOK at mactec.com (Cook, Garry) Date: Mon, 10 Mar 2003 14:21:09 -0700 Subject: Very general question on nagios setup (host check vs. services) Message-ID: http://www.nagios.org/faqs/viewfaq.php?faq_id=39&expand=true&showdesc=tr ue Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 303.881.5157 (Mobile) > -----Original Message----- > From: Jay West [mailto:jwest at kwcorp.com] > Sent: Monday, March 10, 2003 1:29 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Very general question on nagios setup > (host check vs. services) > > > I'll forgo the specific platform and release information, as > I suspect this is a very general overiew type question. I > have nagios set up and it is working, but I feel there is > something I "just don't get". I have read the manual and faq, > they didn't seem to address this at least in terms that made > sense to me. I also tried searching the archives but my > question is so general I couldn't find anything specific. > I'll ask a few questions, but I have a feeling that a single > answer will allow me to figure out all of them. > > First, when you set up a given host to be monitored, you tell > it what test to use.. check_host_alive I believe it is. This > seems to just call a ping test. By default I think, this > check is "passive", and from the status screen it would > appear that this test only happens once when nagios is > started up. Sooo if a host goes down, when will it catch it > if the test is only done when nagios starts? > > >From some of the sample config files and my own reading, it seems not > uncommon to define a host (and the check-host-alive), and > then define a single service for it called "ping". This seems > odd to me. If the host will already be pinged via > check-host-alive in the host definition, then why the need to > define a ping service for it? > > In my case, there are a group of hosts where all I care about > is if the host is up or not. But if I just define the hosts > with check-host-alive, nagios complains bitterly that I don't > have any services defined. > > So, I guess to sum up... if one defines a host and it gets > pinged via the host definition of check-host-alive, what is > the difference between that ping, and one you add to that > host as a service check? There seems to be something obvious > I'm missing conceptually. > > Any help is most appreciated! > > Jay West > > > --- > [This E-mail scanned for viruses by Declude Virus] > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From adalle at ncf.ca Mon Mar 10 22:47:54 2003 From: adalle at ncf.ca (Andre Dalle) Date: Mon, 10 Mar 2003 16:47:54 -0500 Subject: Solaris 8 package available? In-Reply-To: <20030307221138.A5801@bolthole.com> References: <20030307221138.A5801@bolthole.com> Message-ID: <20030310214754.GA6220@ncf.ca> OK, sounds like folks are happy about software in /opt and the blastwave stuff, so I will use that. The package is a convenience for those not interested in compiling and installing themselves; so I think this is perfectly reasonable. You can always extract the package and rebuild it if you really want to stuff stuff in a custom location but don't want to compile... I don't have time to put this together right away, but if noone else is interested I'll compile a package compatible with Blastwave's requirements in a couple weeks time. My devel platform is 5.8 sparc SUNW,Sun-Fire-280R, using all GNU tools (cc, make, sed/awk/grep, etc.). I guess I should build nagios, nagios-plug, and perhaps nrpe as well. On Fri, Mar 07, 2003 at 10:11:38PM -0800, Philip Brown wrote: > On Fri, Mar 07, 2003 at 10:08:17PM -0400, Cian O'Sullivan wrote: > > I agree to put the stuff in /opt I however dont put stuff in /opt/csw as > > having packages all over can get confusing. > > Packages arent "all over". Setting your PATH to include /opt/csw/bin, > gets you use of all normal packages distributed by blastwave. > > > > > Whats wrong with... > > > > /opt/nagios binaries > > /etc/nagios configs > > /var/nagios logs > > /usr/local is best viewed as "locally compiled stuff". > > By definition, anything compiled by other people is not "locally compiled". > Therefore, people making solaris packages for others, should not put them > in /usr/local. > The Solaris/SysV standard is to put those things under /opt. > Standards are good. > > The advantage to blastwave's /opt/csw approach is that if the sysadmin > CHOOSES to, they can either symlink, or lofs-mount, /opt/csw, to be > /usr/local > It then will look like a "normal" default compile. > > You can't do that with your suggestion. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you feeling lost and > disoriented. TotalView can help you find your way. Available on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gwichman at zantaz.com Mon Mar 10 23:55:47 2003 From: gwichman at zantaz.com (Gerald Wichmann) Date: Mon, 10 Mar 2003 14:55:47 -0800 Subject: Solaris Plugins Needed Message-ID: <12C7D768CC8ED4118A9200508BEEC6FB042F25AF@zanexch.zantaz.com> My check_procs plugin segfaults when I try to check # of procs.. Anyone got one that works? Gerald This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm) service. For more information, visit us at www.zantaz.com. IMPORTANT: This electronic mail message is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone or directly reply to the original message(s) sent. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jasonm at kelman.com Tue Mar 11 00:03:01 2003 From: jasonm at kelman.com (Jason Marshall) Date: Mon, 10 Mar 2003 16:03:01 -0700 (MST) Subject: Solaris 8 package available? In-Reply-To: References: Message-ID: > Whats wrong with... > > /opt/nagios binaries > /etc/nagios configs > /var/nagios logs I did /opt/nagios/{bin,libexec,etc} and it works good for me -- easy to zap copies of it around the network when it's all self-contained like that (with a few exceptions, like /etc/init.d/ stuff)... --- Jason Marshall, Unix Geek, Kelman Technologies, Inc., Calgary, AB, Canada. From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." "I have great faith in fools: Self confidence my friends call it." -Edgar Allan Poe ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From johnmc at johnmc.org Tue Mar 11 00:12:09 2003 From: johnmc at johnmc.org (John McDonnell) Date: Mon, 10 Mar 2003 15:12:09 -0800 (PST) Subject: Mail from address changed. (fwd) Message-ID: On the 10th day of March, Marc Powell said to me: > What are your host/service-notify-by-email command definitions? # 'host-notify-by-email' command definition define command{ command_name host-notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $DATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ } no service-notify-by-email > Is nagios running as user johnmc now that it's been restarted? nope: # ps aux | grep nagios nagios 12764 0.0 0.0 2308 1288 ? S Mar03 9:03 /usr/local/nagios root 30807 0.0 0.0 1736 588 pts/0 R 13:14 0:00 grep nagios # ps aux | grep johnmc johnmc 27097 0.0 0.0 2444 1252 pts/0 S 12:51 0:00 -bash root 31279 0.0 0.0 1740 596 pts/0 R 13:18 0:00 grep johnmc > Your email could be read a number of ways and I am assuming that your > removed a monitored machine from the nagios configuration files and not > a distributed nagios monitoring server entirely. umm, yeah... your assumption is correct - the simplest case :) john. -- . johnmc@ | bucketchild.net - +1-408-985-7992 (home) . . http:// | johnmc.org - +1-408-386-3549 (cell) . -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From whiatt at upstanding.com Tue Mar 11 01:08:07 2003 From: whiatt at upstanding.com (Hiatt, William) Date: Mon, 10 Mar 2003 16:08:07 -0800 Subject: Pulling trap strings out of traps and feeding to nagios Message-ID: <71520D1F83A0C6408D99155D4CCAE0AA26D4@exch-be-01.upstanding.com> I'm trying to figure out the best way to have snmptrapd give a nagios event handler the trap string from a trap that my monitoring host receives? In detail, what I'm wanting to do is tie all notifications into NAGIOS. Right now, everything works great, except some remaining services (like Symantec Antivirus for Microsoft Exchange). Instead of having SAVFMSE e-mail me directly, I'm having the notifications sent to my AMS server, which in turn sends a trap to NAGIOS. BUT, I need to use & parse information out of the trap string. Any ideas?? Thanks william ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sheken at top-consulting.net Tue Mar 11 01:47:18 2003 From: sheken at top-consulting.net (George Breahna) Date: Mon, 10 Mar 2003 19:47:18 -0500 Subject: Nagios & MySQL & Extended infos Message-ID: <000d01c2e767$c4a39da0$2700a8c0@pulsar> I configured Nagios with MySQL and everything works perfect. I was now trying to configure apan in order to enhance. Now, apan recommends to put the extended infos in the services file...but Nagios doc says that if DB support is on it will ignore those objects. My next question now is, is there an easy way to insert information into the Extended Infos table ? Please don't tell me that I have to do : insert into lallala :) Thanks, George -------------- next part -------------- An HTML attachment was scrubbed... URL: From marek.dohojda at linksys.com Tue Mar 11 02:22:41 2003 From: marek.dohojda at linksys.com (Marek Dohojda) Date: Mon, 10 Mar 2003 17:22:41 -0800 Subject: TempTrax Message-ID: <202FFF2E883FC640B0E12B88EA98FD37036704@mail2.hq.linksys.com> Hello Everyone I recently (Ok today) installed the TempTrax hardware to monitor my temperature. Everything went very smoothly, and works like a champ. However I have one question. When I send an e-mail to my verizon text messaging I do not get the current temperature. Does anybody know how to force Verizon thingy to display the whole message? Thank you everyone! Marek Dohojda Sr. Network Admin linksys group inc. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lambert at lambertfam.org Tue Mar 11 03:32:14 2003 From: lambert at lambertfam.org (Scott Lambert) Date: Mon, 10 Mar 2003 21:32:14 -0500 Subject: TempTrax In-Reply-To: <202FFF2E883FC640B0E12B88EA98FD37036704@mail2.hq.linksys.com> References: <202FFF2E883FC640B0E12B88EA98FD37036704@mail2.hq.linksys.com> Message-ID: <20030311023213.GB7774@laptop.lambertfam.org> On Mon, Mar 10, 2003 at 05:22:41PM -0800, Marek Dohojda wrote: > Hello Everyone > > I recently (Ok today) installed the TempTrax hardware to monitor my > temperature. > > Everything went very smoothly, and works like a champ. However I have > one question. When I send an e-mail to my verizon text messaging I > do not get the current temperature. Does anybody know how to force > Verizon thingy to display the whole message? AFAICT, Verizon limits the text messages to 70something characters. Annoying. But they should be splitting it into smaller messages for you so that they can charge you more, rather than throwing the excess away. Could your paging software be truncating the message? Using qpage I can send an unlimited length message. It just shows up in multiple messages. I configured qpage to break it up for me. Sprint allows messages to be about twice as long. Most of my notifications fit in a single text message. Perhaps the paging services do eventually truncate pages if you send it all as one message. -- Scott Lambert KC5MLE Unix SysAdmin lambert at lambertfam.org ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From SRich at apiatech.com Tue Mar 11 03:32:51 2003 From: SRich at apiatech.com (Scott Rich) Date: Mon, 10 Mar 2003 19:32:51 -0700 Subject: Compiling for use with PostgreSQL Message-ID: HELP!! creating Makefile creating subst creating pkginfo creating base/Makefile creating common/Makefile creating contrib/Makefile creating cgi/Makefile creating html/Makefile creating xdata/Makefile creating daemon-init creating html/index.html creating html/side.html creating common/config.h creating common/snprintf.h creating base/nagios.h creating cgi/cgiutils.h Creating sample config files in sample-config/ ... *** Configuration summary for nagios 1.0 11-24-2002 ***: General Options: ------------------------- Nagios executable: nagios Nagios user/group: nagios,nagios Command user/group: nagios,nagios Embedded Perl: no Install ${prefix}: /home/apps/nagios Lock file: ${prefix}/var/nagios.lock Init directory: /etc/rc.d/init.d Web Interface Options: ------------------------ HTML URL: http://localhost/nagios/ CGI URL: http://localhost/cgi-bin/nagios/ Traceroute (used by WAP): /usr/sbin/traceroute External Data Routines: ------------------------ Status data: Database (PostgreSQL) Object data: Template-based (text file) Comment data: Database (PostgreSQL) Downtime data: Database (PostgreSQL) Retention data: Database (PostgreSQL) Peformance data: Default (external commands) Extended info data: Database (PostgreSQL) Review the options above for accuracy. If they look okay, type 'make all' to compile the main program and CGIs. [root at aitcorpux01 nagios-1.0]# make all cd ./base && make make[1]: Entering directory `/home/temp/nagios-1.0/base' gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o checks.o checks.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o config.o config.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o commands.o commands.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o flapping.o flapping.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o logging.o logging.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o notifications.o notifications.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o sehandlers.o sehandlers.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o utils.o utils.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o sretention.o sretention.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -c -o perfdata.o perfdata.c gcc -g -O2 -DHAVE_CONFIG_H -DNSCORE -lpq nagios.c checks.o config.o commands.o flapping.o logging.o notifications.o sehandlers.o utils.o sretention.o ../xdata/xrddb.c ../common/comments.c ../xdata/xcddb.c ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/xsddb.c perfdata.o ../xdata/xpddefault.c ../common/downtime.c ../xdata/xdddb.c -lm -o nagios ../xdata/xrddb.c:46:28: pgsql/libpq-fe.h: No such file or directory ../xdata/xrddb.c:63: parse error before '*' token ../xdata/xrddb.c:63: warning: data definition has no type or storage class ../xdata/xrddb.c:64: parse error before '*' token ../xdata/xrddb.c:64: warning: data definition has no type or storage class ../xdata/xrddb.c: In function `xrddb_connect': ../xdata/xrddb.c:268: warning: assignment makes pointer from integer without a cast ../xdata/xrddb.c:270: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xrddb.c:270: (Each undeclared identifier is reported only once ../xdata/xrddb.c:270: for each function it appears in.) ../xdata/xrddb.c: In function `xrddb_disconnect': ../xdata/xrddb.c:304: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xrddb.c: In function `xrddb_query': ../xdata/xrddb.c:334: warning: assignment makes pointer from integer without a cast ../xdata/xrddb.c:335: `PGRES_FATAL_ERROR' undeclared (first use in this function) ../xdata/xrddb.c:335: `PGRES_BAD_RESPONSE' undeclared (first use in this function) ../xdata/xrddb.c: In function `xrddb_read_program_information': ../xdata/xrddb.c:876: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:877: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:878: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:879: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:880: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:881: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:882: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:883: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c: In function `xrddb_read_host_information': ../xdata/xrddb.c:1016: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1019: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1022: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1025: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1026: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1027: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1030: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1033: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1036: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1039: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1042: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1045: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1048: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1051: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1054: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1057: warning: passing arg 1 of `set_host_state_information' makes pointer from integer without a cast ../xdata/xrddb.c:1057: warning: passing arg 3 of `set_host_state_information' makes pointer from integer without a cast ../xdata/xrddb.c: In function `xrddb_read_service_information': ../xdata/xrddb.c:1207: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1214: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1217: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1220: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1221: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1222: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1223: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1226: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1229: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1232: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1235: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1238: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1241: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1244: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1247: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1250: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1253: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1256: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xrddb.c:1259: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xrddb.c:1262: warning: passing arg 1 of `set_service_state_information' makes pointer from integer without a cast ../xdata/xrddb.c:1262: warning: passing arg 2 of `set_service_state_information' makes pointer from integer without a cast ../xdata/xrddb.c:1262: warning: passing arg 4 of `set_service_state_information' makes pointer from integer without a cast ../xdata/xcddb.c:54:28: pgsql/libpq-fe.h: No such file or directory ../xdata/xcddb.c:70: parse error before '*' token ../xdata/xcddb.c:70: warning: data definition has no type or storage class ../xdata/xcddb.c:71: parse error before '*' token ../xdata/xcddb.c:71: warning: data definition has no type or storage class ../xdata/xcddb.c: In function `xcddb_connect': ../xdata/xcddb.c:278: warning: assignment makes pointer from integer without a cast ../xdata/xcddb.c:280: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xcddb.c:280: (Each undeclared identifier is reported only once ../xdata/xcddb.c:280: for each function it appears in.) ../xdata/xcddb.c: In function `xcddb_disconnect': ../xdata/xcddb.c:308: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xcddb.c: In function `xcddb_query': ../xdata/xcddb.c:334: warning: assignment makes pointer from integer without a cast ../xdata/xcddb.c:335: `PGRES_FATAL_ERROR' undeclared (first use in this function) ../xdata/xcddb.c:335: `PGRES_BAD_RESPONSE' undeclared (first use in this function) ../xdata/xcddb.c: In function `xcddb_validate_host_comments': ../xdata/xcddb.c:508: warning: passing arg 1 of `find_host' makes pointer from integer without a cast ../xdata/xcddb.c:512: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xcddb.c: In function `xcddb_validate_service_comments': ../xdata/xcddb.c:597: warning: passing arg 1 of `find_service' makes pointer from integer without a cast ../xdata/xcddb.c:597: warning: passing arg 2 of `find_service' makes pointer from integer without a cast ../xdata/xcddb.c:601: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xcddb.c: In function `xcddb_save_host_comment': ../xdata/xcddb.c:761: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xcddb.c: In function `xcddb_save_service_comment': ../xdata/xcddb.c:860: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xsddb.c:51:28: pgsql/libpq-fe.h: No such file or directory ../xdata/xsddb.c:66: parse error before '*' token ../xdata/xsddb.c:66: warning: data definition has no type or storage class ../xdata/xsddb.c:67: parse error before '*' token ../xdata/xsddb.c:67: warning: data definition has no type or storage class ../xdata/xsddb.c: In function `xsddb_connect': ../xdata/xsddb.c:307: warning: assignment makes pointer from integer without a cast ../xdata/xsddb.c:309: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xsddb.c:309: (Each undeclared identifier is reported only once ../xdata/xsddb.c:309: for each function it appears in.) ../xdata/xsddb.c: In function `xsddb_disconnect': ../xdata/xsddb.c:340: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xsddb.c: In function `xsddb_check_connection': ../xdata/xsddb.c:378: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xsddb.c: In function `xsddb_query': ../xdata/xsddb.c:468: warning: assignment makes pointer from integer without a cast ../xdata/xsddb.c:469: `PGRES_FATAL_ERROR' undeclared (first use in this function) ../xdata/xsddb.c:469: `PGRES_BAD_RESPONSE' undeclared (first use in this function) ../xdata/xdddb.c:54:28: pgsql/libpq-fe.h: No such file or directory ../xdata/xdddb.c:70: parse error before '*' token ../xdata/xdddb.c:70: warning: data definition has no type or storage class ../xdata/xdddb.c:71: parse error before '*' token ../xdata/xdddb.c:71: warning: data definition has no type or storage class ../xdata/xdddb.c: In function `xdddb_connect': ../xdata/xdddb.c:278: warning: assignment makes pointer from integer without a cast ../xdata/xdddb.c:280: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xdddb.c:280: (Each undeclared identifier is reported only once ../xdata/xdddb.c:280: for each function it appears in.) ../xdata/xdddb.c: In function `xdddb_disconnect': ../xdata/xdddb.c:308: `CONNECTION_BAD' undeclared (first use in this function) ../xdata/xdddb.c: In function `xdddb_query': ../xdata/xdddb.c:334: warning: assignment makes pointer from integer without a cast ../xdata/xdddb.c:335: `PGRES_FATAL_ERROR' undeclared (first use in this function) ../xdata/xdddb.c:335: `PGRES_BAD_RESPONSE' undeclared (first use in this function) ../xdata/xdddb.c: In function `xdddb_validate_host_downtime': ../xdata/xdddb.c:513: warning: passing arg 1 of `find_host' makes pointer from integer without a cast ../xdata/xdddb.c:517: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c:522: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:526: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c: In function `xdddb_validate_service_downtime': ../xdata/xdddb.c:627: warning: passing arg 1 of `find_service' makes pointer from integer without a cast ../xdata/xdddb.c:627: warning: passing arg 2 of `find_service' makes pointer from integer without a cast ../xdata/xdddb.c:631: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c:636: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:640: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c: In function `xdddb_save_host_downtime': ../xdata/xdddb.c:801: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c: In function `xdddb_save_service_downtime': ../xdata/xdddb.c:900: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c: In function `xdddb_read_host_downtime': ../xdata/xdddb.c:1161: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c:1164: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1167: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1170: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1173: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c:1176: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1179: warning: passing arg 1 of `add_host_downtime' makes pointer from integer without a cast ../xdata/xdddb.c:1179: warning: passing arg 3 of `add_host_downtime' makes pointer from integer without a cast ../xdata/xdddb.c:1179: warning: passing arg 4 of `add_host_downtime' makes pointer from integer without a cast ../xdata/xdddb.c: In function `xdddb_read_service_downtime': ../xdata/xdddb.c:1292: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c:1295: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1298: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1301: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1304: warning: passing arg 1 of `atoi' makes pointer from integer without a cast ../xdata/xdddb.c:1307: warning: passing arg 1 of `strtoul' makes pointer from integer without a cast ../xdata/xdddb.c:1310: warning: passing arg 1 of `add_service_downtime' makes pointer from integer without a cast ../xdata/xdddb.c:1310: warning: passing arg 2 of `add_service_downtime' makes pointer from integer without a cast ../xdata/xdddb.c:1310: warning: passing arg 4 of `add_service_downtime' makes pointer from integer without a cast ../xdata/xdddb.c:1310: warning: passing arg 5 of `add_service_downtime' makes pointer from integer without a cast make[1]: *** [nagios] Error 1 make[1]: Leaving directory `/home/temp/nagios-1.0/base' make: *** [all] Error 2 [root at aitcorpux01 nagios-1.0]# ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdunlap_z at yahoo.com Tue Mar 11 07:42:30 2003 From: tdunlap_z at yahoo.com (Tom Dunlap) Date: Mon, 10 Mar 2003 22:42:30 -0800 (PST) Subject: Statusmap backgrounds and Avaya icon Message-ID: <20030311064230.34362.qmail@web14102.mail.yahoo.com> I am looking for some gd2 maps and a gd2 Avaya icon. Does anyone have a source for these? Thank you Tom Dunlap __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rauno.lind at mfa.ee Tue Mar 11 09:54:45 2003 From: rauno.lind at mfa.ee (Rauno Lind) Date: Tue, 11 Mar 2003 10:54:45 +0200 Subject: 3d statusmap shows nothing... Message-ID: Hello, I am using Nagios ver. 1.0b5 It is working fine. But I can't get 3d statusmap working. On Nagios, cgi.cgi conf I use default layout option: default_statuswrl_layout=4 I have installed Cortona VRML client and JavaScript on my browser is also enabled. Cortona console gives me the following output: name expected File: http://twix.mfa.ee/nagios/cgi-bin/statuswrl.cgi?host=all Line: 409 Column: 14 Any help would be appreciated! Regards, Rauno Lind ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bliwanag at yahoo.com Tue Mar 11 12:16:14 2003 From: bliwanag at yahoo.com (bernie liwanag) Date: Tue, 11 Mar 2003 03:16:14 -0800 (PST) Subject: oracle plugins Message-ID: <20030311111614.71123.qmail@web40612.mail.yahoo.com> Anyone can help me on how to check oracle server status? What are the pre-requisites for using check_oracle plugins? What is check_ora_table_space.pl and check_oracle_instance.pl? Thanks a lot! Bernie __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Tue Mar 11 13:53:55 2003 From: lejert at hotmail.com (le jert) Date: Tue, 11 Mar 2003 13:53:55 +0100 Subject: nrpe : 'unable to read output' Message-ID: when checking disk space on remote hosts using nrpe, I get the message : 'unable to read output' here is my config : #'check_nrpe' command definition define command { command_name check_nrpe command_line /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ } #Service definition for checking free disk space on /dev/hda1 define service{ use generic-service host_name salluste service_description /dev/hda1 Free Space is_volatile 0 check_period 24x7 contact_groups intern-servers-contactgroup notification_options c,w,r check_command check_nrpe!check_disk1 } the config file on the client contains that line : command[check_disk1]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /dev/hda1 according to the client the disk is 8% full and I don't plan to use TCP Wrapper. Could you help me ? (running on redHat 7.3 // nagios-1.0 with pluggin 1.3.0) _________________________________________________________________ Utilisez votre MSN Messenger via votre GSM ! http://www.fr.msn.be/gsm/servicesms/messengerparsms ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Tue Mar 11 13:59:18 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Tue, 11 Mar 2003 13:59:18 +0100 Subject: The trouble some people would go to... Message-ID: <3E6DDDA6.646ACFE1@gcc.dhl.com> ..not to have to search the FAQ's before posting to the list! Come on, who has nicked the FAQ's? http://www.nagios.org/faqs/ FAQ Database (0) ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rico at noris.net Tue Mar 11 14:54:52 2003 From: rico at noris.net (Rico Gloeckner) Date: Tue, 11 Mar 2003 14:54:52 +0100 Subject: max_check_attempts Message-ID: <20030311145452.R19395@noris.de> Hi, Ive been running in a pitfall in netsaint 0.0.7, where Netsaint would rerun a HOSTcheck max_check_attempts without using any Intervals (in the concrete Case, the Check ran every 12 seconds - the timeout for the Plugin is 10 seconds). I however was under the Impression that the Interval is not zero, but interval_length (from netsaint.cfg). I re-read Documentation and couldnt find any Hint on interval_length for max_check_attempts for Hosts (neither for netsaint nor for nagios). So my Question is, has this Behaviour changed in Nagios or is it still the same? (Which would be bad IMHO) -rg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jmarquart at planalytics.com Tue Mar 11 14:46:18 2003 From: jmarquart at planalytics.com (jmarquart at planalytics.com) Date: Tue, 11 Mar 2003 08:46:18 -0500 Subject: oracle plugins Message-ID: <85256CE6.004BA69E.00@mailhost.planalytics.com> The pre-reqs for check_oracle are an installation of the oracle client (if you want to use the tnsping functionality) if you just want to check for an instance (--db option) - you can fake it by setting the ORACLE_* env vars. All it does is a ps -ef | grpe pmon (more or less) the check_ora_table_space.pl and check_oracle_instance.pl are later perl scripts that check tablespace availabilities and check the "upness" of an instance. Depending on what you want to check any/all will work for you. The latest CVS of the check_oracle script also has the ability to check cache hit ratios and individual tablespace utilizations. -j bernie liwanag on 03/11/2003 06:16:14 AM To: nagios-users at lists.sourceforge.net cc: (bcc: John J. der Schalla Marquart/Planalytics) Subject: [Nagios-users] oracle plugins Anyone can help me on how to check oracle server status? What are the pre-requisites for using check_oracle plugins? What is check_ora_table_space.pl and check_oracle_instance.pl? Thanks a lot! Bernie __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Tue Mar 11 15:08:23 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Tue, 11 Mar 2003 16:08:23 +0200 Subject: cgi sound before max_check_attempts Message-ID: Hi Is it possible to configure the cgi's to not play the critical (etc) sound until the max_check_attempts have completed? If not then max_check_attemps is pointless for the sound, right? :\ fred -------------- next part -------------- An HTML attachment was scrubbed... URL: From jwest at kwcorp.com Tue Mar 11 15:22:10 2003 From: jwest at kwcorp.com (Jay West) Date: Tue, 11 Mar 2003 08:22:10 -0600 Subject: RTFF? re: Very general question on nagios setup (host check vs. services) Message-ID: <003101c2e7d9$9ac338c0$033310ac@kwcorp.com> Thanks to all who replied to my query with a link to the FAQ. As I said, I had already read the FAQ, and had already seen that exact portion, and it didn't explain what I was looking for, that's why I asked. One of the list members did actually take the time to explain what I was looking for without assuming the "ivory tower" mentality and really explain it. As an instructive example, I'll list his response below as an education (obviously sorely needed) to the people who so quickly responded with RTFF: ---------------------- check-host-alive (or more specifically the default command for a host check) isn't called until a service on a target host fails its service check. As soon a service check fails, the host is checked via the host check command (check-host-alive) for the number of times you specify (one right after another, i.e. no other service checks are performed until the host is determined up or down). For example, if you have configured max_check_attempts for 3 on the host with the failed service, the host will be checked up to 3 times to determine if it is alive. If the host check determines the host is alive, the service check for the failed service continues on the specified intervals until max_check_attempts are reached for the service or the service becomes available. If service max_check_attempts is reached, a service down notification is sent. If the host check determines the host is down, a host down notification is sent and no further service checks are performed. If the host is down, you will never be notified about services on the host being unavailable. ---------------------- This explanation was NOT in the portion of the FAQ that so many pointed me to. At least, not as directly. Perhaps it is available in bits and pieces throughout the FAQ, but one would have to understand the answer to piece it together. I certainly understand the ire generated by people who post a simple question that is clearly answered in the FAQ. But I would humbly suggest that the person who did answer this question off-list is more responsible for growth in Nagios users than the rest. Thanks for the help. --- [This E-mail scanned for viruses by Declude Virus] ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gero.waldhausen at inveos.com Tue Mar 11 15:28:24 2003 From: gero.waldhausen at inveos.com (FORESTHUS) Date: 11 Mar 2003 14:28:24 -0000 Subject: nrpe as inetd service In-Reply-To: <20030114124428.64917.qmail@web12608.mail.yahoo.com> References: <20030114124428.64917.qmail@web12608.mail.yahoo.com> Message-ID: <20030311142824.31931.qmail@pod-163.dolphin-server.co.uk> hi, look under solaris8 /usr/local/bin/ there should be tcpd. for quick find under solaris try http://sunfreeware.com there u can find findutils. install them and updatdb. than locate tcpd. than you will find tcpd. cu FORESTHUS ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From akshaysalkar at indiatimes.com Tue Mar 11 15:49:34 2003 From: akshaysalkar at indiatimes.com (akshaysalkar) Date: Tue, 11 Mar 2003 20:19:34 +0530 Subject: test mail plz. ignore Message-ID: <200303111434.UAA23602@WS0005.indiatimes.com> test mail plz ignore. Get Your Private, Free E-mail from Indiatimes at http://email.indiatimes.com Buy the best in Movies at http://www.videos.indiatimes.com Bid for for Air Tickets @ Re.1 on Air Sahara Flights. Just log on to http://airsahara.indiatimes.com and Bid Now! ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From loek at amaze.nl Tue Mar 11 16:15:09 2003 From: loek at amaze.nl (loek at amaze.nl) Date: Tue, 11 Mar 2003 16:15:09 +0100 Subject: notifications from single host. Message-ID: <20030311161509.F3085@amaze.nl> On Mon, Mar 10, 2003 at 02:18:44PM +0100, loek at amaze.nl wrote: > hi all, > > I've got a question about the notificatios which get send out by nagios, > Is it possible to send notifications from a single host to different contact > groups? -snip- > Or how should I configure nagios, so it will send notifications from a single host, to a contactgroup? ok, I should have RTFM, solution: 1. RTFM :) 2. check the escalations.cfg file and read: http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#hostescalation thank you anyway, and I will read the manual good, for next time... cheers Loek van der Linden ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GWCOOK at mactec.com Tue Mar 11 16:19:02 2003 From: GWCOOK at mactec.com (Cook, Garry) Date: Tue, 11 Mar 2003 08:19:02 -0700 Subject: Statusmap backgrounds and Avaya icon Message-ID: I've created an Avaya icon in .gif, .png, .jpg, and .gd2 format. Enjoy! Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 303.881.5157 (Mobile) > -----Original Message----- > From: Tom Dunlap [mailto:tdunlap_z at yahoo.com] > Sent: Monday, March 10, 2003 11:43 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Statusmap backgrounds and Avaya icon > > > I am looking for some gd2 maps and a gd2 Avaya icon. > Does anyone have a source for these? > > Thank you > Tom Dunlap > > __________________________________________________ > Do you Yahoo!? > Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- A non-text attachment was scrubbed... Name: avaya.tar.gz Type: application/x-gzip Size: 3505 bytes Desc: avaya.tar.gz URL: From gillespie at iomega.com Tue Mar 11 17:18:58 2003 From: gillespie at iomega.com (Brandon Gillespie) Date: Tue, 11 Mar 2003 09:18:58 -0700 Subject: http+ssl monitor? Message-ID: <3E6E0C72.8090502@iomega.com> I have hacked a simple script to test the SSL side of the house, but I'm curious if anybody else has one? I just pipe it through openssl s_client. It would be nice if check_http could do this itself... -Brandon Gillespie ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mandrade at sao-co.br.dhl.com Tue Mar 11 18:04:27 2003 From: mandrade at sao-co.br.dhl.com (Marcel Thimm Andrade) Date: Tue, 11 Mar 2003 14:04:27 -0300 Subject: NRPE Message-ID: <5.1.0.14.0.20030311135905.00aac660@saoco> Hello, I am a beginner with Nagios. I downloaded the core program, plugins, documentation, addons ... I need to install NRPE in a HP-UX v10.20 system, but 'configure' does not finish its process with success. Is ther someone to help me ? Thank you very much. Marcel Thimm Andrade ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Tue Mar 11 18:10:29 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Tue, 11 Mar 2003 09:10:29 -0800 Subject: http+ssl monitor? In-Reply-To: <3E6E0C72.8090502@iomega.com> References: <3E6E0C72.8090502@iomega.com> Message-ID: <20030311171029.GB14433@UnderGrid.net> I will look into this but unless the SSL portion was rip'd from the check_http code it should work as I have the following entries in my commands config file: command[check_https]=$USER1$/check_http -H $ARG1$ --ssl -I $HOSTADDRESS$ -w $ARG2$ -c $ARG3$ command[check_https_cert]=$USER1$/check_http -H $ARG1$ --ssl -I $HOSTADDRESS$ -C $ARG2$ For both ARG1 is the hostname you're checking... For check_https ARG2 and ARG3 are your warning and critical values and for check_https_cert it's the number of days prior to expiration to return a WARNING state and returns a CRITICAL when it expires... I had this with the old Netsaint plugins check_http (netsaint-plugins 1.2.9-4) 1.32.2.6 but I'm checking into the current CVS version check_http (nagios-plugins 1.3.0) 1.25 right now... It does still have the SSL code and it does work... You do have to have the openssl library header files available when it's compiled in order for the SSL support to be compiled in... jeremy at neo:~/cvs/nagiosplug$ plugins/check_http -w 5 -c 10 --ssl -H www.verisign.com HTTP ok: HTTP/1.1 200 OK - 0.328 second response time |time= 0.328 jeremy at neo:~/cvs/nagiosplug$ plugins/check_http -H www.verisign.com --ssl -C 14 Certificate will expire on 06/09/2003 23:5. That run was from the CVS version but I don't recall any code changes being made in CVS to check_http since 1.3.0 released... Jeremy On Tue, Mar 11, 2003 at 09:18:58AM -0700, Brandon Gillespie wrote: > I have hacked a simple script to test the SSL side of the house, but I'm > curious if anybody else has one? I just pipe it through openssl > s_client. It would be nice if check_http could do this itself... > > -Brandon Gillespie > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk being > sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cramer at dolphins.ch Tue Mar 11 18:56:59 2003 From: cramer at dolphins.ch (Matthias Cramer) Date: Tue, 11 Mar 2003 18:56:59 +0100 Subject: http+ssl monitor? In-Reply-To: <3E6E0C72.8090502@iomega.com> References: <3E6E0C72.8090502@iomega.com> Message-ID: <20030311185659.774a541e.cramer@dolphins.ch> On Tue, 11 Mar 2003 09:18:58 -0700 Brandon Gillespie wrote: > I have hacked a simple script to test the SSL side of the house, but I'm > > curious if anybody else has one? I just pipe it through openssl > s_client. It would be nice if check_http could do this itself... As far as I can see from the documentation of check_http, it can ... Here it comes: /usr/lib/nagios/plugins/check_http --help check_http (netsaint-plugins 1.2.9-4) 1.32.2.6 The netsaint plugins come with ABSOLUTELY NO WARRANTY. You may redistribute copies of the plugins under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING. Copyright (c) 1999 Ethan Galstad (netsaint at linuxbox.com) This plugin tests the HTTP service on the specified host. It can test normal (http) and secure (https) servers, follow redirects, search for strings and regular expressions, check connection times, and report on certificate expiration times. Options: -S, --ssl Connect via SSL -C, --certificate=INTEGER Minimum number of days a certificate has to be valid. (when this option is used the url is not checked.) Hope that helps ... Cheers Matthias -- _;\_ Matthias Cramer System & Network Manager /_. \ Dolphins Network Systems AG Phone +41-1-847'45'45 |/ -\ .) Libernstrasse 24 Fax +41-1-847'45'49 -'^`- \; CH-8112 Otelfingen http://www.dolphins.ch/ -----BEGIN GEEK CODE BLOCK----- Version: 3.12 GIT d- s+: a- C+++ UL++++ P+++ L+++ E- W+++ N++ o K- w--- O- M+ V+++ PS PE++ Y+ PGP++ t++ 5- X+ R tv+ b+ DI++ D+ G++ e h r- y+ ------END GEEK CODE BLOCK------ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From mandrade at sao-co.br.dhl.com Tue Mar 11 19:04:05 2003 From: mandrade at sao-co.br.dhl.com (Marcel Thimm Andrade) Date: Tue, 11 Mar 2003 15:04:05 -0300 Subject: NRPE In-Reply-To: <000601c2e7f2$5ee59000$b201a8c0@unirez.com> References: <5.1.0.14.0.20030311135905.00aac660@saoco> Message-ID: <5.1.0.14.0.20030311150259.00a4d040@saoco> Ok, I am sending the files config.status and config.log. tks At 11:19 11/03/03 -0600, you wrote: >Why not run configure, then copy the output to the list so we can see what >went wrong. > > >-----Original Message----- >From: nagios-users-admin at lists.sourceforge.net >[mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Marcel Thimm >Andrade >Sent: Tuesday, March 11, 2003 11:04 AM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] NRPE > >Hello, > >I am a beginner with Nagios. >I downloaded the core program, plugins, documentation, addons ... >I need to install NRPE in a HP-UX v10.20 system, but 'configure' does not >finish its process with success. >Is ther someone to help me ? > >Thank you very much. > >Marcel Thimm Andrade > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting >any issue. >::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- #! /bin/sh # Generated automatically by configure. # Run this file to recreate the current configuration. # This directory was configured as follows, # on host ursa: # # ./configure # # Compiler output produced by configure, useful for debugging # configure, is in ./config.log if it exists. ac_cs_usage="Usage: ./config.status [--recheck] [--version] [--help]" for ac_option do case "$ac_option" in -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) echo "running ${CONFIG_SHELL-/bin/sh} ./configure --no-create --no-recursion" exec ${CONFIG_SHELL-/bin/sh} ./configure --no-create --no-recursion ;; -version | --version | --versio | --versi | --vers | --ver | --ve | --v) echo "./config.status generated by autoconf version 2.13" exit 0 ;; -help | --help | --hel | --he | --h) echo "$ac_cs_usage"; exit 0 ;; *) echo "$ac_cs_usage"; exit 1 ;; esac done ac_given_srcdir=. ac_given_INSTALL="./install-sh -c" trap 'rm -fr Makefile src/Makefile subst common/config.h conftest*; exit 1' 1 2 15 # Protect against being on the right side of a sed subst in config.status. sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\&%]/\\&/g; s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF /^[ ]*VPATH[ ]*=[^:]*$/d s%@SHELL@%/bin/sh%g s%@CFLAGS@%%g s%@CPPFLAGS@%%g s%@CXXFLAGS@%%g s%@FFLAGS@%%g s%@DEFS@%-DHAVE_CONFIG_H%g s%@LDFLAGS@%%g s%@LIBS@%%g s%@exec_prefix@%${prefix}%g s%@prefix@%/usr/local/nagios%g s%@program_transform_name@%s,x,x,%g s%@bindir@%${exec_prefix}/bin%g s%@sbindir@%${exec_prefix}/sbin%g s%@libexecdir@%${exec_prefix}/libexec%g s%@datadir@%${prefix}/share%g s%@sysconfdir@%${prefix}/etc%g s%@sharedstatedir@%${prefix}/com%g s%@localstatedir@%${prefix}/var%g s%@libdir@%${exec_prefix}/lib%g s%@includedir@%${prefix}/include%g s%@oldincludedir@%/usr/include%g s%@infodir@%${prefix}/info%g s%@mandir@%${prefix}/man%g s%@INSTALL_PROGRAM@%${INSTALL}%g s%@INSTALL_SCRIPT@%${INSTALL_PROGRAM}%g s%@INSTALL_DATA@%${INSTALL} -m 644%g s%@INSTALL@%./install-sh -c%g s%@CC@%cc%g s%@SET_MAKE@%%g s%@CPP@%cc -E%g s%@SOCKETLIBS@%%g s%@nrpe_user@%nagios%g s%@nrpe_grp@%nagios%g s%@nrpe_port@%5666%g s%@PERL@%/usr/contrib/bin/perl%g CEOF # Split the substitutions into bite-sized pieces for seds with # small command number limits, like on Digital OSF/1 and HP-UX. ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script. ac_file=1 # Number of current file. ac_beg=1 # First line for current file. ac_end=$ac_max_sed_cmds # Line after last line for current file. ac_more_lines=: ac_sed_cmds="" while $ac_more_lines; do if test $ac_beg -gt 1; then sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file else sed "${ac_end}q" conftest.subs > conftest.s$ac_file fi if test ! -s conftest.s$ac_file; then ac_more_lines=false rm -f conftest.s$ac_file else if test -z "$ac_sed_cmds"; then ac_sed_cmds="sed -f conftest.s$ac_file" else ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file" fi ac_file=`expr $ac_file + 1` ac_beg=$ac_end ac_end=`expr $ac_end + $ac_max_sed_cmds` fi done if test -z "$ac_sed_cmds"; then ac_sed_cmds=cat fi CONFIG_FILES=${CONFIG_FILES-"Makefile src/Makefile subst"} for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case "$ac_file" in *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; *) ac_file_in="${ac_file}.in" ;; esac # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories. # Remove last slash and all that follows it. Not all systems have dirname. ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then # The file is in a subdirectory. test ! -d "$ac_dir" && mkdir "$ac_dir" ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`" # A "../" for each directory in $ac_dir_suffix. ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'` else ac_dir_suffix= ac_dots= fi case "$ac_given_srcdir" in .) srcdir=. if test -z "$ac_dots"; then top_srcdir=. else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; *) # Relative path. srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" top_srcdir="$ac_dots$ac_given_srcdir" ;; esac case "$ac_given_INSTALL" in [/$]*) INSTALL="$ac_given_INSTALL" ;; *) INSTALL="$ac_dots$ac_given_INSTALL" ;; esac echo creating "$ac_file" rm -f "$ac_file" configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure." case "$ac_file" in *Makefile*) ac_comsub="1i\\ # $configure_input" ;; *) ac_comsub= ;; esac ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` sed -e "$ac_comsub s%@configure_input@%$configure_input%g s%@srcdir@%$srcdir%g s%@top_srcdir@%$top_srcdir%g s%@INSTALL@%$INSTALL%g " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file fi; done rm -f conftest.s* # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where # NAME is the cpp macro being defined and VALUE is the value it is being given. # # ac_d sets the value in "#define NAME VALUE" lines. ac_dA='s%^\([ ]*\)#\([ ]*define[ ][ ]*\)' ac_dB='\([ ][ ]*\)[^ ]*%\1#\2' ac_dC='\3' ac_dD='%g' # ac_u turns "#undef NAME" with trailing blanks into "#define NAME VALUE". ac_uA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_uB='\([ ]\)%\1#\2define\3' ac_uC=' ' ac_uD='\4%g' # ac_e turns "#undef NAME" without trailing blanks into "#define NAME VALUE". ac_eA='s%^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ac_eB='$%\1#\2define\3' ac_eC=' ' ac_eD='%g' if test "${CONFIG_HEADERS+set}" != set; then CONFIG_HEADERS="common/config.h" fi for ac_file in .. $CONFIG_HEADERS; do if test "x$ac_file" != x..; then # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case "$ac_file" in *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'` ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; *) ac_file_in="${ac_file}.in" ;; esac echo creating $ac_file rm -f conftest.frag conftest.in conftest.out ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"` cat $ac_file_inputs > conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in cat > conftest.frag < conftest.out rm -f conftest.in mv conftest.out conftest.in rm -f conftest.frag conftest.h echo "/* $ac_file. Generated automatically by configure. */" > conftest.h cat conftest.in >> conftest.h rm -f conftest.in if cmp -s $ac_file conftest.h 2>/dev/null; then echo "$ac_file is unchanged" rm -f conftest.h else # Remove last slash and all that follows it. Not all systems have dirname. ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'` if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then # The file is in a subdirectory. test ! -d "$ac_dir" && mkdir "$ac_dir" fi rm -f $ac_file mv conftest.h $ac_file fi fi; done exit 0 -------------- next part -------------- This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:565: checking for a BSD compatible install configure:622: checking for gcc configure:652: checking for cc configure:735: checking whether the C compiler (cc ) works configure:751: cc -o conftest conftest.c 1>&5 configure:777: checking whether the C compiler (cc ) is a cross-compiler configure:782: checking whether we are using GNU C configure:791: cc -E conftest.c configure:810: checking whether cc accepts -g configure:842: checking whether make sets ${MAKE} configure:870: checking how to run the C preprocessor configure:891: cc -E conftest.c >/dev/null 2>conftest.out configure:950: checking for ANSI C header files configure:963: cc -E conftest.c >/dev/null 2>conftest.out configure:1030: cc -o conftest conftest.c 1>&5 configure:1054: checking whether time.h and sys/time.h may both be included configure:1068: cc -c conftest.c 1>&5 configure:1089: checking for sys/wait.h that is POSIX.1 compatible configure:1110: cc -c conftest.c 1>&5 configure:1134: checking for ctype.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for errno.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for fcntl.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for grp.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for netdb.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for pwd.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for signal.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for strings.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for string.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for syslog.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for unistd.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for arpa/inet.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for netinet/in.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for sys/types.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for sys/time.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for sys/resource.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for sys/wait.h configure:1134: checking for sys/socket.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1134: checking for sys/stat.h configure:1144: cc -E conftest.c >/dev/null 2>conftest.out configure:1172: checking for working const configure:1226: cc -c conftest.c 1>&5 (Bundled) cc: "configure", line 1182: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1182: error 1000: Unexpected symbol: "charset". (Bundled) cc: "configure", line 1184: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1184: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1184: error 1000: Unexpected symbol: "*". (Bundled) cc: "configure", line 1188: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1188: error 1000: Unexpected symbol: "zero". (Bundled) cc: "configure", line 1192: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1192: error 1000: Unexpected symbol: "char". (Bundled) cc: "configure", line 1197: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1197: error 1000: Unexpected symbol: "const". (Bundled) cc: "configure", line 1197: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1200: warning 5: "const" will become a keyword. (Bundled) cc: "configure", line 1197: error 1000: Unexpected symbol: ")". (Bundled) cc: error 2017: Cannot recover from earlier errors, terminating. configure: failed program was: #line 1177 "configure" #include "confdefs.h" int main() { /* Ultrix mips cc rejects this. */ typedef int charset[2]; const charset x; /* SunOS 4.1.1 cc rejects this. */ char const *const *ccp; char **p; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; ccp = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++ccp; p = (char**) ccp; ccp = (char const *const *) p; { /* SCO 3.2v4 cc rejects this. */ char *t; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; }; struct s *b; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; } ; return 0; } configure:1247: checking whether struct tm is in sys/time.h or time.h configure:1260: cc -c conftest.c 1>&5 configure:1281: checking for mode_t configure:1314: checking for pid_t configure:1347: checking for size_t configure:1380: checking return type of signal handlers configure:1402: cc -c conftest.c 1>&5 configure:1421: checking for uid_t in sys/types.h configure:1455: checking type of array argument to getgroups configure:1488: cc -o conftest conftest.c 1>&5 configure:1527: checking for main in -lnsl configure:1542: cc -o conftest conftest.c -lnsl 1>&5 /usr/ccs/bin/ld: Can't find library for -lnsl configure: failed program was: #line 1535 "configure" #include "confdefs.h" int main() { main() ; return 0; } configure:1563: checking for socket in -lsocket configure:1582: cc -o conftest conftest.c -lsocket 1>&5 /usr/ccs/bin/ld: Can't find library for -lsocket configure: failed program was: #line 1571 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char socket(); int main() { socket() ; return 0; } configure:1606: checking for strdup configure:1634: cc -o conftest conftest.c 1>&5 configure:1606: checking for strstr configure:1634: cc -o conftest conftest.c 1>&5 configure:1606: checking for strtoul configure:1634: cc -o conftest conftest.c 1>&5 configure:1606: checking for initgroups configure:1634: cc -o conftest conftest.c 1>&5 configure:1660: checking for type of socket size configure:1672: cc -c conftest.c 1>&5 configure:1726: checking for perl From philc at foundation-it.com Tue Mar 11 19:16:22 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Tue, 11 Mar 2003 18:16:22 -0000 Subject: http+ssl monitor? Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909E7CC@netfinity-1.foundation-it.local> > From: Brandon Gillespie [mailto:gillespie at iomega.com] > > I have hacked a simple script to test the SSL side of the > house, but I'm > curious if anybody else has one? I just pipe it through openssl > s_client. It would be nice if check_http could do this itself... If you point configure at your openssl installation, https support is compiled in. Run 'check_http -h' and see if the -S/--ssl option appears in the list. Phil ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Tue Mar 11 19:39:38 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Tue, 11 Mar 2003 13:39:38 -0500 (EST) Subject: NRPE In-Reply-To: <5.1.0.14.0.20030311135905.00aac660@saoco> References: <5.1.0.14.0.20030311135905.00aac660@saoco> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- On 11-Mar-2003 Marcel Thimm Andrade wrote: > Hello, > > I am a beginner with Nagios. > I downloaded the core program, plugins, documentation, addons ... > I need to install NRPE in a HP-UX v10.20 system, but 'configure' does not > finish its process with success. > Is ther someone to help me ? Providing help without so much as an error message is going to be difficult... - -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPm4taVPEkLgodAWVAQFCSwP/ch1ZSiZ5tK5Y0BiYkbWz/18D4rcWwQMG PvPmFCgtlYuiCz1Ox6ZGQI1q8TnKa8w1qjuzj93S4twMu2hggt/+o4i6k47yBE1J EVSfIHTJ+15yiApUmjrGQYNUgi323sno7y+jCeDQq/avzLERxEyMP0A8ON1rT69X N/WPxR/YwW4= =fl8y -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Tue Mar 11 19:57:40 2003 From: russell at quadrix.com (Russell Scibetti) Date: Tue, 11 Mar 2003 13:57:40 -0500 Subject: FAQ and empty status.log Message-ID: <3E6E31A4.2010207@quadrix.com> I was trying to look at the FAQ to see if my problem was in there, but the FAQ seems to be empty now. Anyone know what happened? Also, has anyone had the behavior and when Nagios starts, the status.log is empty and never gets written to? I've checked all my paths in nagios.log, and they are correct. This instance is set up to only accept passive checks and not actively check anything. Any ideas? Russell Scibetti -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Tue Mar 11 20:01:40 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Tue, 11 Mar 2003 13:01:40 -0600 Subject: Separate warning and critical notification Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444A8006A@gsmail.govst.edu> I've searched through the faq (which took me 0.0 seconds today, but I don't remember anything similar to this in the past) and searched through the mail archives and on google, but not found anything similar to what I'm looking for. I would like to send our warning notifications by e-mail and critical notifications by e-mail and pager. My only thought on this so far is to create separate contacts, one with the e-mail address and one with the pager of an individual and then limit each of their notification_options with the w,r or c,r. Anyone have a suggestion on this? Tim Van Zee ITS Network Specialist Governors State University -------------- next part -------------- An HTML attachment was scrubbed... URL: From russell at quadrix.com Tue Mar 11 20:26:49 2003 From: russell at quadrix.com (Russell Scibetti) Date: Tue, 11 Mar 2003 14:26:49 -0500 Subject: FAQ and empty status.log References: <3E6E31A4.2010207@quadrix.com> Message-ID: <3E6E3879.90903@quadrix.com> Nevermind the status.log question. It was a diskspace issue. Russell Russell Scibetti wrote: > I was trying to look at the FAQ to see if my problem was in there, but > the FAQ seems to be empty now. Anyone know what happened? > > Also, has anyone had the behavior and when Nagios starts, the > status.log is empty and never gets written to? I've checked all my > paths in nagios.log, and they are correct. This instance is set up to > only accept passive checks and not actively check anything. Any ideas? > > Russell Scibetti > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Tue Mar 11 21:30:02 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Tue, 11 Mar 2003 17:30:02 -0300 Subject: Notification by Winpopup Message-ID: How to receive notification by Winpopup ? Thank's Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Tue Mar 11 21:49:50 2003 From: mpowell at ena.com (Marc Powell) Date: Tue, 11 Mar 2003 14:49:50 -0600 Subject: Notification by Winpopup Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED565@mismail.ena.com> There's a FAQ on it but the FAQ appears to be down. It was discussed quite extensively on the mailing list though. A search of the mailing list should provide you with the information you seek. I'll even provide the link: http://sourceforge.net/search/?type=mlists&exact=&q=winpopup&offset=0&gr oup_id=26589&forum_id=1873 -- Marc > -----Original Message----- > From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] > Sent: Tuesday, March 11, 2003 2:30 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Notification by Winpopup > > How to receive notification by Winpopup ? > > Thank's > Hugo > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From atonns at mail.ivillage.com Tue Mar 11 21:56:56 2003 From: atonns at mail.ivillage.com (atonns at mail.ivillage.com) Date: Tue, 11 Mar 2003 15:56:56 -0500 Subject: Separate warning and critical notification Message-ID: I've been trying to do this, but it doesn't work for me. If a service is in a WARNING state, and then becomes CRITICAL, the contacts (ie: the pager) are not re-notified. However, it does send two recover messages when it becomes OK. The same goes for a state that is immediately CRITICAL (like cpu%) and then becomes WARNING. No email is sent until recovery, when both are notfied. Of course, I only want one email sent when the state change occurs because the Skytel system back-logs pages for me (ie: they aren't lost when I'm in the subway). I'm not complaining because this is how Nagios is spec'd. I'm just chiming in that I haven't found a way around these issues. -- "Computer science is as much about computers as astronomy is about telescopes" -- Edsger Dijkstra --------------------------------------------------------- Anthony Tonns, UNIX Administrator - atonns at mail.ivillage.com -----Original Message----- From: VanZee, Timothy [mailto:T-VANZEE at govst.edu] Sent: Tuesday, March 11, 2003 2:02 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Separate warning and critical notification I've searched through the faq (which took me 0.0 seconds today, but I don't remember anything similar to this in the past) and searched through the mail archives and on google, but not found anything similar to what I'm looking for. I would like to send our warning notifications by e-mail and critical notifications by e-mail and pager. My only thought on this so far is to create separate contacts, one with the e-mail address and one with the pager of an individual and then limit each of their notification_options with the w,r or c,r. Anyone have a suggestion on this? Tim Van Zee ITS Network Specialist Governors State University -------------- next part -------------- An HTML attachment was scrubbed... URL: From jamie.baddeley at bclnz.com Tue Mar 11 22:39:44 2003 From: jamie.baddeley at bclnz.com (Jamie Baddeley) Date: Wed, 12 Mar 2003 10:39:44 +1300 Subject: Notification by Winpopup Message-ID: banana? >>> "Hugo Rebello" 03/12 9:30 AM >>> How to receive notification by Winpopup ? Thank's Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From smahieux at wanadoo.fr Wed Mar 12 00:28:54 2003 From: smahieux at wanadoo.fr (Sebastien MAHIEUX) Date: Wed, 12 Mar 2003 00:28:54 +0100 (MET) Subject: oracle plugins Message-ID: <25010.2953556508$1047427201@news.gmane.org> Whats kind of server do you use ? NT, UNIX ? ----- Original Message ----- From: "bernie liwanag" To: Sent: Tuesday, March 11, 2003 12:16 PM Subject: [Nagios-users] oracle plugins > Anyone can help me on how to check oracle server > status? > > What are the pre-requisites for using check_oracle > plugins? > > What is check_ora_table_space.pl and > check_oracle_instance.pl? > > Thanks a lot! > Bernie > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Web Hosting - establish your business online > http://webhosting.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bakkerl at lamp.xs4all.nl Wed Mar 12 01:00:45 2003 From: bakkerl at lamp.xs4all.nl (Lennard Bakker) Date: 12 Mar 2003 01:00:45 +0100 Subject: IPv6 support Message-ID: <1047427243.17931.8.camel@peitha> Hi, Are there plugins that support ipv6? I only can find some ipv6 support for checks that uses ssh (check_ssh and check_by_ssh). For example no check_ping with ipv6 support... Thanx, Lennard ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Wed Mar 12 03:17:00 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Tue, 11 Mar 2003 18:17:00 -0800 Subject: IPv6 support In-Reply-To: <1047427243.17931.8.camel@peitha> References: <1047427243.17931.8.camel@peitha> Message-ID: <20030312021700.GB11428@UnderGrid.net> This is being worked on mainly by me at this time... It is being developed in the CVS version at this time and will be in the next stable release of the plugins... Currently the network connection code is AF independent and supports both IPv4 and IPv6 but not all of the plugins are operational at this point... Right now check_ping is one of them that needs work but things like check_ssh, check_tcp, etc that merely make network connections will work... Jeremy On Wed, Mar 12, 2003 at 01:00:45AM +0100, Lennard Bakker wrote: > Hi, > > Are there plugins that support ipv6? > I only can find some ipv6 support for checks that uses ssh (check_ssh > and check_by_ssh). > For example no check_ping with ipv6 support... > > Thanx, > > Lennard > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jamie.baddeley at bclnz.com Wed Mar 12 05:03:03 2003 From: jamie.baddeley at bclnz.com (Jamie Baddeley) Date: Wed, 12 Mar 2003 17:03:03 +1300 Subject: http://www.linpro.no/projects/lrrd/ Message-ID: Has anyone tried using this plus NSCA? Jamie ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 12 08:53:25 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 12 Mar 2003 09:53:25 +0200 Subject: Odd host displays Message-ID: <9290BC9741D67F43BDAAC84144FF870DB691E6@intecserver007.intec.co.za> Gurus, Still in the process of configuring agios, but have picked up an oddity. When selecting the "Host Detail", I do not always get the full listing, of say 30 hosts and only after a number of refreshes, I might get the correct display. Any ideas why this may be happening, or is this normal. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Wed Mar 12 09:12:43 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Wed, 12 Mar 2003 09:12:43 +0100 Subject: Is anyone else working on DB-support for Nagios-config?? References: Message-ID: <3E6EEBFB.2030203@datavis.se> I am.. I have this right now; - a working database-model and a script that creates the tables - scripts to import objects from the config-files - scripts to export some or all data back to the files - a simple text-base UI to add/remove/edit objects in the DB, export the config to files and restart/reload Nagios Not all types of object are supported yet, and the syntax-checking in the UI is not finished yet. /FredrikW ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From atul at mindsw.com Wed Mar 12 08:58:23 2003 From: atul at mindsw.com (Atul Gosain) Date: Wed, 12 Mar 2003 13:28:23 +0530 Subject: Dialogic D480SC monitoring Message-ID: <3E6EE89F.4090407@mindsw.com> hi Has anyone done monitoring/management of Dialogic D480SC monitoring through Nagios before. Also can anyone tell me from where i can get the MIB for Cisco 5300. Thanks Atul Gosain -- --------------------------------------- Mindframe Software & Services Pvt. Ltd. A-50, Sector-39, NOIDA, U.P. - 201301 Ph.: +91-120-4500369, 4575991, 4576970 http://www.mindsw.com --------------------------------------- Who does not trust enough will not be trusted. -- Lao Tsu ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From anders.x.karlsson at songnetworks.se Wed Mar 12 10:43:48 2003 From: anders.x.karlsson at songnetworks.se (Anders Karlsson) Date: Wed, 12 Mar 2003 09:43:48 +0000 Subject: [Nagios-devel] Is anyone else working on DB-support for Nagios-config?? In-Reply-To: <3E6EEBFB.2030203@datavis.se> References: <3E6EEBFB.2030203@datavis.se> Message-ID: <200303120943.51323.anders.x.karlsson@songnetworks.se> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I made a small hack some time ago for Nagios, that let's nagios read the configuration directly from mysql DB instead of config files, if there's any interest I can try to find the code again. /Anders onsdagen den 12 mars 2003 08.12 skrev Fredrik W?nglund: > I am.. > > I have this right now; > - a working database-model and a script that creates the tables > - scripts to import objects from the config-files > - scripts to export some or all data back to the files > - a simple text-base UI to add/remove/edit objects in the DB, export the > config to files and restart/reload Nagios > > Not all types of object are supported yet, and the syntax-checking in > the UI is not finished yet. > > > /FredrikW > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-devel mailing list > Nagios-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-devel - -- SongNetworks anders.x.karlsson at songnetworks.se Have you hugged your firewall today? No spam, thanks. - -------------------------------------------------------- Are you the police? . . . . No ma'am, we're sysadmins -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (GNU/Linux) iD8DBQE+bwFXtC1yigtSyRkRAgsTAJsFtws2JEd8t0G1t0EzRliYPCfCggCgpVVa 9+VQ/6HP2v2xDnnKG5GrGlQ= =MF99 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From laurent.vaills at dms.at Wed Mar 12 09:56:43 2003 From: laurent.vaills at dms.at (Laurent Vaills) Date: 12 Mar 2003 09:56:43 +0100 Subject: Is anyone else working on DB-support for Nagios-config?? In-Reply-To: <3E6EEBFB.2030203@datavis.se> References: <3E6EEBFB.2030203@datavis.se> Message-ID: <1047459404.14196.12.camel@neo.sophia.dms.at> Hello. Which database are you using ? Which programming language are you using for your text based UI ? Have you already taken a look to this mail : http://sourceforge.net/mailarchive/message.php?msg_id=3671081 Regards, Laurent On Wed, 2003-03-12 at 09:12, Fredrik W?nglund wrote: > I am.. > > I have this right now; > - a working database-model and a script that creates the tables > - scripts to import objects from the config-files > - scripts to export some or all data back to the files > - a simple text-base UI to add/remove/edit objects in the DB, export the > config to files and restart/reload Nagios > > Not all types of object are supported yet, and the syntax-checking in > the UI is not finished yet. > > > /FredrikW > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Wed Mar 12 10:05:40 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Wed, 12 Mar 2003 11:05:40 +0200 Subject: Is anyone else working on DB-support for Nagios-config?? Message-ID: Please please please could I have a copy. My object files are HUGE and are starting to become unmanageable. PLEASE PLEASE :) fred > -----Original Message----- > From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] > Sent: 12 March 2003 10:13 AM > To: nagios-users at lists.sourceforge.net; > nagios-devel at lists.sourceforge.net > Subject: [Nagios-users] Is anyone else working on DB-support for > Nagios-config?? > > > I am.. > > I have this right now; > - a working database-model and a script that creates the tables > - scripts to import objects from the config-files > - scripts to export some or all data back to the files > - a simple text-base UI to add/remove/edit objects in the DB, > export the > config to files and restart/reload Nagios > > Not all types of object are supported yet, and the syntax-checking in > the UI is not finished yet. > > > /FredrikW > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From christian at dnet.net.id Wed Mar 12 10:02:52 2003 From: christian at dnet.net.id (Chris) Date: Wed, 12 Mar 2003 16:02:52 +0700 Subject: Odd host displays In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB691E6@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB691E6@intecserver007.intec.co.za> Message-ID: <200303121602.52495.christian@dnet.net.id> maybe you have more than one nagios running, check with ps -ax |grep nagios regards, chris On Wednesday 12 March 2003 14:53, Paul Clayton wrote: > Gurus, > > Still in the process of configuring agios, but have picked up an oddity. > When selecting the "Host Detail", I do not always get the full listing, of > say 30 hosts and only after a number of refreshes, I might get the correct > display. > > Any ideas why this may be happening, or is this normal. > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > > > > *************************************************************************** >**************** > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised > recipient of this email or have received it in error, please delete it > immediately and notify the sender by e-mail. In such a case reading, > reproducing, printing or further dissemination of this e-mail is strictly > prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > *************************************************************************** >*************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 12 10:14:14 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 12 Mar 2003 11:14:14 +0200 Subject: Odd host displays Message-ID: <9290BC9741D67F43BDAAC84144FF870DB691E9@intecserver007.intec.co.za> Chris, Thank you. Well spotted. That was the problem. I did not think to look at the process table. Seems to be a defeciency in the nagios shutdown scripts. regards -----Original Message----- From: Chris [mailto:christian at dnet.net.id] Sent: Wednesday, March 12, 2003 11:03 AM To: Paul Clayton; Nagios Users (E-mail) Subject: Re: [Nagios-users] Odd host displays maybe you have more than one nagios running, check with ps -ax |grep nagios regards, chris On Wednesday 12 March 2003 14:53, Paul Clayton wrote: > Gurus, > > Still in the process of configuring agios, but have picked up an oddity. > When selecting the "Host Detail", I do not always get the full listing, of > say 30 hosts and only after a number of refreshes, I might get the correct > display. > > Any ideas why this may be happening, or is this normal. > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > > > > *************************************************************************** >**************** > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised > recipient of this email or have received it in error, please delete it > immediately and notify the sender by e-mail. In such a case reading, > reproducing, printing or further dissemination of this e-mail is strictly > prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > *************************************************************************** >*************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tridentadm at netscape.net Wed Mar 12 10:25:23 2003 From: tridentadm at netscape.net (tridentadm at netscape.net) Date: Wed, 12 Mar 2003 04:25:23 -0500 Subject: test mail Message-ID: <2888E791.5740BBDE.10C3B4E4@netscape.net> test mail __________________________________________________________________ Try AOL and get 1045 hours FREE for 45 days! http://free.aol.com/tryaolfree/index.adp?375380 Get AOL Instant Messenger 5.1 for FREE! Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Wed Mar 12 10:59:57 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Wed, 12 Mar 2003 10:59:57 +0100 Subject: Is anyone else working on DB-support for Nagios-config?? References: <3E6EEBFB.2030203@datavis.se> <1047459404.14196.12.camel@neo.sophia.dms.at> Message-ID: <3E6F051D.8040700@datavis.se> Laurent Vaills wrote: >Hello. > >Which database are you using ? > Mysql >Which programming language are you using for your text based UI ? > TCL (and maybe TK in the future, but at leas a web-frontend). > >Have you already taken a look to this mail : >http://sourceforge.net/mailarchive/message.php?msg_id=3671081 > Yes, Nagios have DB-support for status-data, not the configuration. > >Regards, >Laurent > >On Wed, 2003-03-12 at 09:12, Fredrik W?nglund wrote: > > >>I am.. >> >>I have this right now; >>- a working database-model and a script that creates the tables >>- scripts to import objects from the config-files >>- scripts to export some or all data back to the files >>- a simple text-base UI to add/remove/edit objects in the DB, export the >>config to files and restart/reload Nagios >> >>Not all types of object are supported yet, and the syntax-checking in >>the UI is not finished yet. >> >> >>/FredrikW >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by:Crypto Challenge is now open! >>Get cracking and register here for some mind boggling fun and >>the chance of winning an Apple iPod: >>http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >>::: Messages without supporting info will risk being sent to /dev/null >> >> > > > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Wed Mar 12 11:04:03 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Wed, 12 Mar 2003 11:04:03 +0100 Subject: [Nagios-devel] Is anyone else working on DB-support for Nagios-config?? References: <3E6EEBFB.2030203@datavis.se> <200303120943.51323.anders.x.karlsson@songnetworks.se> Message-ID: <3E6F0613.7060101@datavis.se> That's interresting. In my aproach, the config-changes needs to be 'committed', which means that config files are generated from the database and Nagios is restarted. The advantage of this is that you dont need to change something in Nagios. The disadvantage is that you still need the files (and have the possibility that someone is changing the files instead of the database) Anders Karlsson wrote: >-----BEGIN PGP SIGNED MESSAGE----- >Hash: SHA1 > >I made a small hack some time ago for Nagios, that let's nagios read the >configuration directly from mysql DB instead of config files, if there's any >interest I can try to find the code again. > >/Anders > >onsdagen den 12 mars 2003 08.12 skrev Fredrik W?nglund: > > >>I am.. >> >>I have this right now; >>- a working database-model and a script that creates the tables >>- scripts to import objects from the config-files >>- scripts to export some or all data back to the files >>- a simple text-base UI to add/remove/edit objects in the DB, export the >>config to files and restart/reload Nagios >> >>Not all types of object are supported yet, and the syntax-checking in >>the UI is not finished yet. >> >> >>/FredrikW >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by:Crypto Challenge is now open! >>Get cracking and register here for some mind boggling fun and >>the chance of winning an Apple iPod: >>http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >>_______________________________________________ >>Nagios-devel mailing list >>Nagios-devel at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-devel >> >> > >- -- >SongNetworks >anders.x.karlsson at songnetworks.se >Have you hugged your firewall today? No spam, thanks. >- -------------------------------------------------------- >Are you the police? . . . . No ma'am, we're sysadmins >-----BEGIN PGP SIGNATURE----- >Version: GnuPG v1.0.7 (GNU/Linux) > >iD8DBQE+bwFXtC1yigtSyRkRAgsTAJsFtws2JEd8t0G1t0EzRliYPCfCggCgpVVa >9+VQ/6HP2v2xDnnKG5GrGlQ= >=MF99 >-----END PGP SIGNATURE----- > > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tridentadm at netscape.net Wed Mar 12 11:24:55 2003 From: tridentadm at netscape.net (tridentadm at netscape.net) Date: Wed, 12 Mar 2003 05:24:55 -0500 Subject: nagios maps not showing. Message-ID: <69487C03.3D495C68.10C3B4E4@netscape.net> please let me know why i cannot get the maps. ie. the images dont show up. (as if the browser doesnt support images) my nagios rpms are installed fine along with nagios, nagios-www, and nagios-cgi __________________________________________________________________ Try AOL and get 1045 hours FREE for 45 days! http://free.aol.com/tryaolfree/index.adp?375380 Get AOL Instant Messenger 5.1 for FREE! Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Wed Mar 12 10:56:19 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Wed, 12 Mar 2003 10:56:19 +0100 Subject: Odd host displays References: <9290BC9741D67F43BDAAC84144FF870DB691E6@intecserver007.intec.co.za> Message-ID: <3E6F0443.4503C411@gcc.dhl.com> http://www.nagios.org/faqs/viewfaq.php?faq_id=21&expand=false&showdesc=true Paul Clayton wrote: > > Gurus, > > Still in the process of configuring agios, but have picked up an oddity. > When selecting the "Host Detail", I do not always get the full listing, of > say 30 hosts and only after a number of refreshes, I might get the correct > display. > > Any ideas why this may be happening, or is this normal. > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > ******************************************************************************************* > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > notify the sender by e-mail. In such a case reading, reproducing, printing or > further dissemination of this e-mail is strictly prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ****************************************************************************************** > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Wed Mar 12 11:20:29 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Wed, 12 Mar 2003 21:20:29 +1100 Subject: Check_dns In-Reply-To: <131A385F21AAD311BD6400902763781D01DB2560@Z8>; from Brad@pretzel.com.au on Mon, Mar 10, 2003 at 03:39:21PM +0800 References: <131A385F21AAD311BD6400902763781D01DB2560@Z8> Message-ID: <20030312211906.A443@IPAustralia.Gov.AU> Dear Sir, On Mon, Mar 10, 2003 at 03:39:21PM +0800, Brad Dunn wrote: > Just a quick question, is there anyway I can obtain a copy of the file > (normally in /usr/local/nagios/libexec/) check_dns? No one can send you a binary (check_dns in the path you quote is a binary) unless they (the sender) has the same OS as you. I think your options are 1 rebuild from the source (about a 10 minute go-to-woe job) 2 extract check_dns from an RPM/Package > The exsisting file I had became corrupt and I was just hoping I might be > able to download them individually incase it happens again. > > thanks > > brad Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stefan.Hanssen at baerum.kommune.no Wed Mar 12 12:09:13 2003 From: Stefan.Hanssen at baerum.kommune.no (Stefan Hanssen) Date: Wed, 12 Mar 2003 12:09:13 +0100 Subject: Information on stalking configuration Message-ID: It seems to me that stalking is a topic which is not widely covered. I am trying to enable staking for one host, with no success. Veryfing the following host configuration, define host { host_name fw-ic-n2 alias FW Indre Cluster Node 2 address 193.161.42.132 register 1 max_check_attempts 5 notification_interval 0 notification_period 24x7 notification_options d,u,r stalking_options d,u parents fw-ic } gives me the following error: [root at monitor01 etc]# /usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg Nagios 1.0 Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 11-24-2002 License: GPL Reading configuration data... Error: Invalid stalk_warning value for host 'fw-ic-n2' Error: Could not register host (config file '/usr/local/nagios/etc/hosts.cfg', line 375) ***> One or more problems was encountered while processing the config files... I figured that i need to use a stalk_warning parameter in the config file, but i cant find information on configuration options for this vareiable. Does anyone know where i can find more information on stalking ? __________________________________________ Vennlig hilsen Stefan Hanssen Datakontoret, B?rum Kommune e-post stefan.hanssen at baerum.kommune.no ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From frankie at etsetb.upc.es Wed Mar 12 12:22:02 2003 From: frankie at etsetb.upc.es (Francesc Guasch) Date: Wed, 12 Mar 2003 12:22:02 +0100 Subject: cgi displayed, not executed Message-ID: <3E6F185A.1030109@etsetb.upc.es> Hi. First of all thank you for this great tool. I've been using it in a test box and I love it. Now I have to install it in another server that has an apache server with mod_perl and HTML::Mason. When I request a nagios page from /nagios/cgi-bin/, it returns me the source ELF32 file, it isn't executed by the server. I installed the same version than the test box and I've been checking the conf very carefully. I also added more directives trying to force this execution. I check that mod_perl nor HTML::Mason were rendering the files. I added warns in the mason handler and set SetHandler default-handler directives in the nagios directories and locations. I haven't find more tips googling nor searching the nagios mailing list archives. Here are the details: version: I installed nagios from rpm nagios-www-1.0-1 nagios-1.0-1 nagios-plugins-1.0b4-2 apache-1.3.23-11 This is the config: AddType application/x-httpd-cgi .cgi ScriptAlias /nagios/cgi-bin/ /usr/lib/nagios/cgi/ AllowOverride AuthConfig Options ExecCGI order deny,allow deny from all allow from ip_removed Alias /nagios/ /usr/share/nagios/ AllowOverride AuthConfig Options None order deny,allow deny from all allow from ip_removed PerlModule Apache::AuthDBI Thank you for your time. -- frankie ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tridentadm at netscape.net Wed Mar 12 13:36:32 2003 From: tridentadm at netscape.net (tridentadm at netscape.net) Date: Wed, 12 Mar 2003 07:36:32 -0500 Subject: test mail . plz . ignore Message-ID: <46308836.5099ECE8.10C3B4E4@netscape.net> test __________________________________________________________________ Try AOL and get 1045 hours FREE for 45 days! http://free.aol.com/tryaolfree/index.adp?375380 Get AOL Instant Messenger 5.1 for FREE! Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tridentadm at netscape.net Wed Mar 12 13:50:12 2003 From: tridentadm at netscape.net (tridentadm at netscape.net) Date: Wed, 12 Mar 2003 07:50:12 -0500 Subject: why cant i email to your mailing list?? Message-ID: <4D9992C8.326A9912.10C3B4E4@netscape.net> i cant send emails to your mailing list even though i have been subscribed .. why?? whats wrong? i did receive a first few emails but after that i dont seem to receiving any new emails, or neither can i send emails to your mailing list. why?? __________________________________________________________________ Try AOL and get 1045 hours FREE for 45 days! http://free.aol.com/tryaolfree/index.adp?375380 Get AOL Instant Messenger 5.1 for FREE! Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Wed Mar 12 13:59:43 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Wed, 12 Mar 2003 13:59:43 +0100 Subject: test mail . plz . ignore References: <46308836.5099ECE8.10C3B4E4@netscape.net> Message-ID: <3E6F2F3F.217A4789@gcc.dhl.com> This is becoming an annoying trend lately... tridentadm at netscape.net wrote: > > test > > __________________________________________________________________ > Try AOL and get 1045 hours FREE for 45 days! > http://free.aol.com/tryaolfree/index.adp?375380 > > Get AOL Instant Messenger 5.1 for FREE! Download Now! > http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Wed Mar 12 14:41:07 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Wed, 12 Mar 2003 14:41:07 +0100 Subject: test mail . plz . ignore In-Reply-To: <3E6F2F3F.217A4789@gcc.dhl.com>; from tdeblend@gcc.dhl.com on Wed, Mar 12, 2003 at 01:59:43PM +0100 References: <46308836.5099ECE8.10C3B4E4@netscape.net> <3E6F2F3F.217A4789@gcc.dhl.com> Message-ID: <20030312144107.G1458@hpce.nec.com> On Wed, Mar 12, 2003 at 01:59:43PM +0100, Tom DE BLENDE wrote: > This is becoming an annoying trend lately... > > tridentadm at netscape.net wrote: > > > > test Be grateful that he at least didn't send it as HTML. Now Mr. Tridentadm just has to persuade his parents to give him a proper name, and Everything Will Be Fine. Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Wed Mar 12 14:45:56 2003 From: lejert at hotmail.com (le jert) Date: Wed, 12 Mar 2003 14:45:56 +0100 Subject: problem with "negate " Message-ID: Hi ! In order to check firewall security, I would like to know how I can check if certain ports are closed (and not open, as usually). I mean writing 'ok' for the service if ports 23,... are closed. I use the negate command, but I don't know exactly where I am wrong : $USER1$/negate $USER1$/check_tcp -H -p 22 here's my config : # 'check_tcp_closed' command definition define command{ command_name check_tcp_closed command_line $USER1$/negate $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ } # Service definition for checking if SSh port 22 is closed define service{ use generic-service host_name xxx service_description Check SSH closed is_volatile 0 check_period 24x7 contact_groups xxx notification_options c,r,w check_command check_tcp_closed!22 } Could you help me finding what's wrong ??? thanks Note : I'm running nagios-1.0 with pluggin 1.3.0 beta2 on a redhat 7.3 _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Wed Mar 12 15:10:29 2003 From: David at feedroom.com (David Gitman) Date: Wed, 12 Mar 2003 09:10:29 -0500 Subject: Script Alias Error Message-ID: I'm seeing the following error in my apache error log when trying to access a Nagios script. [Wed Mar 12 08:54:49 2003] [error] [client 10.0.12.31] File does not exist: /local/project/nagios/share/cgi-bin/tac.cgi Any ideas why it's going to /local/project/nagios/share/cgi-bin/ instead of /local/project/nagios/sbin ? My apache Aliases section is below. # # Aliases: Add here as many aliases as you need (with no limit). The format is # Alias fakename realname # # # Note that if you include a trailing / on fakename then the server will # require it to be present in the URL. So "/icons" isn't aliased in this # example, only "/icons/". If the fakename is slash-terminated, then the # realname must also be slash terminated, and if the fakename omits the # trailing slash, the realname must also omit it. # Alias /icons/ "/local/project/apache/icons/" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all # This Alias will project the on-line documentation tree under /manual/ # even if you change the DocumentRoot. Comment it if you don't want to # provide access to the on-line documentation. # Alias /manual/ "/local/project/apache/htdocs/default/manual/" Options Indexes FollowSymlinks MultiViews AllowOverride None Order allow,deny Allow from all Alias /nagios/ "/local/project/nagios/share/" Options None AllowOverride AuthConfig Order allow,deny Allow from all # # ScriptAlias: This controls which directories contain server scripts. # ScriptAliases are essentially the same as Aliases, except that # documents in the realname directory are treated as applications and # run by the server when requested rather than as documents sent to the client. # The same rules about trailing "/" apply to ScriptAlias directives as to # Alias. # ScriptAlias /cgi-bin/ "/local/project/apache/cgi-bin/" # # "/local/project/apache/cgi-bin" should be changed to whatever your ScriptAliased # CGI directory exists, if you have that configured. # AllowOverride None Options None Order allow,deny Allow from all ScriptAlias /nagios/cgi-bin/ "/local/project/nagios/sbin/" AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all # End of aliases. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bryan at bryann.ath.cx Wed Mar 12 15:23:42 2003 From: bryan at bryann.ath.cx (Bryan Nolen) Date: Thu, 13 Mar 2003 01:23:42 +1100 Subject: test mail . plz . ignore In-Reply-To: <3E6F2F3F.217A4789@gcc.dhl.com> References: <46308836.5099ECE8.10C3B4E4@netscape.net> <3E6F2F3F.217A4789@gcc.dhl.com> Message-ID: the test messages or the endless footers? :) (footers kept for impact) On Wed, 12 Mar 2003 23:59, Tom DE BLENDE wrote: > This is becoming an annoying trend lately... > > tridentadm at netscape.net wrote: > > test > > > > __________________________________________________________________ > > Try AOL and get 1045 hours FREE for 45 days! > > http://free.aol.com/tryaolfree/index.adp?375380 > > > > Get AOL Instant Messenger 5.1 for FREE! Download Now! > > http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ::: Please include Nagios version, plugin version (-v) and OS when > > ::: reporting any issue. Messages without supporting info will risk being > > ::: sent to /dev/null > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null -- ================================================== Bryan Nolen bryan at bryann dot ath dot cx http://bryann.ath.cx/ ================================================== ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Wed Mar 12 15:30:16 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Wed, 12 Mar 2003 14:30:16 -0000 Subject: problem with "negate " Message-ID: <53104E20A25CD411B556009027E50636064D5441@pnnemp02.pn.egg.com> What is your result on the command line? I find that you need to place the command in quotes so ./negate ./check_http -H localhost will fail, but ./negate "./check_http -H localhost" will work. > -----Original Message----- > From: le jert [SMTP:lejert at hotmail.com] > Sent: Wednesday, March 12, 2003 1:46 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] problem with "negate " > > Hi ! > > In order to check firewall security, I would like to know how I can > check if certain ports are closed (and not open, as usually). I > mean > writing 'ok' for the service if ports 23,... are closed. > I use the negate command, but I don't know exactly where I am wrong : > > > $USER1$/negate $USER1$/check_tcp -H -p 22 > > here's my config : > > > # 'check_tcp_closed' command definition > define command{ > command_name check_tcp_closed > command_line $USER1$/negate $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ > } > > > > # Service definition for checking if SSh port 22 is closed > define service{ > use generic-service > host_name xxx > service_description Check SSH closed > is_volatile 0 > check_period 24x7 > contact_groups xxx > notification_options c,r,w > check_command check_tcp_closed!22 > } > > > Could you help me finding what's wrong ??? > > thanks > > Note : I'm running nagios-1.0 with pluggin 1.3.0 beta2 on a redhat > 7.3 > > > > _________________________________________________________________ > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Wed Mar 12 15:56:24 2003 From: lejert at hotmail.com (le jert) Date: Wed, 12 Mar 2003 15:56:24 +0100 Subject: problem with "negate " Message-ID: here's is the response : negate: Unknown argument - H >From: "Voon, Ton" >To: 'le jert' , nagios-users at lists.sourceforge.net >Subject: RE: [Nagios-users] problem with "negate " >Date: Wed, 12 Mar 2003 14:30:16 -0000 > >What is your result on the command line? > >I find that you need to place the command in quotes so >./negate ./check_http -H localhost >will fail, but >./negate "./check_http -H localhost" >will work. > > > -----Original Message----- > > From: le jert [SMTP:lejert at hotmail.com] > > Sent: Wednesday, March 12, 2003 1:46 PM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] problem with "negate " > > > > Hi ! > > > > In order to check firewall security, I would like to know how I can > > check if certain ports are closed (and not open, as usually). I > > mean > > writing 'ok' for the service if ports 23,... are closed. > > I use the negate command, but I don't know exactly where I am wrong : > > > > > > $USER1$/negate $USER1$/check_tcp -H -p 22 > > > > here's my config : > > > > > > # 'check_tcp_closed' command definition > > define command{ > > command_name check_tcp_closed > > command_line $USER1$/negate $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ > > } > > > > > > > > # Service definition for checking if SSh port 22 is closed > > define service{ > > use generic-service > > host_name xxx > > service_description Check SSH closed > > is_volatile 0 > > check_period 24x7 > > contact_groups xxx > > notification_options c,r,w > > check_command check_tcp_closed!22 > > } > > > > > > Could you help me finding what's wrong ??? > > > > thanks > > > > Note : I'm running nagios-1.0 with pluggin 1.3.0 beta2 on a redhat > > 7.3 > > > > > > > > _________________________________________________________________ > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > >This private and confidential e-mail has been sent to you by Egg. >The Egg group of companies includes Egg Banking plc >(registered no. 2999842), Egg Financial Products Ltd (registered >no. 3319027) and Egg Investments Ltd (registered no. 3403963) which >carries out investment business on behalf of Egg and is regulated >by the Financial Services Authority. >Registered in England and Wales. Registered offices: 1 Waterhouse Square, >138-142 Holborn, London EC1N 2NA. >If you are not the intended recipient of this e-mail and have >received it in error, please notify the sender by replying with >'received in error' as the subject and then delete it from your >mailbox. _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lejert at hotmail.com Wed Mar 12 15:59:04 2003 From: lejert at hotmail.com (le jert) Date: Wed, 12 Mar 2003 15:59:04 +0100 Subject: problem with "negate " Message-ID: sorry, I forgot something ... here's is the responses : negate: Unknown argument - H TCP OK - 0.008 second response time on port 22 (critical) >From: "Voon, Ton" >To: 'le jert' , nagios-users at lists.sourceforge.net >Subject: RE: [Nagios-users] problem with "negate " >Date: Wed, 12 Mar 2003 14:30:16 -0000 > >What is your result on the command line? > >I find that you need to place the command in quotes so >./negate ./check_http -H localhost >will fail, but >./negate "./check_http -H localhost" >will work. > > > -----Original Message----- > > From: le jert [SMTP:lejert at hotmail.com] > > Sent: Wednesday, March 12, 2003 1:46 PM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] problem with "negate " > > > > Hi ! > > > > In order to check firewall security, I would like to know how I can > > check if certain ports are closed (and not open, as usually). I > > mean > > writing 'ok' for the service if ports 23,... are closed. > > I use the negate command, but I don't know exactly where I am wrong : > > > > > > $USER1$/negate $USER1$/check_tcp -H -p 22 > > > > here's my config : > > > > > > # 'check_tcp_closed' command definition > > define command{ > > command_name check_tcp_closed > > command_line $USER1$/negate $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ > > } > > > > > > > > # Service definition for checking if SSh port 22 is closed > > define service{ > > use generic-service > > host_name xxx > > service_description Check SSH closed > > is_volatile 0 > > check_period 24x7 > > contact_groups xxx > > notification_options c,r,w > > check_command check_tcp_closed!22 > > } > > > > > > Could you help me finding what's wrong ??? > > > > thanks > > > > Note : I'm running nagios-1.0 with pluggin 1.3.0 beta2 on a redhat > > 7.3 > > > > > > > > _________________________________________________________________ > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > >This private and confidential e-mail has been sent to you by Egg. >The Egg group of companies includes Egg Banking plc >(registered no. 2999842), Egg Financial Products Ltd (registered >no. 3319027) and Egg Investments Ltd (registered no. 3403963) which >carries out investment business on behalf of Egg and is regulated >by the Financial Services Authority. >Registered in England and Wales. Registered offices: 1 Waterhouse Square, >138-142 Holborn, London EC1N 2NA. >If you are not the intended recipient of this e-mail and have >received it in error, please notify the sender by replying with >'received in error' as the subject and then delete it from your >mailbox. _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David.Stacy at evenflo.com Wed Mar 12 15:59:37 2003 From: David.Stacy at evenflo.com (Stacy, David) Date: Wed, 12 Mar 2003 09:59:37 -0500 Subject: Monitoring Baan Message-ID: <49482AB0C282D5119A3C0090273AD98D03A26133@evvan1exc2.evenflo.com> Hi I've just installed Nagios within the last month and am very impressed with all of the functionality and architecture. I think its going to fit in very nicely here. Does anyone have experience using Nagios to monitor a production BAAN environment? thanks, Dave ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From scud at sparta.com Wed Mar 12 16:11:51 2003 From: scud at sparta.com (Scudamore, Mike) Date: Wed, 12 Mar 2003 09:11:51 -0600 Subject: why cant i email to your mailing list?? Message-ID: <7C8A4FFB090B9E4E9C56F963D53733972952B9@lal.sparta.com> If he's having this much trouble with e-mail, I can't wait for his first question about Nagios. scud -----Original Message----- From: tridentadm at netscape.net [mailto:tridentadm at netscape.net] Sent: Wednesday, March 12, 2003 6:50 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] why cant i email to your mailing list?? i cant send emails to your mailing list even though i have been subscribed .. why?? whats wrong? i did receive a first few emails but after that i dont seem to receiving any new emails, or neither can i send emails to your mailing list. why?? ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mailinglist at ichilton.co.uk Wed Mar 12 16:31:24 2003 From: mailinglist at ichilton.co.uk (Ian Chilton) Date: Wed, 12 Mar 2003 15:31:24 +0000 Subject: why cant i email to your mailing list?? In-Reply-To: <4D9992C8.326A9912.10C3B4E4@netscape.net> References: <4D9992C8.326A9912.10C3B4E4@netscape.net> Message-ID: <20030312153124.GC28914@roadrunner.ichilton.net> Hello, > i cant send emails to your mailing list even though i have been subscribed .. Trust me, you can. If I was you, i'd stop though as some people have already expressed their annoyance at your test mails. --ian ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Wed Mar 12 19:03:51 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Wed, 12 Mar 2003 12:03:51 -0600 Subject: Notification problems.. Message-ID: <352B04312822444A962714393AED8A4D11379D@ADAEVS01.int.chickasaw.net> Hey all, I have a small but weird problem.. Im using Nagios 1.0 and template based config.. I have the enable_notifications lines in my generic host and generic service templates.. I have disbled notifications and it seems to work for all but a few hosts that seem to still be sending email notifications. I don't have notifications enabled specifically for them as they get their notification config from the generic templates.. Has anyone had this happen before? Could it be a bug perhaps? Thanks in advance! jrmy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 12 19:35:36 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 12 Mar 2003 13:35:36 -0500 (EST) Subject: Dialogic D480SC monitoring In-Reply-To: <3E6EE89F.4090407@mindsw.com> References: <3E6EE89F.4090407@mindsw.com> Message-ID: On Wed, 12 Mar 2003, Atul Gosain wrote: > hi > > Has anyone done monitoring/management of Dialogic D480SC monitoring > through Nagios before. Don't know about Dialogic. > > Also can anyone tell me from where i can get the MIB for Cisco 5300. All cisco mibs are at ftp.cisco.com/pub/mibs Either get everything or look in the supportlists dir for the as5300 and just download the supported mibs. both v1 and v2 dir contain a tar file that contain all the mibs in the v1 and v2 directories. > > Thanks > Atul Gosain > > -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dlevine at NACorporation.com Wed Mar 12 20:27:47 2003 From: dlevine at NACorporation.com (Levine, David) Date: Wed, 12 Mar 2003 13:27:47 -0600 Subject: AS/400 Message-ID: <59A694BBA946D311809100902798EDE2026577C6@MAIL> Hi all - just curious if anyone is monitoring an AS/400 or the lilke with nagios? (just moved to a new shop with one -) Thanks, David ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Wed Mar 12 21:12:44 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Wed, 12 Mar 2003 17:12:44 -0300 Subject: check_snmp Message-ID: Hi people, Could you help me ? I'm trying enable check_snmp to a server, but I receive the following error: **************************************************************************** ******************** Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' specified in service 'SNMP' for host 'sao41w' not defined anywhere! **************************************************************************** ******************** The strange that is I have enable check_ping to the server, and I don't have problem. I have defined the server in hosts.cfg file. Thank you. Regards, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dbestetti at opservices.com.br Wed Mar 12 21:31:05 2003 From: dbestetti at opservices.com.br (Dario B. Bestetti) Date: Wed, 12 Mar 2003 17:31:05 -0300 Subject: AS/400 In-Reply-To: <59A694BBA946D311809100902798EDE2026577C6@MAIL> References: <59A694BBA946D311809100902798EDE2026577C6@MAIL> Message-ID: <00c101c2e8d6$4e9e2e70$3c0aa8c0@dario> David, as long as you have a SNMP agent running on it, no problem. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Levine, David Sent: quarta-feira, 12 de mar?o de 2003 16:28 To: Nagios Users List (E-mail) Subject: [Nagios-users] AS/400 Hi all - just curious if anyone is monitoring an AS/400 or the lilke with nagios? (just moved to a new shop with one -) Thanks, David ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Wed Mar 12 21:28:16 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Wed, 12 Mar 2003 14:28:16 -0600 Subject: check_snmp Message-ID: <352B04312822444A962714393AED8A4D11379F@ADAEVS01.int.chickasaw.net> It looks like its complaining about the service... Is this the old configuration style or template? -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Wednesday, March 12, 2003 2:13 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] check_snmp Hi people, Could you help me ? I'm trying enable check_snmp to a server, but I receive the following error: ************************************************************************ **** ******************** Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' specified in service 'SNMP' for host 'sao41w' not defined anywhere! ************************************************************************ **** ******************** The strange that is I have enable check_ping to the server, and I don't have problem. I have defined the server in hosts.cfg file. Thank you. Regards, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mandrade at sao-co.br.dhl.com Wed Mar 12 21:35:25 2003 From: mandrade at sao-co.br.dhl.com (Marcel Thimm Andrade) Date: Wed, 12 Mar 2003 17:35:25 -0300 Subject: NRPE Message-ID: <5.1.0.14.0.20030312172705.00a83770@saoco> I made the following commands : saoco-root:/tmp/Nagios/nrpe-1.8> ./configure 1>>output.configure1 2>>output.configure2 saoco-root:/tmp/Nagios/nrpe-1.8> make all 1>> output.make_all1 2>>output.make2 And I am attaching the outputs. tks Marcel Thimm Andrade At 11:19 11/03/03 -0600, you wrote: >Why not run configure, then copy the output to the list so we can see what >went wrong. > > >-----Original Message----- >From: nagios-users-admin at lists.sourceforge.net >[mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Marcel Thimm >Andrade >Sent: Tuesday, March 11, 2003 11:04 AM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] NRPE > >Hello, > >I am a beginner with Nagios. >I downloaded the core program, plugins, documentation, addons ... >I need to install NRPE in a HP-UX v10.20 system, but 'configure' does not >finish its process with success. >Is ther someone to help me ? > >Thank you very much. > >Marcel Thimm Andrade > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting >any issue. >::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- (Bundled) cc: "utils.h", line 37: warning 5: "const" will become a keyword. (Bundled) cc: "utils.h", line 37: error 1000: Unexpected symbol: "char". (Bundled) cc: "utils.h", line 34: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 35: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 37: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 39: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 41: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 42: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 44: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 30: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 32: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 33: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 34: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 35: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 36: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 37: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 38: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 39: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 40: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 42: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 43: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 66: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 187: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 304: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 328: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 341: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 375: warning 526: Pointer implicitly converted to integral value in assignment. (Bundled) cc: "nrpe.c", line 375: warning 563: Argument #1 is not the correct type. (Bundled) cc: "nrpe.c", line 513: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 652: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 670: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 685: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 704: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 865: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 874: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "nrpe.c", line 946: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 37: warning 5: "const" will become a keyword. (Bundled) cc: "utils.h", line 37: error 1000: Unexpected symbol: "char". (Bundled) cc: "utils.h", line 34: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 35: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 37: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 39: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 41: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 42: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.h", line 44: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.c", line 37: error 1705: Function prototypes are an ANSI feature. (Bundled) cc: "utils.c", line 61: warning 5: "const" will become a keyword. (Bundled) cc: "utils.c", line 61: error 1000: Unexpected symbol: "char". (Bundled) cc: error 2017: Cannot recover from earlier errors, terminating. Stop. Stop. -------------- next part -------------- syntax error in file subst at line 3, next 2 tokens "my ${exec_prefix}" syntax error in file subst at line 13, next 2 tokens "chomp $TEMP" Execution of subst aborted due to compilation errors. syntax error in file subst at line 3, next 2 tokens "my ${exec_prefix}" syntax error in file subst at line 13, next 2 tokens "chomp $TEMP" Execution of subst aborted due to compilation errors. syntax error in file subst at line 3, next 2 tokens "my ${exec_prefix}" syntax error in file subst at line 13, next 2 tokens "chomp $TEMP" Execution of subst aborted due to compilation errors. syntax error in file subst at line 3, next 2 tokens "my ${exec_prefix}" syntax error in file subst at line 13, next 2 tokens "chomp $TEMP" Execution of subst aborted due to compilation errors. syntax error in file subst at line 3, next 2 tokens "my ${exec_prefix}" syntax error in file subst at line 13, next 2 tokens "chomp $TEMP" Execution of subst aborted due to compilation errors. -------------- next part -------------- cd ./src/; make ; cd .. cc -DHAVE_CONFIG_H nrpe.c utils.c -o nrpe nrpe.c: utils.c: *** Error exit code 2 *** Error exit code 1 -------------- next part -------------- checking for a BSD compatible install... ./install-sh -c checking for gcc... no checking for cc... cc checking whether the C compiler (cc ) works... yes checking whether the C compiler (cc ) is a cross-compiler... no checking whether we are using GNU C... no checking whether cc accepts -g... no checking whether make sets ${MAKE}... yes checking how to run the C preprocessor... cc -E checking for ANSI C header files... yes checking whether time.h and sys/time.h may both be included... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking for ctype.h... yes checking for errno.h... yes checking for fcntl.h... yes checking for grp.h... yes checking for netdb.h... yes checking for pwd.h... yes checking for signal.h... yes checking for strings.h... yes checking for string.h... yes checking for syslog.h... yes checking for unistd.h... yes checking for arpa/inet.h... yes checking for netinet/in.h... yes checking for sys/types.h... yes checking for sys/time.h... yes checking for sys/resource.h... yes checking for sys/wait.h... (cached) yes checking for sys/socket.h... yes checking for sys/stat.h... yes checking for working const... no checking whether struct tm is in sys/time.h or time.h... time.h checking for mode_t... yes checking for pid_t... yes checking for size_t... yes checking return type of signal handlers... void checking for uid_t in sys/types.h... yes checking type of array argument to getgroups... gid_t checking for main in -lnsl... no checking for socket in -lsocket... no checking for strdup... yes checking for strstr... yes checking for strtoul... yes checking for initgroups... yes checking for type of socket size... size_t checking for perl... /usr/contrib/bin/perl creating ./config.status creating Makefile creating src/Makefile creating subst creating common/config.h common/config.h is unchanged *** Configuration summary for nrpe 1.8 01-16-2003 ***: General Options: ------------------------- NRPE port: 5666 NRPE user: nagios NRPE group: nagios Review the options above for accuracy. If they look okay, type 'make all' to compile the NRPE daemon and client. From gert.lindstrom at brevik.nu Wed Mar 12 21:47:02 2003 From: gert.lindstrom at brevik.nu (Gert) Date: 12 Mar 2003 20:47:02 -0000 Subject: NSClient Message-ID: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> Hello. I hope you can help me out here. I am trying to use nsclient in Nagios. It works fine from the command line getting the data fr?n the W2K server but in Nagios i get an"Could not parse arguments" error. Here are my configs. >From checkcommands # 'check_nt_disk' command definition define command{ command_name check_nt_disk command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -s $USER5$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ } from services # Service definition for checking Disk C Free Disk Space on Windows 2000 system define service{ use generic-service host_name vanserv service_description Drive C Space is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 1 retry_check_interval 1 contact_groups nt-admins notification_interval 120 notification_period 24x7 notification_options c,w,r check_command check_nt_disk!C!85!90 } Regards Gert ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From vasil at cs.utk.edu Wed Mar 12 21:50:02 2003 From: vasil at cs.utk.edu (David Vasil) Date: Wed, 12 Mar 2003 15:50:02 -0500 Subject: nagios and Solaris 8 problem In-Reply-To: References: Message-ID: <20030312205001.GA32177@cs.utk.edu> It sounds as though your binary is being stripped by differing versions of strip. I have had issues in the past with the ccs version of strip while using gcc to compile my Sunos58 software. Try using the gnu strip instead during compilation/installation. On Fri, Mar 07, 2003 at 05:56:21PM -0800, Ben.Farris at key3media.com wrote: > I have Solaris with the Jan 2003 patchcluster installed. > > Everything appears to compile properly. > However if I try to call the nagios binary i get an error: > > root at barbrady # ./nagios -v /opt/nagios/etc/nagios.cfg > nagios: Cannot find ELF > Killed > > If I do an ldd on nagios and get ldd: nagios: file has insecure interpreter > ELF > > Does anyone have any ideas what is wrong?? > > Thanks, > Ben -- +------------------------------------------------------------+ | Dave Vasil vasil at cs.utk.edu | | University of Tennessee Computer Science Dept. | | UTKCS Systems Administrator 865-974-8364 | +------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jesus_navarro at undominio.net Wed Mar 12 22:02:42 2003 From: jesus_navarro at undominio.net (=?ISO-8859-1?Q?Jes=FAs?= M. NAVARRO) Date: 12 Mar 2003 22:02:42 +0100 Subject: check nagios and mysql error - where is check_nagios_db.pl script? Message-ID: <1047502961.1653.7.camel@mithrandir.intranet> Hi all: I'm using Nagios 1.0 with MySQL support and I found the "Warning: Monitoring process may not be running!" problem explained in the "F0131 - Checking the status of Nagios with MySQL or PostgreSQL DB support" FAQ (which, by the way, as per 12/MAR/2003 - 23:00GMT throws a "Sorry, but an error occurred... :-(" message when trying to get its content). Now, it says you should change the "check_nagios" plugin with the contributed "check_nagios_db.pl" but alas! I didn't find it neither within my sources (main program or plugins) nor anywhere in the download section of the nagios web. Is still that plugin the way to go or is there any other solution. If the plugin is the way, where can I get it? TIA -- SALUD, Jes?s *** jesus_navarro at undominio.net *** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Wed Mar 12 22:11:03 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Wed, 12 Mar 2003 22:11:03 +0100 Subject: AS/400 In-Reply-To: <00c101c2e8d6$4e9e2e70$3c0aa8c0@dario> References: <59A694BBA946D311809100902798EDE2026577C6@MAIL> <00c101c2e8d6$4e9e2e70$3c0aa8c0@dario> Message-ID: <20030312211103.GA11546@hpce.nec.com> On Wed, Mar 12, 2003 at 05:31:05PM -0300, Dario B. Bestetti wrote: > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > To: Nagios Users List (E-mail) > Subject: [Nagios-users] AS/400 > > > just curious if anyone is monitoring an AS/400 or the lilke with nagios? > > David, as long as you have a SNMP agent running on it, no problem. (Most of ) the plugins compile on virtually any Unix system[1]. So, if you e.g. have ssh on your box - no problem (haven't played with nrpe yet). Rasmus [1] Even Super-UX. That is saying a lot, IMHO. ;-) ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From carlos at carlosguevara.com Wed Mar 12 22:21:57 2003 From: carlos at carlosguevara.com (Carlos Guevara) Date: Wed, 12 Mar 2003 16:21:57 -0500 Subject: NSClient In-Reply-To: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> References: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> Message-ID: <000401c2e8dd$6a8e43c0$3400000a@cjg4030cdt> Try double-checking the password. Is the password USER5, or are you trying to pass the password as an argument? -- Carlos Guevara A+, CCA, CCNA, CNE, Linux+, MCSE carlos at carlosguevara.com http://www.carlosguevara.com/ -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Gert Sent: Wednesday, March 12, 2003 3:47 PM To: Nagios-users at lists.sourceforge.net Subject: [Nagios-users] NSClient Hello. I hope you can help me out here. I am trying to use nsclient in Nagios. It works fine from the command line getting the data fr?n the W2K server but in Nagios i get an"Could not parse arguments" error. Here are my configs. >From checkcommands # 'check_nt_disk' command definition define command{ command_name check_nt_disk command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -s $USER5$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ } from services # Service definition for checking Disk C Free Disk Space on Windows 2000 system define service{ use generic-service host_name vanserv service_description Drive C Space is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 1 retry_check_interval 1 contact_groups nt-admins notification_interval 120 notification_period 24x7 notification_options c,w,r check_command check_nt_disk!C!85!90 } Regards Gert ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nicolas.deffayet at ndsoftware.net Wed Mar 12 23:03:38 2003 From: nicolas.deffayet at ndsoftware.net (Nicolas DEFFAYET) Date: 12 Mar 2003 23:03:38 +0100 Subject: IPv6 support In-Reply-To: <1047427243.17931.8.camel@peitha> References: <1047427243.17931.8.camel@peitha> Message-ID: <1047506618.14870.32.camel@w1-2-lev.fr.corp.ndsoftware.com> On Wed, 2003-03-12 at 01:00, Lennard Bakker wrote: Hi, > Are there plugins that support ipv6? > I only can find some ipv6 support for checks that uses ssh (check_ssh > and check_by_ssh). > For example no check_ping with ipv6 support... I created my patchs for have a IPv4/IPv6 support: http://www.openipv6.com/temp/nagios-plugins-1.3.0-ipv6.patch -> IPv6 support for many plugins TODO: IPv6 support for check_snmp http://www.openipv6.com/temp/nagios-1.0-ipv6.patch -> IPv4 and IPv6 support for the same host (using address and address6) -- Nicolas DEFFAYET, NDSoftware NDSoftware NOC: http://noc.ndsoftwarenet.com/ FNIX6 (French National Internet Exchange IPv6): http://www.fnix6.net/ EuroNOG: http://www.euronog.org/ ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Wed Mar 12 23:38:53 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Wed, 12 Mar 2003 14:38:53 -0800 Subject: IPv6 support In-Reply-To: <1047506618.14870.32.camel@w1-2-lev.fr.corp.ndsoftware.com> References: <1047427243.17931.8.camel@peitha> <1047506618.14870.32.camel@w1-2-lev.fr.corp.ndsoftware.com> Message-ID: <20030312223853.GB18292@UnderGrid.net> On Wed, Mar 12, 2003 at 11:03:38PM +0100, Nicolas DEFFAYET wrote: > I created my patchs for have a IPv4/IPv6 support: > > http://www.openipv6.com/temp/nagios-plugins-1.3.0-ipv6.patch > -> IPv6 support for many plugins > TODO: IPv6 support for check_snmp > I may have to take a look at this to see if there is anything I haven't already caught and put into the CVS repository for the nagios plugins to support IPv6... IPv6 support for SNMP might have to wait until more of the MIBs are updated to support IPv6 themselves... > http://www.openipv6.com/temp/nagios-1.0-ipv6.patch > -> IPv4 and IPv6 support for the same host (using address and address6) > Is there really anything that needs to be done to nagios itself to support IPv6? I haven't found anything I've need to modify except the plugins to get IPv6 support... Jeremy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lambert at lambertfam.org Wed Mar 12 23:25:48 2003 From: lambert at lambertfam.org (Scott Lambert) Date: Wed, 12 Mar 2003 17:25:48 -0500 Subject: AS/400 In-Reply-To: <20030312211103.GA11546@hpce.nec.com> References: <59A694BBA946D311809100902798EDE2026577C6@MAIL> <00c101c2e8d6$4e9e2e70$3c0aa8c0@dario> <20030312211103.GA11546@hpce.nec.com> Message-ID: <20030312222548.GA2412@laptop.lambertfam.org> On Wed, Mar 12, 2003 at 10:11:03PM +0100, Rasmus Plewe wrote: > On Wed, Mar 12, 2003 at 05:31:05PM -0300, Dario B. Bestetti wrote: > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > To: Nagios Users List (E-mail) > > Subject: [Nagios-users] AS/400 > > > > > just curious if anyone is monitoring an AS/400 or the lilke with nagios? > > > > David, as long as you have a SNMP agent running on it, no problem. > > (Most of ) the plugins compile on virtually any Unix system[1]. So, if > you e.g. have ssh on your box - no problem (haven't played with nrpe > yet). OS/400 is not a Unix varient. -- Scott Lambert KC5MLE Unix SysAdmin lambert at lambertfam.org ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Wed Mar 12 23:36:00 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Wed, 12 Mar 2003 14:36:00 -0800 Subject: No output! errors Message-ID: <0017DAB8-54DB-11D7-B3E5-000A95775192@med.ge.com> Hi all, I hope someone can help me with this problem that is absolutely driving me crazy. I have just installed Nagios 1.0 and I am attempting to get it configured. Everything that I am monitoring right now are Solaris 8 SPARC machines. I've read all the documentation and have everything compiled, installed and running. At first I was very happy with Nagios compared to Big Brother which is what we are using right now. However I have been fighting with this problem for 2 days now and I am no closer to figuring out the problem. What happens is that a number of my service checks will act appropriately 50% of the time, and 50% of the time return (No output!). What does (No output!) mean exactly? It doesn't seem to be the same as when the plugins time out, which I have seen a few times as well.. Any ideas on what could be causing this? Any kind of plugin I run gives me this problem eventually, even ones that just check things on the local monitoring services (like check_local_procs). Due to the sporadic nature, it feels like some kind of a resource limitation but I am only monitoring around 25 services. Any help would be appreciated at this point! thx, --Chad White Here are some relevant pieces of my config: #hq-service template define service{ name hq-service ; active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 check_period 24x7 normal_check_interval 30 max_check_attempts 10 retry_check_interval 1 notification_interval 120 notification_period 24x7 notification_options w,u,c,r register 0 } # router1 ping service definition define service{ use hq-service host_name router1 service_description PING is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 check_command check_ping!100.0,20%!500.0,60% } # 'router1' host definition define host{ use generic-host host_name router1 alias Router #1 address x.x.x.x check_command check-host-alive max_check_attempts 20 notification_interval 60 notification_period 24x7 notification_options d,u,r } # 'check_ping' command definition define command{ command_name check_ping command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 } ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From barbereau at easynet.fr Wed Mar 12 23:30:54 2003 From: barbereau at easynet.fr (Sebastien Barbereau) Date: Wed, 12 Mar 2003 23:30:54 +0100 Subject: Too many notifications => max_check_attempts useless? In-Reply-To: <20030302173719.GC11254@roadrunner.ichilton.net>; from mailinglist@ichilton.co.uk on Sun, Mar 02, 2003 at 05:37:19PM +0000 References: <155102933453.20030302162137@internetinfocenter.net> <20030302173719.GC11254@roadrunner.ichilton.net> Message-ID: <20030312233054.A858@ns3531.ovh.net> Hello, yes you're right but ... one may think that max_check_attempts works with the check_interval. For example, one would expect that if you set max_check_attemps to 5, nagios +would check the host 5 times with a one minute interval betwen the checks (like it is for services). This is not the case. Here is an example log file: [22:05:23] HOST ALERT: fw-ns-msi;DOWN;HARD;3;FPING CRITICAL - 2.1.4.238 (loss=100.000000%, rta=0.000000 ms) [22:05:23] HOST ALERT: fw-ns-msi;DOWN;SOFT;2;FPING CRITICAL - 2.1.4.238 (loss=100.000000%, rta=0.000000 ms) [22:05:22] HOST ALERT: fw-ns-msi;DOWN;SOFT;1;FPING CRITICAL - 2.1.4.238 (loss=100.000000%, rta=0.000000 ms) As you can see all checks are execute immetiatly without any consideration for check_interval and interval_length ... And the most surprising (at least for me) about this is that this is the "wanted" behaviour. If you look at the nagios source code you'll see that host checks are run without any delay or schedule time. This can be found around line 1452 of checks.c The only "delay" you could get in your host check is the delay or timeout of your host-check-command. I think this is a job for the developpers ... maybe some feature request?! hope this helps, On Sun, Mar 02, 2003 at 05:37:19PM +0000, Ian Chilton wrote: > Hello, > > > How can I set up nagio, so that notifications are ONLY sent out after > > a certain number of tests? > > > In hosts.cfg, when you setup the host, use something like this: > > max_check_attempts 5 > > This means, when the host is found down, it is only marked as "soft > down" - it needs to fail 5 checks to be marked as "hard down" and a > notification to be sent. Or, as the docs describe it: > > max_check_attempts: This directive is used to define the number of times > that Nagios will retry the host check command if it returns any state > other than an OK state. Setting this value to 1 will cause Nagios to > generate an alert without retrying the host check again. Note: If you do > not want to check the status of the host, you must still set this to a > minimum value of 1. To bypass the host check, just leave the > check_command option blank. > > > Hope this helps > > --ian > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at bolthole.com Wed Mar 12 23:59:51 2003 From: nagios at bolthole.com (Philip Brown) Date: Wed, 12 Mar 2003 14:59:51 -0800 Subject: nagios and Solaris 8 problem In-Reply-To: <20030312205001.GA32177@cs.utk.edu>; from vasil@cs.utk.edu on Wed, Mar 12, 2003 at 03:50:02PM -0500 References: <20030312205001.GA32177@cs.utk.edu> Message-ID: <20030312145951.A24101@bolthole.com> On Wed, Mar 12, 2003 at 03:50:02PM -0500, David Vasil wrote: > It sounds as though your binary is being stripped by differing > versions of strip. I have had issues in the past with the > ccs version of strip while using gcc to compile my Sunos58 software. > Try using the gnu strip instead during compilation/installation. You stated that exactly backwards. GNU strip is the messed up one. /usr/ccs/bin/strip, the native strip, works properly, as you might expect. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Thu Mar 13 00:17:52 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Thu, 13 Mar 2003 00:17:52 +0100 Subject: AS/400 In-Reply-To: <20030312222548.GA2412@laptop.lambertfam.org> References: <59A694BBA946D311809100902798EDE2026577C6@MAIL> <00c101c2e8d6$4e9e2e70$3c0aa8c0@dario> <20030312211103.GA11546@hpce.nec.com> <20030312222548.GA2412@laptop.lambertfam.org> Message-ID: <20030312231752.GC11546@hpce.nec.com> On Wed, Mar 12, 2003 at 05:25:48PM -0500, Scott Lambert wrote: > On Wed, Mar 12, 2003 at 10:11:03PM +0100, Rasmus Plewe wrote: > > > > (Most of ) the plugins compile on virtually any Unix system[1]. So, if > > you e.g. have ssh on your box - no problem (haven't played with nrpe > > yet). > > OS/400 is not a Unix varient. Cool. Long time since I was paying so little attention with so much embarassment potential *blush*. Anyway, the plugins seem to be written quite generically, so if you have some standard C environment and a reasonable perl version, you should be able to use the Nagios-plugins. Whatever your OS is... At least, Super-US is a Unix variant. Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From wilcoxc at troycorp.com Thu Mar 13 00:28:20 2003 From: wilcoxc at troycorp.com (Wilcox, Chris) Date: Wed, 12 Mar 2003 18:28:20 -0500 Subject: Email Notifications Message-ID: <5F735AF7A501D411910600104B76901E02B82C3B@POSTAL> Problem. Using nullmailer. When an example email is sent to nullmailer from the command line it works fine. But when Nagios generates an email it doesn't get to me. I have: 1) Enabled notifications in Nagios.cfg 2) Added a contact 3) Added this contact to contact groups 4) Made sure under Notifications that a notification was generated. My send line in misccommands.cfg is: # 'host-notify-by-email' command definition define command{ command_name host-notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $DATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ } This line when executed from the command line works. Host#/bin/printf "Nagios 1.0" | /bin/mail -s "Host alert for hosta" emailaddress at mydomain.com Any help here appreciated. Chris Wilcox Manager Network Services Troy Corporation 973-443-4200 x2545 -------------- next part -------------- An HTML attachment was scrubbed... URL: From drich at employees.org Thu Mar 13 01:14:20 2003 From: drich at employees.org (Dan Rich) Date: Wed, 12 Mar 2003 16:14:20 -0800 (PST) Subject: Config file parsing/reporting In-Reply-To: <51748.63.237.201.12.1047063496.squirrel@www.lapseofthought.com> References: <51748.63.237.201.12.1047063496.squirrel@www.lapseofthought.com> Message-ID: <45562.63.237.201.12.1047514460.squirrel@www.lapseofthought.com> Dan Rich said: > Does anyone have any tools for parsing the config files? I am almost looking > for a reporting/summary tool that will let me say things like "list all of the > monitored hosts", or more importantly at this point "what are all of the > services and who gets paged/e-mail when each one goes down"? Ah, the joys of answering my own e-mail..... :) Since I didn't hear from anyone, I've started to roll my own perl module for handing this. At the moment, I've got the following methods, and I wanted to see if anyone had any other things they would find useful. new - return a reference to a config hash param(string) - return the value of a parameter for a host,service,etc. (with no args returns a list of the parameters for the host,svc, etc.) The following return a ref to the specified service, host, contact, etc. (needed for param above). Leaving off the parameter(s) will return a list of all of that item (i.e. host() will return a list of hosts). service(host_name|hostgroup_name, service_description) host(host_name) hostgroup(hostgroup_name) timeperiod(timeperiod_name) contact(contact_name) contactgroup(contactgroup_name) command(command_name) So, with the above, you could do something like: $junk=NagiosCfg::new; print $junk->service("ns.somedomain.com","DNS")->param("contact_groups"); Or, even more exciting (for my purposes): print $junk->contactgroups($junk->service("ns.somedomain.com","DNS")->param("contact_groups"))->param("members"); -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at nagios.org Thu Mar 13 01:05:29 2003 From: nagios at nagios.org (Ethan Galstad) Date: Wed, 12 Mar 2003 18:05:29 -0600 Subject: IPv6 support In-Reply-To: <20030312223853.GB18292@UnderGrid.net> References: <1047506618.14870.32.camel@w1-2-lev.fr.corp.ndsoftware.com> Message-ID: <3E6F76E9.3165.36F68D@localhost> On 12 Mar 2003 at 14:38, Jeremy T. Bouse wrote: > On Wed, Mar 12, 2003 at 11:03:38PM +0100, Nicolas DEFFAYET wrote: > > I created my patchs for have a IPv4/IPv6 support: > > > > http://www.openipv6.com/temp/nagios-plugins-1.3.0-ipv6.patch > > -> IPv6 support for many plugins > > TODO: IPv6 support for check_snmp > > > I may have to take a look at this to see if there is anything I > haven't already caught and put into the CVS repository for the nagios > plugins to support IPv6... > > IPv6 support for SNMP might have to wait until more of the MIBs > are updated to support IPv6 themselves... > > > http://www.openipv6.com/temp/nagios-1.0-ipv6.patch > > -> IPv4 and IPv6 support for the same host (using address and address6) > > > Is there really anything that needs to be done to nagios itself > to support IPv6? I haven't found anything I've need to modify except the > plugins to get IPv6 support... No patches should be required for the daemon, as it does not interpret addresses itself. The plugins should be the only things that need to know how to handle IPv6 addresses. Ethan Galstad, Nagios Developer --- Email: nagios at nagios.org Website: http://www.nagios.org ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Thu Mar 13 01:41:57 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Wed, 12 Mar 2003 16:41:57 -0800 Subject: No output! errors In-Reply-To: <0017DAB8-54DB-11D7-B3E5-000A95775192@med.ge.com> References: <0017DAB8-54DB-11D7-B3E5-000A95775192@med.ge.com> Message-ID: <9861A1FC-54EC-11D7-B3E5-000A95775192@med.ge.com> Well, this is embarrassing but I think I figured it out. Due to the nature of our environment I have to use distributed servers to monitor all the hosts. To be clever, I separated the template definitions from services into a separate file than the services. That way, I can use the same service.cfg file on every host, and just change the templates on each server for whether to perform an active check or not from that particular monitoring server. Seemed like a good idea to me. What seems to be happening is that the "remote" server is still trying to actively check things and is then submitting a "No output!" back to the "central" server when it fails. I have tried removing freshness checking (that was on on the "remote" server) and I will see if that makes it stop.. Figures I would figure it out 5 minutes after sending a desperate plea for help. :) thx, --Chad On Wednesday, March 12, 2003, at 02:36 PM, White, Chad (MED) wrote: > Hi all, I hope someone can help me with this problem that is > absolutely driving me crazy. > > I have just installed Nagios 1.0 and I am attempting to get it > configured. Everything that I am monitoring right now are Solaris 8 > SPARC machines. I've read all the documentation and have everything > compiled, installed and running. At first I was very happy with > Nagios compared to Big Brother which is what we are using right now. > However I have been fighting with this problem for 2 days now and I am > no closer to figuring out the problem. > > What happens is that a number of my service checks will act > appropriately 50% of the time, and 50% of the time return (No > output!). What does (No output!) mean exactly? It doesn't seem to be > the same as when the plugins time out, which I have seen a few times > as well.. > > Any ideas on what could be causing this? Any kind of plugin I run > gives me this problem eventually, even ones that just check things on > the local monitoring services (like check_local_procs). Due to the > sporadic nature, it feels like some kind of a resource limitation but > I am only monitoring around 25 services. > > Any help would be appreciated at this point! > thx, > > --Chad White > > > Here are some relevant pieces of my config: > #hq-service template > define service{ > name hq-service ; > active_checks_enabled 1 > passive_checks_enabled 1 > parallelize_check 1 > obsess_over_service 1 > check_freshness 0 > notifications_enabled 1 > event_handler_enabled 1 > flap_detection_enabled 1 > process_perf_data 1 > retain_status_information 1 > retain_nonstatus_information 1 > check_period 24x7 > normal_check_interval 30 > max_check_attempts 10 > retry_check_interval 1 > notification_interval 120 > notification_period 24x7 > notification_options w,u,c,r > register 0 > } > # router1 ping service definition > define service{ > use hq-service > > host_name router1 > service_description PING > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > check_command check_ping!100.0,20%!500.0,60% > } > > # 'router1' host definition > define host{ > use generic-host > > host_name router1 > alias Router #1 > address x.x.x.x > check_command check-host-alive > max_check_attempts 20 > notification_interval 60 > notification_period 24x7 > notification_options d,u,r > } > > # 'check_ping' command definition > define command{ > command_name check_ping > command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ > -c $ARG2$ -p 5 > } > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! Get > cracking and register here for some mind boggling fun and the chance > of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk > being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ben.Farris at key3media.com Thu Mar 13 01:34:54 2003 From: Ben.Farris at key3media.com (Ben.Farris at key3media.com) Date: Wed, 12 Mar 2003 16:34:54 -0800 Subject: nagios and Solaris 8 problem Message-ID: Thanks... I had a few people respond about this. I'm curious why this happens?? Any ideas? I'm just wondering if this common or if there is something I need to fix on my system. -Ben Philip Brown To: nagios-users at lists.sourceforge.net Sent by: cc: nagios-users-admin at lists.sourc Subject: Re: [Nagios-users] nagios and Solaris 8 problem eforge.net 03/12/2003 02:59 PM Please respond to Philip Brown On Wed, Mar 12, 2003 at 03:50:02PM -0500, David Vasil wrote: > It sounds as though your binary is being stripped by differing > versions of strip. I have had issues in the past with the > ccs version of strip while using gcc to compile my Sunos58 software. > Try using the gnu strip instead during compilation/installation. You stated that exactly backwards. GNU strip is the messed up one. /usr/ccs/bin/strip, the native strip, works properly, as you might expect. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Thu Mar 13 02:24:23 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Wed, 12 Mar 2003 17:24:23 -0800 Subject: IPv6 support In-Reply-To: <3E6F76E9.3165.36F68D@localhost> References: <1047506618.14870.32.camel@w1-2-lev.fr.corp.ndsoftware.com> <3E6F76E9.3165.36F68D@localhost> Message-ID: <20030313012423.GA23308@UnderGrid.net> I would agree Ethan... I did have a look at the patch he had and it seem'd he had patched the system to hold both IPv4 and IPv6 addresses in a host configuration and changed the display pages... This would be nice if you wanted to set it up to support a host with both IPv4 and IPv6 addresses... Currently you have to have 2 seperate host entries... Although I didn't look too closely at his patch (ie- I read it but didn't apply or try running with it) but might be an idea to look at further... After the 1.3.0 release of the plugins I have begun working on the IPv6 support that I had originally started working on during the beta release stage but was held off until after the release... If anyone wants to help with testing of it the configuration is the same with the exception of a '--with-ipv6' configure option to enable IPv6 support... Not all of the plugins have been updated yet but basic ones are working and need testing for portability... I wouldn't recommend this for production systems yet, but any help with building on older systems would be appreciated... Jeremy On Wed, Mar 12, 2003 at 06:05:29PM -0600, Ethan Galstad wrote: > > No patches should be required for the daemon, as it does not > interpret addresses itself. The plugins should be the only things > that need to know how to handle IPv6 addresses. > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From skaten at o1.com Thu Mar 13 02:51:30 2003 From: skaten at o1.com (Stephen Katen) Date: Wed, 12 Mar 2003 17:51:30 -0800 Subject: check_radius [nagios-1.0] + [Plugins v1.3.0] Message-ID: All, I have Nagios working except I cannot get the check_radius plugin to compile. I have downloaded the radiusclient library from the site in the REQUIREMENTS document and upon a reconfigure it still doesn't compile the plugin. libradiusclient.so and libradiusclient.a are both in /usr/local/lib/. I tried to use the check_radius in the contribs directory from the plugins and I can get that to compile, but for some reason it just hangs when trying to run the command. My radius server doesn't see the authentication attempt and I have added the nagios computer to the nas clients on the radius machine. Here is the response after it hangs: Sending request. 1, 2, 3, 4, 5, 6, 7, 8, 9, No answer. Any thoughts? katen ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From RKornelsen at extremenetworks.com Thu Mar 13 03:10:08 2003 From: RKornelsen at extremenetworks.com (Randal Kornelsen) Date: Wed, 12 Mar 2003 18:10:08 -0800 Subject: Q. customizing recipients of a service alert Message-ID: <44B88EC6CAD5024FADA04D5D2438970BF44837@sc-msexch-08.extremenetworks.com> I have defined a service running against a "hostgroup_name" and "contact_groups". What is the recommended method for preventing email alerts to one individual member of the contact_groups for one host in the hostgroup? What is the recommended method for adding one individual member to receive email alerts for one host in the hostgroup? For example: define service { ... service_description DISK hostgroup_name crm contact_groups unix-admins, crm-admins } For one host (sun-db-server) in the crm hostgroup I want the DBA to receive email instead of the crm application administrator (a member of crm-admins). thank you, Randal Kornelsen ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 03:21:44 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 12 Mar 2003 21:21:44 -0500 (EST) Subject: Config file parsing/reporting In-Reply-To: <45562.63.237.201.12.1047514460.squirrel@www.lapseofthought.com> References: <45562.63.237.201.12.1047514460.squirrel@www.lapseofthought.com> Message-ID: http://sf.net/projects/osesm Perl module for parsing the config files.... Bryan hasn't broken out the perl module, but the bulk of the work is there.. Sorry if it is a bit late.. -sg On Wed, 12 Mar 2003, Dan Rich wrote: > > Dan Rich said: > > > Does anyone have any tools for parsing the config files? I am almost looking > > for a reporting/summary tool that will let me say things like "list all of the > > monitored hosts", or more importantly at this point "what are all of the > > services and who gets paged/e-mail when each one goes down"? > > Ah, the joys of answering my own e-mail..... :) > > Since I didn't hear from anyone, I've started to roll my own perl module for > handing this. At the moment, I've got the following methods, and I wanted to > see if anyone had any other things they would find useful. > > new - return a reference to a config hash > param(string) - return the value of a parameter for a host,service,etc. > (with no args returns a list of the parameters for the > host,svc, etc.) > > The following return a ref to the specified service, host, contact, etc. > (needed for param above). Leaving off the parameter(s) will return a list of > all of that item (i.e. host() will return a list of hosts). > service(host_name|hostgroup_name, service_description) > host(host_name) > hostgroup(hostgroup_name) > timeperiod(timeperiod_name) > contact(contact_name) > contactgroup(contactgroup_name) > command(command_name) > > > So, with the above, you could do something like: > $junk=NagiosCfg::new; > print $junk->service("ns.somedomain.com","DNS")->param("contact_groups"); > Or, even more exciting (for my purposes): > print > $junk->contactgroups($junk->service("ns.somedomain.com","DNS")->param("contact_groups"))->param("members"); > > > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 03:14:44 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 12 Mar 2003 21:14:44 -0500 (EST) Subject: Script Alias Error In-Reply-To: References: Message-ID: You cannot add an Alias on a sub-path of an alias.... ScriptAlias should come before the Alias... -sg On Wed, 12 Mar 2003, David Gitman wrote: > I'm seeing the following error in my apache error log when trying to > access a Nagios script. > > [Wed Mar 12 08:54:49 2003] [error] [client 10.0.12.31] File does not > exist: /local/project/nagios/share/cgi-bin/tac.cgi > > Any ideas why it's going to /local/project/nagios/share/cgi-bin/ instead > of /local/project/nagios/sbin ? My apache Aliases section is below. > > # > # Aliases: Add here as many aliases as you need (with no limit). The > format is > # Alias fakename realname > # > > > > Alias /nagios/ "/local/project/nagios/share/" > > > Options None > AllowOverride AuthConfig > Order allow,deny > Allow from all > > > ScriptAlias /nagios/cgi-bin/ "/local/project/nagios/sbin/" > > > AllowOverride AuthConfig > Options ExecCGI > Order allow,deny > Allow from all > > > > # End of aliases. > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 03:58:05 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 12 Mar 2003 21:58:05 -0500 (EST) Subject: Q. customizing recipients of a service alert In-Reply-To: <44B88EC6CAD5024FADA04D5D2438970BF44837@sc-msexch-08.extremenetworks.com> References: <44B88EC6CAD5024FADA04D5D2438970BF44837@sc-msexch-08.extremenetworks.com> Message-ID: On Wed, 12 Mar 2003, Randal Kornelsen wrote: > I have defined a service running against a "hostgroup_name" and > "contact_groups". What is the recommended method for preventing email > alerts to one individual member of the contact_groups for one host in the > hostgroup? What is the recommended method for adding one individual member > to receive email alerts for one host in the hostgroup? > > For example: > > define service { > ... > service_description DISK > hostgroup_name crm > contact_groups unix-admins, crm-admins > } > > For one host (sun-db-server) in the crm hostgroup I want the DBA to receive > email instead of the crm application administrator (a member of crm-admins). > > thank you, > Randal Kornelsen > > Recommend to create the groups such that you don't have to remove members for special treatment. yes it can be a PITA but... -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 03:54:26 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 12 Mar 2003 21:54:26 -0500 (EST) Subject: check nagios and mysql error - where is check_nagios_db.pl script? In-Reply-To: <1047502961.1653.7.camel@mithrandir.intranet> References: <1047502961.1653.7.camel@mithrandir.intranet> Message-ID: It is in the contrib dir of the plugins... On 12 Mar 2003, Jes?s M. NAVARRO wrote: > Hi all: > > I'm using Nagios 1.0 with MySQL support and I found the "Warning: > Monitoring process may not be running!" problem explained in the "F0131 > - Checking the status of Nagios with MySQL or PostgreSQL DB support" FAQ > (which, by the way, as per 12/MAR/2003 - 23:00GMT throws a "Sorry, but > an error occurred... :-(" message when trying to get its content). > > Now, it says you should change the "check_nagios" plugin with the > contributed "check_nagios_db.pl" but alas! I didn't find it neither > within my sources (main program or plugins) nor anywhere in the download > section of the nagios web. > > Is still that plugin the way to go or is there any other solution. If > the plugin is the way, where can I get it? > > TIA > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at bolthole.com Thu Mar 13 03:57:56 2003 From: nagios at bolthole.com (Philip Brown) Date: Wed, 12 Mar 2003 18:57:56 -0800 Subject: nagios and Solaris 8 problem In-Reply-To: ; from Ben.Farris@key3media.com on Wed, Mar 12, 2003 at 04:34:54PM -0800 References: Message-ID: <20030312185756.A12007@bolthole.com> On Wed, Mar 12, 2003 at 04:34:54PM -0800, Ben.Farris at key3media.com wrote: > > Thanks... > > I had a few people respond about this. I'm curious why this happens?? Any > ideas? > I'm just wondering if this common or if there is something I need to fix on > my system. yes, there is. remove GNU strip from your system. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at bolthole.com Thu Mar 13 04:08:07 2003 From: nagios at bolthole.com (Philip Brown) Date: Wed, 12 Mar 2003 19:08:07 -0800 Subject: bug in outages.cgi or all_hosts entry In-Reply-To: <20030307221138.A5801@bolthole.com>; from phil@bolthole.com on Fri, Mar 07, 2003 at 10:11:38PM -0800 References: <20030307221138.A5801@bolthole.com> Message-ID: <20030312190807.A14207@bolthole.com> For some reason, in cgi.cfg, either the general auth routines somehow enforce no-contact-group entries for authorized_for_all_hosts or outages.cgi is broken, and should do more checking than it currently does. I previously had authorized_for_all_hosts=unix-admins with similar values for all other "authorized_for_xxxxx" variables. This works fine for all cgis.. EXCEPT outages.cgi I had to add my specific web-user account to authorized_for_all_hosts, to get it to work for me. It kept saying I had no access. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at ipaustralia.gov.au Thu Mar 13 04:57:00 2003 From: Stanley.Hopcroft at ipaustralia.gov.au (Stanley Hopcroft) Date: Thu, 13 Mar 2003 14:57:00 +1100 Subject: Email Notifications In-Reply-To: <5F735AF7A501D411910600104B76901E02B82C3B@POSTAL>; from wilcoxc@troycorp.com on Wed, Mar 12, 2003 at 06:28:20PM -0500 References: <5F735AF7A501D411910600104B76901E02B82C3B@POSTAL> Message-ID: <20030313145656.B23889@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Wed, Mar 12, 2003 at 06:28:20PM -0500, Wilcox, Chris wrote: > Problem. > > Using nullmailer. When an example email is sent to nullmailer from the > command line it works fine. But when Nagios generates an email it doesn't > get to me. .... > > This line when executed from the command line works. > > Host#/bin/printf "Nagios 1.0" | /bin/mail -s "Host alert for hosta" > emailaddress at mydomain.com > Are you sure about this command from the CLI ? When I try tsitc> /usr/bin/printf "Nagios 1.0" | /usr/bin/mail -s "Host alert for hosta" Stanley.Hopcroft at IPAustralia.Gov.AU Ambiguous input redirect. tsitc> /bin/csh complains about the '<' characters. If your $CONTACTMAIL$ macro contains , you may be having the same problem. If I quote the '' then the mail is delivered to , Stanley.Hopcroft at IPAustralia.Gov.AU > Any help here appreciated. > > Chris Wilcox > Manager Network Services > Troy Corporation > 973-443-4200 x2545 > Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Thu Mar 13 05:47:30 2003 From: KreigD at webex.com (Kreig Dubose) Date: Wed, 12 Mar 2003 20:47:30 -0800 Subject: forum archives Message-ID: Is the user archives of historic posts gone? I get an ERROR everytime I try and go there ? I'm trying to research an issue with nrpe on Nagios 1.0. [kreigd at nagios libexec]$ sudo ./check_nrpe -H goclnx1 -p 5666 -c check_users -to 10 CHECK_NRPE: Error receiving data from host. [kreigd at nagios libexec]$ The nrpe daemon is running on the remote (goclnx1) box as verified by: nagios 19996 1 0 Mar06 ? 00:00:00 /usr/local/nagios/nrpe -c /etc/nrpe.cfg --daemon The OS is RH8 TIA, Kreig ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Thu Mar 13 06:27:03 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 13 Mar 2003 00:27:03 -0500 Subject: problem with "negate " In-Reply-To: References: Message-ID: <1047533223.1204.46.camel@miles.debisschop.net> On Wed, 2003-03-12 at 09:59, le jert wrote: > > > sorry, I forgot something ... > > here's is the responses : > > negate: Unknown argument - H > TCP OK - 0.008 second response time on port 22 (critical) Ah. That's a bug. Negate NEEDS to use posixly correct getopt invocation. I am making the changes to CVS head and CVS r130 branch now. Should show up in the next snapshots. -- Karl ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From securityguy at ikano.com Thu Mar 13 06:37:11 2003 From: securityguy at ikano.com (Robert S. Galloway) Date: Wed, 12 Mar 2003 22:37:11 -0700 Subject: forum archives In-Reply-To: References: Message-ID: <003601c2e922$98bdf160$ddd0d0cd@pendleton> Just to see if the connection is actually getting to the remote host, run: tcpdump -n tcp port 5666 That should at least narrow it down for you. Thanks, Robert S. Galloway Chief Network Security Engineer IKANO Communications ...the Internet branding company Official Data Networking Services Provider for the Salt Lake Olympic Winter Games of 2002 securityguy at ikano.com -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Kreig Dubose Sent: Wednesday, March 12, 2003 9:48 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] forum archives Is the user archives of historic posts gone? I get an ERROR everytime I try and go there ? I'm trying to research an issue with nrpe on Nagios 1.0. [kreigd at nagios libexec]$ sudo ./check_nrpe -H goclnx1 -p 5666 -c check_users -to 10 CHECK_NRPE: Error receiving data from host. [kreigd at nagios libexec]$ The nrpe daemon is running on the remote (goclnx1) box as verified by: nagios 19996 1 0 Mar06 ? 00:00:00 /usr/local/nagios/nrpe -c /etc/nrpe.cfg --daemon The OS is RH8 TIA, Kreig ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From kevin at kgibbons.com Thu Mar 13 07:07:08 2003 From: kevin at kgibbons.com (Kevin Gibbons) Date: Thu, 13 Mar 2003 01:07:08 -0500 Subject: Problems with nagios.cmd Message-ID: <000c01c2e926$c7e13750$0602a8c0@kevintbakwxe3v> I seem to be having some problems with /usr/local/nagios/var/rw/nagios.cmd My Nagios is operating perfectly, except that when I reboot or restart Nagios, it deletes the nagios.cmd file and then builds it new upon restart. Only problem is, it sets ownership and permissions on the file to nagios/nagios 0644 -- and it's no longer writable. So I have to re-set ownership on the file to "nobody" to allow the web interface to be able to write to the file, and set permissions to 0777. Then I can do my web functions just fine again because the file is writable again by the webserver. Any suggestions on how to properly set things up so I don't have to do this each time the machine or nagios is restarted? -------------- next part -------------- An HTML attachment was scrubbed... URL: From securityguy at ikano.com Thu Mar 13 07:46:05 2003 From: securityguy at ikano.com (Robert S. Galloway) Date: Wed, 12 Mar 2003 23:46:05 -0700 Subject: Problems with nagios.cmd In-Reply-To: <000c01c2e926$c7e13750$0602a8c0@kevintbakwxe3v> References: <000c01c2e926$c7e13750$0602a8c0@kevintbakwxe3v> Message-ID: <003c01c2e92c$397cd3b0$ddd0d0cd@pendleton> Change the ownership of the "rw" directory to match the ownership that you want the file to be created as or add "nobody" to the nagios group. Good luck, Robert S. Galloway Chief Network Security Engineer IKANO Communications ...the Internet branding company Official Data Networking Services Provider for the Salt Lake Olympic Winter Games of 2002 securityguy at ikano.com -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Kevin Gibbons Sent: Wednesday, March 12, 2003 11:07 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Problems with nagios.cmd I seem to be having some problems with /usr/local/nagios/var/rw/nagios.cmd My Nagios is operating perfectly, except that when I reboot or restart Nagios, it deletes the nagios.cmd file and then builds it new upon restart. Only problem is, it sets ownership and permissions on the file to nagios/nagios 0644 -- and it's no longer writable. So I have to re-set ownership on the file to "nobody" to allow the web interface to be able to write to the file, and set permissions to 0777. Then I can do my web functions just fine again because the file is writable again by the webserver. Any suggestions on how to properly set things up so I don't have to do this each time the machine or nagios is restarted? -------------- next part -------------- An HTML attachment was scrubbed... URL: From gert.lindstrom at brevik.nu Thu Mar 13 07:58:09 2003 From: gert.lindstrom at brevik.nu (Gert) Date: 13 Mar 2003 06:58:09 -0000 Subject: NSClient In-Reply-To: <000401c2e8dd$6a8e43c0$3400000a@cjg4030cdt> References: <000401c2e8dd$6a8e43c0$3400000a@cjg4030cdt> Message-ID: <20030313065809.12515.qmail@pod-163.dolphin-server.co.uk> Yes i think it is, it works from the commnad line with the password set up in the registry. Carlos Guevara wrote on Wed, 12 March 2003 21:27 > Try double-checking the password. > > Is the password USER5, or are you trying to pass the password as an > argument? > > -- > Carlos Guevara > A+, CCA, CCNA, CNE, Linux+, MCSE > carlos at carlosguevara.com > http://www.carlosguevara.com/ > > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:[email]nagios-users-admin at lists.sourceforge.net]On[/email] Behalf Of Gert > Sent: Wednesday, March 12, 2003 3:47 PM > To: Nagios-users at lists.sourceforge.net > Subject: [Nagios-users] NSClient > > > > Hello. > I hope you can help me out here. > > I am trying to use nsclient in Nagios. It works fine from the command line > getting the data fr?n the W2K server but in Nagios i get an"Could not parse > arguments" error. > > Here are my configs. > >From checkcommands > # 'check_nt_disk' command definition > define command{ > command_name check_nt_disk > command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -s $USER5$ -v > USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ > } > > from services > # Service definition for checking Disk C Free Disk Space on Windows 2000 > system > define service{ > use generic-service > host_name vanserv > service_description Drive C Space > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 1 > retry_check_interval 1 > contact_groups nt-admins > notification_interval 120 > notification_period 24x7 > notification_options c,w,r > check_command check_nt_disk!C!85!90 > } > > Regards > Gert > > > > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gert.lindstrom at brevik.nu Thu Mar 13 08:01:05 2003 From: gert.lindstrom at brevik.nu (Gert) Date: 13 Mar 2003 07:01:05 -0000 Subject: NSClient In-Reply-To: <000401c2e8dd$6a8e43c0$3400000a@cjg4030cdt> References: <000401c2e8dd$6a8e43c0$3400000a@cjg4030cdt> Message-ID: <20030313070105.13111.qmail@pod-163.dolphin-server.co.uk> The password is in the recources file $USER5$=password Carlos Guevara wrote on Wed, 12 March 2003 21:27 > Try double-checking the password. > > Is the password USER5, or are you trying to pass the password as an > argument? > > -- > Carlos Guevara > A+, CCA, CCNA, CNE, Linux+, MCSE > carlos at carlosguevara.com > http://www.carlosguevara.com/ > > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:[email]nagios-users-admin at lists.sourceforge.net]On[/email] Behalf Of Gert > Sent: Wednesday, March 12, 2003 3:47 PM > To: Nagios-users at lists.sourceforge.net > Subject: [Nagios-users] NSClient > > > > Hello. > I hope you can help me out here. > > I am trying to use nsclient in Nagios. It works fine from the command line > getting the data fr?n the W2K server but in Nagios i get an"Could not parse > arguments" error. > > Here are my configs. > >From checkcommands > # 'check_nt_disk' command definition > define command{ > command_name check_nt_disk > command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -s $USER5$ -v > USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ > } > > from services > # Service definition for checking Disk C Free Disk Space on Windows 2000 > system > define service{ > use generic-service > host_name vanserv > service_description Drive C Space > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 1 > retry_check_interval 1 > contact_groups nt-admins > notification_interval 120 > notification_period 24x7 > notification_options c,w,r > check_command check_nt_disk!C!85!90 > } > > Regards > Gert > > > > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Thu Mar 13 08:10:28 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Thu, 13 Mar 2003 08:10:28 +0100 Subject: check_snmp References: <352B04312822444A962714393AED8A4D11379F@ADAEVS01.int.chickasaw.net> Message-ID: <3E702EE4.3090805@datavis.se> Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Brad at pretzel.com.au Thu Mar 13 08:52:45 2003 From: Brad at pretzel.com.au (Brad Dunn) Date: Thu, 13 Mar 2003 15:52:45 +0800 Subject: User Supplied Coords Message-ID: <131A385F21AAD311BD6400902763781D01DB25A0@Z8> In user supplied coords (Status Map), is there anyway to have the Nagios service displayed linking all the machines as in all the other layout methods? Like with the black lines etc? b r a d d u n n ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Thu Mar 13 09:17:06 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Thu, 13 Mar 2003 10:17:06 +0200 Subject: Performance Message-ID: Hi When looking at the following, where can I most likely do an optimization? Program-Wide Performance Information Active Checks: Time Frame Checks Completed <= 1 minute: 71 (6.4%) <= 5 minutes: 528 (47.7%) <= 15 minutes: 1105 (99.8%) <= 1 hour: 1107 (100.0%) Since program start: 1107 (100.0%) Metric Min. Max. Average Check Execution Time: < 1 sec 10 sec 0.515 sec Check Latency: 390 sec 538 sec 456.743 sec Percent State Change: 0.00% 6.25% 0.02% Passive Checks: Time Frame Checks Completed <= 1 minute: 0 (0.0%) <= 5 minutes: 0 (0.0%) <= 15 minutes: 0 (0.0%) <= 1 hour: 0 (0.0%) Since program start: 0 (0.0%) Metric Min. Max. Average Percent State Change: 0.00% 0.00% 0.00% Thanx > Fred Albrecht > Senior Specialist > > World Online > A Division of Tiscali (Pty) Ltd > Office: +27 21 940-9807 > Fax: +27 21 940-9103 > Mobile: +27 82 52 00 165 > e-mail: fred at za.tiscali.com > http://www.worldonline.co.za > > Disclaimer: This email is considered a business record and is therefore property of Tiscali. This email, and any files transmitted with it are confidential and are intended solely for the use of the individual or entity to whom they are addressed. This communication represents the originator's personal views and opinions, which do not necessarily reflect those of Tiscali. If you are not the original recipient or the person responsible for delivering the email to the intended recipient, be advised that you have this email in error, and that any use, dissemination, forwarding, printing, or copying of this email is strictly prohibited. If you received this email in error, please immediately notify disclaimer at za.tiscali.com. > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Thu Mar 13 09:14:37 2003 From: KreigD at webex.com (Kreig Dubose) Date: Thu, 13 Mar 2003 00:14:37 -0800 Subject: send_nsca Message-ID: OS: RH8 Nag: Nagios 1.0 I'm trying to obviously get send_nsca working. I've read through the documents and perhaps it's due to the late hour, or my ignorance ;) but I cannot determine how to supply the actual service check to the nagios station. On the host [kreigd at goclnx1 nagios]$ ./send_nsca -H nagios -p 5667 -t0 15 -c /etc/send_nsca.cfg Incorrect command line arguments supplied NSCA Client 2.3 On the nagios server kreigd 25227 1 0 Mar12 ? 00:00:00 ./nsca -c /etc/nsca.cfg --daemon tcp 0 0 *:5667 *:* LISTEN Do I need to write a script to use this command? or do I just redirect the output of the check_* command to send_nsca ?? I can find no docs that answer this seemingly fundamental question?? TIA, Kreig ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From moritz.gartenmeister at access.unizh.ch Thu Mar 13 10:01:43 2003 From: moritz.gartenmeister at access.unizh.ch (Moritz Gartenmeister) Date: Thu, 13 Mar 2003 10:01:43 +0100 Subject: ./configure problem Message-ID: <3E7048F7.6020709@access.unizh.ch> The configure script doesn't make executables. Apache, libgd2 is installed, running on debian. sudo ./configure .... checking for gcc... gcc checking wheter the C compiler (gcc ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. Any idea? I'm in most part new to linux, so I think it's not a nagios mistake ;-) regards, moritz -- Moritz Gartenmeister B?lachstrasse 9 H 8057 Z?rich 01 312 01 25 079 350 99 86 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mailinglist at ichilton.co.uk Thu Mar 13 10:11:10 2003 From: mailinglist at ichilton.co.uk (Ian Chilton) Date: Thu, 13 Mar 2003 09:11:10 +0000 Subject: Too many notifications / max_check_attempt useless In-Reply-To: <20030312230922.A32213@ns3531.ovh.net> References: <155102933453.20030302162137@internetinfocenter.net> <20030302173719.GC11254@roadrunner.ichilton.net> <20030312230922.A32213@ns3531.ovh.net> Message-ID: <20030313091109.GA32757@roadrunner.ichilton.net> Hello, > yes you're right but ... one may think that max_check_attempts works with the check_interval. > For example, one would expect that if you set max_check_attemps to 5, nagios would check the host 5 times with a one minute interval betwen the checks (like it is for services). This is not the case. > Here is an example log file: > [22:05:23] HOST ALERT: fw-ns-msi;DOWN;HARD;3;FPING CRITICAL - 2.1.4.238 (loss=100.000000%, rta=0.000000 ms) > [22:05:23] HOST ALERT: fw-ns-msi;DOWN;SOFT;2;FPING CRITICAL - 2.1.4.238 (loss=100.000000%, rta=0.000000 ms) > [22:05:22] HOST ALERT: fw-ns-msi;DOWN;SOFT;1;FPING CRITICAL - 2.1.4.238 (loss=100.000000%, rta=0.000000 ms) > As you can see all checks are execute immetiatly without any consideration for check_interval and interval_length Check out: http://nagios.sourceforge.net/docs/1_0/checkscheduling.html You probably want to use: normal_check_interval and retry_check_interval. --ian ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Thu Mar 13 10:13:52 2003 From: KreigD at webex.com (Kreig Dubose) Date: Thu, 13 Mar 2003 01:13:52 -0800 Subject: ./configure problem Message-ID: Moritz, first try gcc -v you should see something similar to this: [root at goclnx1 nagios]# gcc -v Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs gcc version 2.96 20000731 (Red Hat Linux 7.1 2.96-98) If not, then you need to load a compiler I think ;) Hope this helps... Kreig -----Original Message----- From: Moritz Gartenmeister [mailto:moritz.gartenmeister at access.unizh.ch] Sent: Thursday, March 13, 2003 2:02 AM To: Nagios-users at lists.sourceforge.net Subject: [Nagios-users] ./configure problem The configure script doesn't make executables. Apache, libgd2 is installed, running on debian. sudo ./configure .... checking for gcc... gcc checking wheter the C compiler (gcc ) works... no configure: error: installation or configuration problem: C compiler cannot create executables. Any idea? I'm in most part new to linux, so I think it's not a nagios mistake ;-) regards, moritz -- Moritz Gartenmeister B?lachstrasse 9 H 8057 Z?rich 01 312 01 25 079 350 99 86 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rico at noris.net Thu Mar 13 10:26:49 2003 From: rico at noris.net (Rico Gloeckner) Date: Thu, 13 Mar 2003 10:26:49 +0100 Subject: Too many notifications / max_check_attempt useless In-Reply-To: <20030313091109.GA32757@roadrunner.ichilton.net>; from mailinglist@ichilton.co.uk on Thu, Mar 13, 2003 at 09:11:10AM +0000 References: <155102933453.20030302162137@internetinfocenter.net> <20030302173719.GC11254@roadrunner.ichilton.net> <20030312230922.A32213@ns3531.ovh.net> <20030313091109.GA32757@roadrunner.ichilton.net> Message-ID: <20030313102649.D19395@noris.de> On Thu, Mar 13, 2003 at 09:11:10AM +0000, Ian Chilton wrote: > Check out: > http://nagios.sourceforge.net/docs/1_0/checkscheduling.html > > You probably want to use: normal_check_interval and > retry_check_interval. Ah. well. These Options are interesting for Services, the OP spoke about Hosts. But thanks, that Document lists the "offending" Behaviour: | Host Checks | | Unlike service checks, host checks are not scheduled on a regular basis. | Instead they are run on demand, as Nagios sees a need. This is a common | question asked by users, so it needs to be clarified. | | One instance where Nagios checks the status of a host is when a service | check results in a non-OK status. Nagios checks the host to decide | whether or not the host is up, down, or unreachable. If the first host | check returns a non-OK state, Nagios will keep pounding out checks of | the host until either (a) the maximum number of host checks (specified | by the max_attempts option in the host definition) is reached or (b) a | host check results in an OK state. | | Also of note - when Nagios is check the status of a host, it holds off | on doing anything else (executing new service checks, processing other | service check results, etc). This can slow things down a bit and cause | pending service checks to be delayed for a while, but it is necessary to | determine the status of the host before Nagios can take any further | action on the service(s) that are having problems. Personally, i dont find that behaviour that good. I see cases where i do want the Host to be in a "Soft state" but not delaying other Checks. Personally, as i mentioned in another mail, i would have expected the Check to be atleast interleaved in a interval_length interval. Maybe it would be enough to have a fix amount (3?) of Checks working in the behaviour as it is now and every subsequent Check works in the behaviour i meantioned above. Maybe that fix amount should be configurable. Ideas? -rg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Clement.Lorvao at cadrus.fr Thu Mar 13 10:50:30 2003 From: Clement.Lorvao at cadrus.fr (Clement.Lorvao at cadrus.fr) Date: Thu, 13 Mar 2003 10:50:30 +0100 Subject: check_local_procs problem Message-ID: Hi, I have a problem with my check_local_procs plugin. Here is my checkcomands.cfg file: define command { command_name check_local_procs commande_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ } In my services.cfg file, I have: define service { .... check_command check_local_procs!2 3 r ... } And when I run Nagios, I have this error : check_procs: Critical Process Count must be an integer! Could you help me? Thank you, Cl?ment ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gyufi at sztaki.hu Thu Mar 13 11:01:59 2003 From: gyufi at sztaki.hu (Szabo Gyula) Date: Thu, 13 Mar 2003 11:01:59 +0100 (MET) Subject: Logging problem HARD-SOFT state Message-ID: When I found this in the log file, in the availability report I get incorrect result. The service status is CRITICAL from Thu Jan 30 06:25:23 2003 to the next OK;HARD status. ^^^^ [Thu Jan 30 06:25:23 2003] SERVICE ALERT: helka;HTTPS-MT-CERT;CRITICAL;HARD;1;Connection refused or timed out [Thu Jan 30 06:30:27 2003] SERVICE ALERT: helka;HTTPS-MT-CERT;CRITICAL;SOFT;1;Connection refused by host [Thu Jan 30 06:31:43 2003] SERVICE ALERT: helka;HTTPS-MT-CERT;OK;SOFT;2;Certificate will expire on 04/01/2003 09:41. Nagios 1.0b6 Logging params: log_file=/var/log/nagios-services/nagios.log log_rotation_method=d log_archive_path=/var/log/nagios-services/archives log_notifications=1 log_service_retries=1 log_host_retries=1 log_event_handlers=1 log_initial_states=1 log_external_commands=1 log_passive_service_checks=1 Any suggestions? Thanks a lot, Gyula Szabo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From parmy at WSSPL.com Thu Mar 13 11:09:10 2003 From: parmy at WSSPL.com (Parameshwar) Date: Thu, 13 Mar 2003 15:39:10 +0530 Subject: Return Code of 127 Message-ID: <30BFDEA66FF4D41191EB00D0B765BC6F813BC7@medha.wsspl.com> Hi, We are struck by the wierd message which says that "Return code of 127 is out of bounds - plugin may be missing". As answered by one of our maling list members, I tested running the script "check_ping" from outside as both "nagios" and "root". Does the file permission has problem? Please help me to solve this basic problem from which I can start exploring the product. The faq, does not highlight our problem any where. So please help us to by in sync with you guys. -Parmy -----Original Message----- From: Parameshwar Sent: Monday, March 10, 2003 2:39 PM To: 'Exsilia Internet Services' Subject: RE: [Nagios-users] Return Code of 127 check_ping plugin can be ran by the nagios user. -Parmy -----Original Message----- From: Exsilia Internet Services [mailto:info at exsilia.net] Sent: Monday, March 10, 2003 2:04 PM To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Return Code of 127 Hello, > This is my very first question to the mailing list. Hope this mailing > list helps me to solve the problems which I am facing at present. I have > installed and configured nagios-1.0 with the nagiosplug-1.3. Looks like > the basic plugin "check_ping" is not working for me. It works fine from > the command prompt but not from the services.cfg file due to which I am > not able to proceed further. The status of the host is displayed as > "Down" even when it can be pinged. The status information states some > thing like this "Return code of 127 is out of bounds - plugin may be > missing". Please help me how to go about it. I had this problem with the notification tools I use (sms_client). If everything is alright nagios runs as a non-root user, ie. 'nagios'. Could you verify if the check_ping plugin can be ran by the nagios user? Also, if you have added/removed/changed any subgroups the Nagios user is in, you have to restart Nagios! Hope this helps. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sun at st-pierre.com Thu Mar 13 11:34:54 2003 From: sun at st-pierre.com (Xfer) Date: 13 Mar 2003 10:34:54 -0000 Subject: check_http - ok status for http errors Message-ID: <20030313103454.21642.qmail@pod-163.dolphin-server.co.uk> Hi, I want to be able to use the plugin check_http to return an ok status if the http server returns error status like 404 or 401, Does anyone know if there are some weard switches that can be used? Or has anyone developed a script to do this? Cheers Ed ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mat at avedya.com Thu Mar 13 12:21:57 2003 From: mat at avedya.com (Matthieu Parisot) Date: Thu, 13 Mar 2003 12:21:57 +0100 Subject: check_http - ok status for http errors In-Reply-To: <20030313103454.21642.qmail@pod-163.dolphin-server.co.uk> References: <20030313103454.21642.qmail@pod-163.dolphin-server.co.uk> Message-ID: <3E7069D5.7020805@avedya.com> Xfer wrote: >Hi, > >I want to be able to use the plugin check_http to return an ok status if the http server returns error status like 404 or 401, > >Does anyone know if there are some weard switches that can be used? > >Or has anyone developed a script to do this? > >Cheers > >Ed > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > I suggest that you write a shell plugin using curl, which allows you to display only the http_code that you want: #! /bin/bash HTTPCODE=$(curl -o /dev/null -s -w "%{http_code}\n" http://www.example.com/) err=$? if ! [ $err -eq 0 ] then echo "Sorry, curl failed : $err code returned" fi case $HTTPCODE in 200) echo "Http code 200 was returned" ;; 401) echo "Http code 401 was returned" ;; *) echo "Httpcode $HTTPCODE was returned" ;; esac Regards, Matthieu ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Thu Mar 13 12:32:58 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 13 Mar 2003 06:32:58 -0500 Subject: Return Code of 127 In-Reply-To: <30BFDEA66FF4D41191EB00D0B765BC6F813BC7@medha.wsspl.com> References: <30BFDEA66FF4D41191EB00D0B765BC6F813BC7@medha.wsspl.com> Message-ID: <1047555178.1200.75.camel@miles.debisschop.net> On Thu, 2003-03-13 at 05:09, Parameshwar wrote: > Hi, > We are struck by the wierd message which says that "Return code of 127 > is out of bounds - plugin may be missing". As answered by one of our maling > list members, I tested running the script "check_ping" from outside as both > "nagios" and "root". Does the file permission has problem? Please help me to > solve this basic problem from which I can start exploring the product. The > faq, does not highlight our problem any where. So please help us to by in > sync with you guys. This often happenes when the plugin are installed in a different directory than indicated by the nagios config files. Look for typos. -- Karl ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Thu Mar 13 12:38:06 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 13 Mar 2003 06:38:06 -0500 Subject: check_local_procs problem In-Reply-To: References: Message-ID: <1047555486.1204.83.camel@miles.debisschop.net> On Thu, 2003-03-13 at 04:50, Clement.Lorvao at cadrus.fr wrote: > Hi, > I have a problem with my check_local_procs plugin. > Here is my checkcomands.cfg file: > > define command { > command_name check_local_procs > commande_line $USER1$/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$ > } > > > In my services.cfg file, I have: > > define service { > .... > check_command check_local_procs!2 3 r > ... > } > > And when I run Nagios, I have this error : > > check_procs: Critical Process Count must be an integer! shouldn't it be check_command check_local_procs!2!3!r -- Karl ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gyufi at sztaki.hu Thu Mar 13 12:46:04 2003 From: gyufi at sztaki.hu (Szabo Gyula) Date: Thu, 13 Mar 2003 12:46:04 +0100 (MET) Subject: check_local_procs problem In-Reply-To: References: Message-ID: Hi! > check_command check_local_procs!2 3 r Do this! check_command check_local_procs!2!3!r gyufi ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sun at st-pierre.com Thu Mar 13 12:41:51 2003 From: sun at st-pierre.com (Xfer) Date: 13 Mar 2003 11:41:51 -0000 Subject: check_http - ok status for http errors In-Reply-To: <3E7069D5.7020805@avedya.com> References: <3E7069D5.7020805@avedya.com> Message-ID: <20030313114151.1711.qmail@pod-163.dolphin-server.co.uk> Thanks alot, that has helped massively. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Clement.Lorvao at cadrus.fr Thu Mar 13 12:47:12 2003 From: Clement.Lorvao at cadrus.fr (Clement.Lorvao at cadrus.fr) Date: Thu, 13 Mar 2003 12:47:12 +0100 Subject: =?iso-8859-1?Q?R=E9f=2E_=3A_Re=3A_[Nagios-users]_check=5Flocal=5Fprocs?= problem Message-ID: That's it !! Thank You, Cl?ment Szabo Gyula cc : nagios-users at lists.sourceforge.net Objet : Re: [Nagios-users] check_local_procs problem 13/03/2003 12:46 Hi! > check_command check_local_procs!2 3 r Do this! check_command check_local_procs!2!3!r gyufi ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From philc at foundation-it.com Thu Mar 13 13:21:56 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Thu, 13 Mar 2003 12:21:56 -0000 Subject: check_http - ok status for http errors Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909EC92@netfinity-1.foundation-it.local> > From: Matthieu Parisot [mailto:mat at avedya.com] > > Xfer wrote: > > >I want to be able to use the plugin check_http to return an > ok status > >if the http server returns error status like 404 or 401, > > > >Does anyone know if there are some weard switches that can be used? > > > >Or has anyone developed a script to do this? > > > I suggest that you write a shell plugin using curl, which > allows you to display only the http_code that you want: [snip example] Or you could use the -e switch to check_http to specify the string back you expect. # 'check_http_noauth' command definition # This can be used against servers expecting NTLM or other authentication we can't supply # A "401 Access Denied" message counts as OK define command{ command_name check_http_noauth command_line $USER1$/check_http -H $HOSTADDRESS$ -e "HTTP/1.1 401" } You might need to amend the string to suit the server you're checking and/or make it general enough to use against any server. Phil ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cpichele at yahoo.com Thu Mar 13 13:47:56 2003 From: cpichele at yahoo.com (=?iso-8859-1?q?Colin=20Pichele?=) Date: Thu, 13 Mar 2003 13:47:56 +0100 (CET) Subject: Error: (Return code of 32 is out of bounds) Message-ID: <20030313124756.32577.qmail@web11402.mail.yahoo.com> Hello, i'm a new user and i'm trying to check disk load using check_nrpe. i'm monitoring 2 computers with RedHat8, my computer which is the nagios server, and another one. When i try check my own disk i have this message: (Return code of 32 is out of bounds) But i have good informations for the disk of the other computer. Can some one help me for solving this problem? Thanks in advance! ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 13 14:16:44 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 13 Mar 2003 10:16:44 -0300 Subject: check_snmp In-Reply-To: <352B04312822444A962714393AED8A4D11379F@ADAEVS01.int.chickasaw.net> References: <352B04312822444A962714393AED8A4D11379F@ADAEVS01.int.chickasaw.net> Message-ID: Sorry, I don't understand your question. My problem is that "check_snmp" command doesn't work. Look the message below. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Jeremy Russell Sent: quarta-feira, 12 de marco de 2003 17:28 To: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] check_snmp It looks like its complaining about the service... Is this the old configuration style or template? -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Wednesday, March 12, 2003 2:13 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] check_snmp Hi people, Could you help me ? I'm trying enable check_snmp to a server, but I receive the following error: ************************************************************************ **** ******************** Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' specified in service 'SNMP' for host 'sao41w' not defined anywhere! ************************************************************************ **** ******************** The strange that is I have enable check_ping to the server, and I don't have problem. I have defined the server in hosts.cfg file. Thank you. Regards, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chris.stankaitis at datawire.net Thu Mar 13 14:26:49 2003 From: chris.stankaitis at datawire.net (Chris Stankaitis) Date: Thu, 13 Mar 2003 08:26:49 -0500 Subject: send_nsca In-Reply-To: References: Message-ID: <3E708719.8050102@datawire.net> send_nsca doesn't require the "-H" Flag for hostname, you just define the hostname without the -H you also don't need '-p' unless your switching the nsca host to listen on a different port... 5667 is the default port for send_nsca The following line should be all you need. ./send_nsca nagios.yourdomain -to 15 -c /etc/nsca.cfg Chris Kreig Dubose wrote: > OS: RH8 > Nag: Nagios 1.0 > > I'm trying to obviously get send_nsca working. I've read through the > documents and perhaps it's due to the late hour, or my ignorance ;) but I > cannot determine how to supply the actual service check to the nagios > station. > > On the host > [kreigd at goclnx1 nagios]$ ./send_nsca -H nagios -p 5667 -t0 15 -c > /etc/send_nsca.cfg > Incorrect command line arguments supplied > > NSCA Client 2.3 > > On the nagios server > kreigd 25227 1 0 Mar12 ? 00:00:00 ./nsca -c /etc/nsca.cfg > --daemon > tcp 0 0 *:5667 *:* LISTEN > > Do I need to write a script to use this command? or do I just redirect the > output of the check_* command to send_nsca ?? > > > > I can find no docs that answer this seemingly fundamental question?? > > TIA, > > Kreig > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -- Chris Stankaitis Systems Administrator Datawire Communication Networks Inc. chris.stankaitis at datawire.net ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Thu Mar 13 14:37:39 2003 From: mpowell at ena.com (Marc Powell) Date: Thu, 13 Mar 2003 07:37:39 -0600 Subject: send_nsca Message-ID: <5DB017510818EC468B05BD7BD9EACF83032D415C@mismail.ena.com> He also appears to be using '-t(zero) 15' instead of '-t(oh) 15'. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Chris Stankaitis To: Kreig Dubose CC: Nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:26:49 2003 Subject: Re: [Nagios-users] send_nsca send_nsca doesn't require the "-H" Flag for hostname, you just define the hostname without the -H you also don't need '-p' unless your switching the nsca host to listen on a different port... 5667 is the default port for send_nsca The following line should be all you need. ./send_nsca nagios.yourdomain -to 15 -c /etc/nsca.cfg Chris Kreig Dubose wrote: > OS: RH8 > Nag: Nagios 1.0 > > I'm trying to obviously get send_nsca working. I've read through the > documents and perhaps it's due to the late hour, or my ignorance ;) but I > cannot determine how to supply the actual service check to the nagios > station. > > On the host > [kreigd at goclnx1 nagios]$ ./send_nsca -H nagios -p 5667 -t0 15 -c > /etc/send_nsca.cfg > Incorrect command line arguments supplied > > NSCA Client 2.3 > > On the nagios server > kreigd 25227 1 0 Mar12 ? 00:00:00 ./nsca -c /etc/nsca.cfg > --daemon > tcp 0 0 *:5667 *:* LISTEN > > Do I need to write a script to use this command? or do I just redirect the > output of the check_* command to send_nsca ?? > > > > I can find no docs that answer this seemingly fundamental question?? > > TIA, > > Kreig > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -- Chris Stankaitis Systems Administrator Datawire Communication Networks Inc. chris.stankaitis at datawire.net ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From tridentadm at netscape.net Thu Mar 13 14:54:59 2003 From: tridentadm at netscape.net (tridentadm at netscape.net) Date: Thu, 13 Mar 2003 08:54:59 -0500 Subject: nagios maps not showing. Message-ID: <5DFD4509.606657F6.10C3B4E4@netscape.net> i dont know whats wrong with the statusmaps since they dont show up ie. the picture doesnt come. it gicves me the following error -Server error! -The server encountered an internal error and was unable to complete your -request. - - Error message: -Premature end of script headers: statusmap.cgi - -If you think this is a server error, please contact the webmaster could it be that the statusmap.cgi might be corrupt or incomplete or a bug. my nagios rpm version is nagios-1.0-1.rpm is there a new version of rpm -- regards, tridentadmin __________________________________________________________________ Try AOL and get 1045 hours FREE for 45 days! http://free.aol.com/tryaolfree/index.adp?375380 Get AOL Instant Messenger 5.1 for FREE! Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 13 14:48:32 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 13 Mar 2003 10:48:32 -0300 Subject: FW: check_snmp Message-ID: Where I define the command ? -----Original Message----- From: Fredrik Wanglund [mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Thu Mar 13 15:07:34 2003 From: mpowell at ena.com (Marc Powell) Date: Thu, 13 Mar 2003 08:07:34 -0600 Subject: check_snmp Message-ID: <5DB017510818EC468B05BD7BD9EACF83032D415D@mismail.ena.com> Typically commands.cfg. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Hugo Rebello To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:48:32 2003 Subject: FW: [Nagios-users] check_snmp Where I define the command ? -----Original Message----- From: Fredrik Wanglund [mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From mpowell at ena.com Thu Mar 13 15:09:09 2003 From: mpowell at ena.com (Marc Powell) Date: Thu, 13 Mar 2003 08:09:09 -0600 Subject: nagios maps not showing. Message-ID: <5DB017510818EC468B05BD7BD9EACF83032D415E@mismail.ena.com> What do your web server error logs say? You're likely to get direction from there. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: tridentadm at netscape.net To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:54:59 2003 Subject: [Nagios-users] nagios maps not showing. i dont know whats wrong with the statusmaps since they dont show up ie. the picture doesnt come. it gicves me the following error -Server error! -The server encountered an internal error and was unable to complete your -request. - - Error message: -Premature end of script headers: statusmap.cgi - -If you think this is a server error, please contact the webmaster could it be that the statusmap.cgi might be corrupt or incomplete or a bug. my nagios rpm version is nagios-1.0-1.rpm is there a new version of rpm -- regards, tridentadmin __________________________________________________________________ Try AOL and get 1045 hours FREE for 45 days! http://free.aol.com/tryaolfree/index.adp?375380 Get AOL Instant Messenger 5.1 for FREE! Download Now! http://aim.aol.com/aimnew/Aim/register.adp?promos=380455 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Thu Mar 13 15:58:18 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 13 Mar 2003 11:58:18 -0300 Subject: check_snmp In-Reply-To: <5DB017510818EC468B05BD7BD9EACF83032D415D@mismail.ena.com> References: <5DB017510818EC468B05BD7BD9EACF83032D415D@mismail.ena.com> Message-ID: Re: [Nagios-users] check_snmpWhere is this file ? I looked in /usr/local/nagios/etc directory and didn't find. Thanks. -- Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quinta-feira, 13 de marco de 2003 11:08 To: hugo.rebello at br.danzas.com; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Typically commands.cfg. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Hugo Rebello To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:48:32 2003 Subject: FW: [Nagios-users] check_snmp Where I define the command ? -----Original Message----- From: Fredrik Wanglund [mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Thu Mar 13 15:58:39 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 13 Mar 2003 11:58:39 -0300 Subject: check_snmp In-Reply-To: <5DB017510818EC468B05BD7BD9EACF83032D415D@mismail.ena.com> References: <5DB017510818EC468B05BD7BD9EACF83032D415D@mismail.ena.com> Message-ID: Re: [Nagios-users] check_snmpWhere is this file ? I looked in /usr/local/nagios/etc directory and didn't find. Thanks. -- Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quinta-feira, 13 de marco de 2003 11:08 To: hugo.rebello at br.danzas.com; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Typically commands.cfg. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Hugo Rebello To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:48:32 2003 Subject: FW: [Nagios-users] check_snmp Where I define the command ? -----Original Message----- From: Fredrik Wanglund [mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Thu Mar 13 16:26:42 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 13 Mar 2003 12:26:42 -0300 Subject: check_snmp In-Reply-To: References: Message-ID: Re: [Nagios-users] check_snmpI found the file, it names "checkcommands.cfg", but I don't know how to customize the command. Could you help me ? Thanks Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo Rebello Sent: quinta-feira, 13 de marco de 2003 11:59 To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] check_snmp Where is this file ? I looked in /usr/local/nagios/etc directory and didn't find. Thanks. -- Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quinta-feira, 13 de marco de 2003 11:08 To: hugo.rebello at br.danzas.com; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Typically commands.cfg. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Hugo Rebello To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:48:32 2003 Subject: FW: [Nagios-users] check_snmp Where I define the command ? -----Original Message----- From: Fredrik Wanglund [mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandromergvaz at uol.com.br Thu Mar 13 16:33:25 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Thu, 13 Mar 2003 12:33:25 -0300 Subject: RES: check_snmp In-Reply-To: References: Message-ID: checkcommands.cfg -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: quinta-feira, 13 de mar?o de 2003 11:58 Para: Marc Powell; nagios-users at lists.sourceforge.net Assunto: RE: [Nagios-users] check_snmp Where is this file ? I looked in /usr/local/nagios/etc directory and didn't find. Thanks. -- Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quinta-feira, 13 de mar?o de 2003 11:08 To: hugo.rebello at br.danzas.com; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Typically commands.cfg. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Hugo Rebello To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:48:32 2003 Subject: FW: [Nagios-users] check_snmp Where I define the command ? -----Original Message----- From: Fredrik Wanglund [HYPERLINK "mailto:fredrik.wanglund at datavis.se"mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [HYPERLINK "mailto:hugo.rebello at br.danzas.com"mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >HYPERLINK "http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en"http://ads.source forge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >HYPERLINK "https://lists.sourceforge.net/lists/listinfo/nagios-users"https://lists.sou rceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >HYPERLINK "http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en"http://ads.source forge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >HYPERLINK "https://lists.sourceforge.net/lists/listinfo/nagios-users"https://lists.sou rceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: HYPERLINK "http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en"http://ads.source forge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net HYPERLINK "https://lists.sourceforge.net/lists/listinfo/nagios-users"https://lists.sou rceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 -------------- next part -------------- An HTML attachment was scrubbed... URL: From teomihsav at yahoo.com Thu Mar 13 16:49:32 2003 From: teomihsav at yahoo.com (mteohari) Date: 13 Mar 2003 15:49:32 -0000 Subject: How to enLarge statusmap Message-ID: <20030313154932.20361.qmail@pod-163.dolphin-server.co.uk> How can you see on the attachment of my statusmap, the images are very closer and I can not see anything clearly. Can you tell me how to enlarge statusmap? thanks -------------- next part -------------- A non-text attachment was scrubbed... Name: statusmap.jpg Type: image/jpeg Size: 87339 bytes Desc: not available URL: From ravis at stratify.com Thu Mar 13 17:16:10 2003 From: ravis at stratify.com (Ravi Sharma) Date: Thu, 13 Mar 2003 21:46:10 +0530 Subject: How to configure disk,mem,cpu info for windows Message-ID: Hi All, Can some one tell me how to check the Disk,CUP,Mem utilization on windows machine through Nagios. I have downloaded and install the all plugins. Regards Ravi Sharma ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From teomihsav at yahoo.com Thu Mar 13 17:15:44 2003 From: teomihsav at yahoo.com (mteohari) Date: 13 Mar 2003 16:15:44 -0000 Subject: How to configure disk,mem,cpu info for windows In-Reply-To: References: Message-ID: <20030313161544.25685.qmail@pod-163.dolphin-server.co.uk> Hi, you have to start snmpd on your Win machine . ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From syed at nec-labs.com Thu Mar 13 17:45:02 2003 From: syed at nec-labs.com (Syed Ali) Date: Thu, 13 Mar 2003 11:45:02 -0500 Subject: How to configure disk,mem,cpu info for windows Message-ID: <951A499AA688EF47A898B45F25BD8EE8334D81@mailer.nec-labs.com> I use the check_snmp plugin for monitoring my Windows box. I guess you could use http://nsclient.ready2run.nl/ also. -----Original Message----- From: Ravi Sharma [mailto:ravis at stratify.com] Sent: Thursday, March 13, 2003 11:16 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] How to configure disk,mem,cpu info for windows Hi All, Can some one tell me how to check the Disk,CUP,Mem utilization on windows machine through Nagios. I have downloaded and install the all plugins. Regards Ravi Sharma ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Thu Mar 13 17:44:02 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Thu, 13 Mar 2003 13:44:02 -0300 Subject: RES: How to configure disk,mem,cpu info for windows In-Reply-To: References: Message-ID: NSClient does the job fine. http://www.nagios.org/faqs/viewfaq.php?faq_id=32 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Ravi Sharma Enviada em: quinta-feira, 13 de mar?o de 2003 13:16 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] How to configure disk,mem,cpu info for windows Hi All, Can some one tell me how to check the Disk,CUP,Mem utilization on windows machine through Nagios. I have downloaded and install the all plugins. Regards Ravi Sharma ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Thu Mar 13 17:40:13 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Thu, 13 Mar 2003 13:40:13 -0300 Subject: RES: check_snmp In-Reply-To: References: Message-ID: checkcommands.cfg http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#command -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: quinta-feira, 13 de mar?o de 2003 12:27 Para: nagios-users at lists.sourceforge.net Assunto: RE: [Nagios-users] check_snmp I found the file, it names "checkcommands.cfg", but I don't know how to customize the command. Could you help me ? Thanks Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo Rebello Sent: quinta-feira, 13 de mar?o de 2003 11:59 To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] check_snmp Where is this file ? I looked in /usr/local/nagios/etc directory and didn't find. Thanks. -- Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quinta-feira, 13 de mar?o de 2003 11:08 To: hugo.rebello at br.danzas.com; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Typically commands.cfg. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Hugo Rebello To: nagios-users at lists.sourceforge.net Sent: Thu Mar 13 07:48:32 2003 Subject: FW: [Nagios-users] check_snmp Where I define the command ? -----Original Message----- From: Fredrik Wanglund [mailto:fredrik.wanglund at datavis.se] Sent: quinta-feira, 13 de marco de 2003 04:10 To: Jeremy Russell Cc: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] check_snmp Have you defined the command 'check_snmp'?? /FredrikW Jeremy Russell wrote: >It looks like its complaining about the service... Is this the old >configuration style or template? > >-----Original Message----- >From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] >Sent: Wednesday, March 12, 2003 2:13 PM >To: nagios-users at lists.sourceforge.net >Subject: [Nagios-users] check_snmp > > >Hi people, > >Could you help me ? >I'm trying enable check_snmp to a server, but I receive the following >error: > >************************************************************************ >**** >******************** >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' >specified in service 'SNMP' for host 'sao41w' not defined anywhere! >************************************************************************ >**** >******************** > >The strange that is I have enable check_ping to the server, and I don't >have problem. I have defined the server in hosts.cfg file. > >Thank you. > >Regards, >Hugo > > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when >reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Clement.Lorvao at cadrus.fr Thu Mar 13 18:02:16 2003 From: Clement.Lorvao at cadrus.fr (Clement.Lorvao at cadrus.fr) Date: Thu, 13 Mar 2003 18:02:16 +0100 Subject: Host Check problem Message-ID: Hi, I have an host with a service (check_host_alive). When this device is off, the state of the service is critical but the host is not checked : he stays Up. However, the "Host Check" option is enabled. Can someone help me? Thank you, Cl?ment ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 17:56:13 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 13 Mar 2003 11:56:13 -0500 (EST) Subject: check_snmp In-Reply-To: References: Message-ID: The check_snmp command is not defined in the checkcommands.cfg file shipped with Nagios. Take a look at the command.cfg file shipped with the plugins for example of what the check_snmp command definition should look like. Note: The command.cfg shipped with the plugins is in the old config file syntax. To translate this to the new standard - template sytax, run covertcfg from the nagios distribution on the command.cfg file. -sg On Thu, 13 Mar 2003, Hugo Rebello wrote: > Re: [Nagios-users] check_snmpI found the file, it names "checkcommands.cfg", > but I don't know how to customize the command. > Could you help me ? > > Thanks > Hugo > > >************************************************************************ > >**** > >******************** > >Error: Service check command 'check_snmp -v -H 192.168.1.10 -C public' > >specified in service 'SNMP' for host 'sao41w' not defined anywhere! > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From syed at nec-labs.com Thu Mar 13 18:11:25 2003 From: syed at nec-labs.com (Syed Ali) Date: Thu, 13 Mar 2003 12:11:25 -0500 Subject: How to configure disk,mem,cpu info for windows Message-ID: <951A499AA688EF47A898B45F25BD8EE8157417@mailer.nec-labs.com> Usage: check_nt -H host -v variable [-p port] [-w warning] [-c critical] [-l params] [-d SHOWALL] [-t timeout] So I guess you could do something like the following in your services.cfg file based on what you have entered in your checkcommands.cfg file: Check_nt!c!85!90 Which will check the C drive and will warn you at 85% usage and will give you a critical notification at 90% of disk usage -----Original Message----- From: Ravi Sharma [mailto:ravis at stratify.com] Sent: Thursday, March 13, 2003 12:17 PM To: Syed Ali Subject: RE: [Nagios-users] How to configure disk,mem,cpu info for windows Thanks a lot Syed, I have install the nsclient on windowsNT and 2k machine properly, services are running on windows machine. I am able to check the disk, mem and cpu utilization from command line from linux box linke ./check_nt -H 192....etc Could you please help me out to configure the services.cfg file : # Service definition define service{ use generic-service ; Name of service template to use host_name narada service_description check_nt is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups linux-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_nt --->>What to write here ???? } In checkcommand.cfg i have added the lines : #'check_nt' command defination define command{ command_name check_nt command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v USERDISKSPACE -l$ARG1$ -w $ARGS2$ -c$ARGS$ } So this will give the output of disk utilization, what about CPU, mem etc ? Please help me out, i will be thankful to you. Regards Ravi Sharma -----Original Message----- From: Syed Ali [mailto:syed at nec-labs.com] Sent: Thursday, March 13, 2003 22:15 To: ravis at stratify.com; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] How to configure disk,mem,cpu info for windows I use the check_snmp plugin for monitoring my Windows box. I guess you could use http://nsclient.ready2run.nl/ also. -----Original Message----- From: Ravi Sharma [mailto:ravis at stratify.com] Sent: Thursday, March 13, 2003 11:16 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] How to configure disk,mem,cpu info for windows Hi All, Can some one tell me how to check the Disk,CUP,Mem utilization on windows machine through Nagios. I have downloaded and install the all plugins. Regards Ravi Sharma ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David.Stacy at evenflo.com Thu Mar 13 18:27:31 2003 From: David.Stacy at evenflo.com (Stacy, David) Date: Thu, 13 Mar 2003 12:27:31 -0500 Subject: Statusmap.cgi doesn't exist - help Message-ID: <49482AB0C282D5119A3C0090273AD98D03A2614B@evvan1exc2.evenflo.com> hmmm I compiled nagios version 1.0 and have no statusmap.cgi in the cgi-bin nor in the cgi directory of the compile. -Dave ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From skaten at o1.com Thu Mar 13 18:51:27 2003 From: skaten at o1.com (Stephen Katen) Date: Thu, 13 Mar 2003 09:51:27 -0800 Subject: Statusmap.cgi doesn't exist - help Message-ID: Make sure you have gd compiled. It's a dependency. katen -----Original Message----- From: Stacy, David [mailto:David.Stacy at evenflo.com] Sent: Thursday, March 13, 2003 9:28 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Statusmap.cgi doesn't exist - help hmmm I compiled nagios version 1.0 and have no statusmap.cgi in the cgi-bin nor in the cgi directory of the compile. -Dave ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From irenes at wolfram.com Thu Mar 13 19:04:54 2003 From: irenes at wolfram.com (Irene Sakellarakis) Date: Thu, 13 Mar 2003 12:04:54 -0600 (CST) Subject: Configuring nrpe Message-ID: I've read the FAQs and README files. I probably need someone to translate for me:) I've set up check_nrpe on my host machine (RH 7.3) and on my client machine (Solaris 7). The host appears to be checking the client, but I get an error CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? I have 2 questions: 1) I haven't set up the service (check_disk) on the client, which is certainly contributing to my problem. I'm not sure where to compile the package. Do I have to install nagios on the client or can I put the check command in some other directory? 2) I can't seem to get the nrpe service running, either as part of inetd or as a daemon, on the client. No doubt this is the bigger of my problems... I've tried so many things thus far, that I'm a bit confused on how to backtrack. Any help would be greatly appreciated. Thanks in advance, Irene ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From syed at nec-labs.com Thu Mar 13 19:00:15 2003 From: syed at nec-labs.com (Syed Ali) Date: Thu, 13 Mar 2003 13:00:15 -0500 Subject: How to configure disk,mem,cpu info for windows Message-ID: <951A499AA688EF47A898B45F25BD8EE8157418@mailer.nec-labs.com> I do not use Nsclient, I used SNMP to monitor my windows boxes. However, based on what I see I guess the following should work: In checkcommands.cfg have a command relating to each of the check_nt options as follows: #'check_nt' command defination define command{ command_name check_nt_disk command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v USERDISKSPACE -l$ARG1$ -w $ARGS2$ -c$ARGS$ } #'check_nt' command defination define command{ command_name check_nt_cpuload command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v CPULOAD -l$ARG1$ } Do the same for the other options, such as uptime, memusage. Then in services.cfg do something like: # Service definition define service{ use generic-service host_name narada service_description check_nt is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups linux-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_nt_disk!c!85!95 } define service{ use generic-service host_name narada service_description check_nt is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups linux-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_nt_cpuload!5,85,90 } And so on.... -----Original Message----- From: Ravi Sharma [mailto:ravis at stratify.com] Sent: Thursday, March 13, 2003 12:54 PM To: Syed Ali Subject: RE: [Nagios-users] How to configure disk,mem,cpu info for windows Thanks for help, but still its not working.. web page is saying could not parse arguments. I have check carefully, arguments are proper : check_command check_nt!c!80!90 after this i have restarted the nagios. Secondly i want the whole report as mentioned in FAQ page : # NSClient command[check_nt_disk]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ command[check_nt_cpuload]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v CPULOAD -l $ARG1$ command[check_nt_uptime]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v UPTIME command[check_nt_clientversion]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v CLIENTVERSION command[check_nt_process]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v PROCSTATE -l $ARG1$ command[check_nt_service]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v SERVICESTATE -l $ARG1$ command[check_nt_memuse]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v MEMUSE -w $ARG1$ -c $ARG2$ command[check_nt_fileage]=$USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v FILEAGE -l $ARG1$ -w $ARG2$ -c $ARG3$ How to configure this .as you mentioned SHOWALL, could you please tell me the exact line which i have to add in the service.cfg and checkcommand.cfg ? it will be a great help for me. Regards Ravi Sharma -----Original Message----- From: Syed Ali [mailto:syed at nec-labs.com] Sent: Thursday, March 13, 2003 22:41 To: ravis at stratify.com; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] How to configure disk,mem,cpu info for windows Usage: check_nt -H host -v variable [-p port] [-w warning] [-c critical] [-l params] [-d SHOWALL] [-t timeout] So I guess you could do something like the following in your services.cfg file based on what you have entered in your checkcommands.cfg file: Check_nt!c!85!90 Which will check the C drive and will warn you at 85% usage and will give you a critical notification at 90% of disk usage ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David.Stacy at evenflo.com Thu Mar 13 19:12:10 2003 From: David.Stacy at evenflo.com (Stacy, David) Date: Thu, 13 Mar 2003 13:12:10 -0500 Subject: Statusmap.cgi doesn't exist - help Message-ID: <49482AB0C282D5119A3C0090273AD98D03A2614D@evvan1exc2.evenflo.com> thanks for the clue, your right, I probably don't -----Original Message----- From: Stephen Katen [mailto:skaten at o1.com] Sent: Thursday, March 13, 2003 12:51 PM To: Stacy, David; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Statusmap.cgi doesn't exist - help Make sure you have gd compiled. It's a dependency. katen -----Original Message----- From: Stacy, David [mailto:David.Stacy at evenflo.com] Sent: Thursday, March 13, 2003 9:28 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Statusmap.cgi doesn't exist - help hmmm I compiled nagios version 1.0 and have no statusmap.cgi in the cgi-bin nor in the cgi directory of the compile. -Dave ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From swallis at ittc.ukans.edu Thu Mar 13 19:13:35 2003 From: swallis at ittc.ukans.edu (Shawn Wallis) Date: Thu, 13 Mar 2003 12:13:35 -0600 (CST) Subject: NSClient In-Reply-To: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> References: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> Message-ID: I am having a similar problem on Solaris. I am using plugins Beta 3, (I had problems compiling check_nt with Beta 2)... The problem is similar, I can query the machine from the command line, and get a response. I have the password set to "None" This is the response I get: /usr/local/nagios/libexec/check_nt -H 10.1.1.25 -p 1248 -v MEMUSE -l -w 80 -c 90 Memory usage: total:1562.33 Mb - used: 240.69 Mb (15%) - free: 1321.64 Mb (85%) However, the nagios console reports "Warning - No Output".. ... I am wondering, if the return codes are not working correctly? Is anyone else using the nsclient/check_nt successfully under Solaris? My configuration is as follows: define command{ command_name check_nt_memuse command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v MEMUSE -w $ARG1$ -c $ARG2$ } services: define service{ use generic-service host_name test1 service_description Memory is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 3 retry_check_interval 1 contact_groups test notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_nt_memuse!80!95 } Thanks.. - Shawn On 12 Mar 2003, Gert wrote: > > Hello. > I hope you can help me out here. > > I am trying to use nsclient in Nagios. It works fine from the command line getting the data fr?n the W2K server but in Nagios i get an"Could not parse arguments" error. > > Here are my configs. > >From checkcommands > # 'check_nt_disk' command definition > define command{ > command_name check_nt_disk > command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -s $USER5$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ > } > > from services > # Service definition for checking Disk C Free Disk Space on Windows 2000 system > define service{ > use generic-service > host_name vanserv > service_description Drive C Space > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 1 > retry_check_interval 1 > contact_groups nt-admins > notification_interval 120 > notification_period 24x7 > notification_options c,w,r > check_command check_nt_disk!C!85!90 > } > > Regards > Gert > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nazario at email.sc.gov.br Thu Mar 13 19:43:16 2003 From: nazario at email.sc.gov.br (Samoied) Date: Thu, 13 Mar 2003 15:43:16 -0300 Subject: SNMP Discovery Message-ID: <20030313184315.GA18324@pc219-14.intranet.ciasc.gov.br> Good afternoon, I've been testing Nagios here in the company and got great results in the way it checks the hosts and show them and warn us about any problem. I want to replace the whole What's Up system by Nagios, but there's only one little problem that I have, and it is in the discovery. If you in the list know about any way to do the discovery using SNMP, since my whole network is configured under SNMP, and if there was any way to make Nagios folow the links configured in each router I'd be very thankful. I'm using nagios 1.0 and nagios-plugins-1.3.0-beta3 Greetings, -- _ Samoied ?v? UIN: #106162852 /(_)\ Linux user: #263461 ^ ^ Please encrypt and sign e-mails -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available URL: From JTorres at abnamroprime.com Thu Mar 13 20:03:09 2003 From: JTorres at abnamroprime.com (Torres, Joe) Date: Thu, 13 Mar 2003 14:03:09 -0500 Subject: (no subject) Message-ID: <9F6689758D87D51191180002A55CB988067FF3D7@pb350exc.ingprime.com> what is this? <<...OLE_Obj...>> ^^^^^^^^^^ this error? This is what I see now in my status info box when viewing on the browser? My Local checks on the Nagios server are fine I am getting these on my Remote Sites Is something corrupted Joe Torres Prime Brokerage I.T. ABN AMRO Incorporated 350 Park Ave. New York,N.Y.10022 Phone-212 251-3924 Fax-212 251-3950 Email-jtorres at abnamroprime.com This message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. ABN AMRO Bank N.V. (including its group companies) shall not be liable for the improper or incomplete transmission of the information contained in this communication nor for any delay in its receipt or damage to your system. ABN AMRO Bank N.V. (or its group companies) does not guarantee that the integrity of this communication has been maintained nor that this communication is free of viruses, interceptions or interference. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From don_schultz at panvera.com Thu Mar 13 20:43:42 2003 From: don_schultz at panvera.com (Don Schultz) Date: Thu, 13 Mar 2003 13:43:42 -0600 Subject: Ping everything Message-ID: <72CF2973A7532D478D85271D40F608FCC3FEC9@mercury.panvera.com> How many of you have a ping service on *all* hosts, regardless of whether they have other services being checked already I was thinking of only pinging the hosts that do not have services and taking the ping service off hosts that alrady are being checked for other things... (ssh, telnet, etc....) -- Don Schultz | Panvera Corporation Unix Administrator | 501 Charmany Drive ph: 608.204.5060 | Madison, WI 53719 fax: 608.204.5061 | ------------------------------------------ pgp: B0 F8 40 8F 66 E2 3B CF 5B BE F4 8C F8 75 25 B9 04 AF 67 A3 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From JTorres at abnamroprime.com Thu Mar 13 20:38:44 2003 From: JTorres at abnamroprime.com (Torres, Joe) Date: Thu, 13 Mar 2003 14:38:44 -0500 Subject: (no subject) Message-ID: <9F6689758D87D51191180002A55CB988067FF3D8@pb350exc.ingprime.com> What is this? [1047584385] SERVICE;hal9000;Check Messages Log SWAP;WARNING;3/3;HARD;1047584137 ;1047584437;ACTIVE;1;1;1;1047583125;0;WARNING;120;165;20070;64814;1047583125 ;17; 1;0;1;1;0;0.00;0;1;1;1;???\210?#\200 ^^^^^^ I am getting these wierd errors on the status info screen on the browser on my remote services Is something corrupted Joe Torres Prime Brokerage I.T. ABN AMRO Incorporated 350 Park Ave. New York,N.Y.10022 Phone-212 251-3924 Fax-212 251-3950 Email-jtorres at abnamroprime.com This message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. ABN AMRO Bank N.V. (including its group companies) shall not be liable for the improper or incomplete transmission of the information contained in this communication nor for any delay in its receipt or damage to your system. ABN AMRO Bank N.V. (or its group companies) does not guarantee that the integrity of this communication has been maintained nor that this communication is free of viruses, interceptions or interference. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rshuck at Buchanan.com Thu Mar 13 21:03:25 2003 From: rshuck at Buchanan.com (Ron Shuck) Date: Thu, 13 Mar 2003 14:03:25 -0600 Subject: Service Warnings on Status Map Message-ID: <208CA1887A08F749BDB1B7F79E23046C2C3A17@Mail.buchanan.com> Hi, I hope this is not a newbie or stupid question. I have RTFM. Is there a way to make service warning and critical states appear on the status maps or views? I have a user that wants to use the status map, but service failures do not cause a change to the map. TIA, Ron Shuck, CISSP - Managing Consultant Buchanan Associates - A Technology Company in the People Business http://www.buchanan.com http://www.isc2.org -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 3099 bytes Desc: not available URL: From jcolby at enterasys.com Thu Mar 13 21:04:43 2003 From: jcolby at enterasys.com (Colby, James) Date: Thu, 13 Mar 2003 15:04:43 -0500 Subject: Using macros in notification commands Message-ID: Hello - I was wondering if it is possible to use macro's in a notification command. I am beginning in suspect that it is not after trying to set one up. What I am trying to do is to create a generic command that will send a winpop notification when a service/host is in trouble. I do not want to have to create a separate win popup notification command for each of my contacts, so I would like to be able to pass the machine name to my notification command. Here is what I have tried so far: Misccommands.cfg: define command{ command_name host-notify-by-winpopup command_line /usr/bin/printf "%b" "Host '$HOSTALIAS$' is $HOSTSTATE$, Info: $OUTPUT$, Time: $DATETIME$" | /usr/local/samba/bin/smbclient -M $ARG1$ } Contacts.cfg: define contact{ contact_name jcolby alias jcolby service_notification_period 24x7 host_notification_period 24x7 service_notification_options w,u,c,r host_notification_options d,u,r service_notification_commands service-notify-by-email,service-notify-by-epager host_notification_commands host-notify-by-email, host-notify-by-winpopup!jcolby-xp email } When I check my config with nagios -v nagios.cfg it reports an error that notification command host-notify-by-winpopup!jcolby-xp does not exist. I am assuming that means that I cannot use the macros in my misccomands.cfg file the same way that I can use them in the checkcommands.cfg file. Is that correct, or am I just doing something wrong. Thank you very much. James ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GWCOOK at mactec.com Thu Mar 13 21:17:30 2003 From: GWCOOK at mactec.com (Cook, Garry) Date: Thu, 13 Mar 2003 13:17:30 -0700 Subject: Ping everything Message-ID: I originally had a check_ping as the default service for hosts, regardless of what other services were being checked. I've recently started removing them on those hosts that have other services. Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 303.881.5157 (Mobile) > -----Original Message----- > From: Don Schultz [mailto:don_schultz at panvera.com] > Sent: Thursday, March 13, 2003 12:44 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Ping everything > > > How many of you have a ping service on *all* hosts, > regardless of whether they have other services being checked already > > I was thinking of only pinging the hosts that do not have > services and taking the ping service off hosts that alrady > are being checked for other things... (ssh, telnet, etc....) > > -- > Don Schultz | Panvera Corporation > Unix Administrator | 501 Charmany Drive > ph: 608.204.5060 | Madison, WI 53719 > fax: 608.204.5061 | > ------------------------------------------ > pgp: B0 F8 40 8F 66 E2 3B CF 5B BE F4 8C > F8 75 25 B9 04 AF 67 A3 > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-> bin/redirect.pl?thaw0031en > > > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Thu Mar 13 21:16:53 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Thu, 13 Mar 2003 14:16:53 -0600 Subject: NSClient Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B473E@gsmail.govst.edu> When running from the command line are you logged in as nagios or root? Do a su nagios and then try command line. Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: Shawn Wallis [mailto:swallis at ittc.ukans.edu] Sent: Thursday, March 13, 2003 12:14 PM To: Gert; rubiyz1047 at swyz.com Cc: Nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] NSClient I am having a similar problem on Solaris. I am using plugins Beta 3, (I had problems compiling check_nt with Beta 2)... The problem is similar, I can query the machine from the command line, and get a response. I have the password set to "None" This is the response I get: /usr/local/nagios/libexec/check_nt -H 10.1.1.25 -p 1248 -v MEMUSE -l -w 80 -c 90 Memory usage: total:1562.33 Mb - used: 240.69 Mb (15%) - free: 1321.64 Mb (85%) However, the nagios console reports "Warning - No Output".. ... I am wondering, if the return codes are not working correctly? Is anyone else using the nsclient/check_nt successfully under Solaris? My configuration is as follows: define command{ command_name check_nt_memuse command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v MEMUSE -w $ARG1$ -c $ARG2$ } services: define service{ use generic-service host_name test1 service_description Memory is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 3 retry_check_interval 1 contact_groups test notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_nt_memuse!80!95 } Thanks.. - Shawn On 12 Mar 2003, Gert wrote: > > Hello. > I hope you can help me out here. > > I am trying to use nsclient in Nagios. It works fine from the command > line getting the data fr?n the W2K server but in Nagios i get an"Could > not parse arguments" error. > > Here are my configs. > >From checkcommands > # 'check_nt_disk' command definition > define command{ > command_name check_nt_disk > command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -s $USER5$ -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ > } > > from services > # Service definition for checking Disk C Free Disk Space on Windows > 2000 system > define service{ > use generic-service > host_name vanserv > service_description Drive C Space > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 1 > retry_check_interval 1 > contact_groups nt-admins > notification_interval 120 > notification_period 24x7 > notification_options c,w,r > check_command check_nt_disk!C!85!90 > } > > Regards > Gert > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 21:51:09 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 13 Mar 2003 15:51:09 -0500 (EST) Subject: Using macros in notification commands In-Reply-To: References: Message-ID: On Thu, 13 Mar 2003, Colby, James wrote: > Hello - > > I was wondering if it is possible to use macro's in a notification > command. I am beginning in suspect that it is not after trying to set > one up. What I am trying to do is to create a generic command that will > send a winpop notification when a service/host is in trouble. I do not > want to have to create a separate win popup notification command for > each of my contacts, so I would like to be able to pass the machine name > to my notification command. Here is what I have tried so far: > > Misccommands.cfg: > define command{ > command_name host-notify-by-winpopup > command_line /usr/bin/printf "%b" "Host '$HOSTALIAS$' is > $HOSTSTATE$, Info: $OUTPUT$, Time: $DATETIME$" | > /usr/local/samba/bin/smbclient -M $ARG1$ > } > > Contacts.cfg: > define contact{ > contact_name jcolby > alias jcolby > service_notification_period 24x7 > host_notification_period 24x7 > service_notification_options w,u,c,r > host_notification_options d,u,r > service_notification_commands > service-notify-by-email,service-notify-by-epager > host_notification_commands > host-notify-by-email, host-notify-by-winpopup!jcolby-xp > email > } > > When I check my config with nagios -v nagios.cfg it reports an error > that notification command host-notify-by-winpopup!jcolby-xp does not > exist. I am assuming that means that I cannot use the macros in my > misccomands.cfg file the same way that I can use them in the > checkcommands.cfg file. Is that correct, or am I just doing something > wrong. > > Thank you very much. > James > You cannot specify an argument in the contact definition ie "host-notify-by-winpopup!jcolby-xp" is treated as a command definition not a command definition with an argument... You can define the "host-notify-by-winpopup" to send the popoup to the contactalias if you follow a convention of having the contact alias point to the hostname they are logged onto. Check "http://nagios.sourceforge.net/docs/1_0/macros.html" to see what macro are available. -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark at woodstream.net Thu Mar 13 21:37:02 2003 From: mark at woodstream.net (mark) Date: Thu, 13 Mar 2003 15:37:02 -0500 (EST) Subject: check_dns In-Reply-To: References: Message-ID: After reading the docs and the check_dns -help info I have a question. We run tinydns which listens to port 53 udp only. When I check the dns service with check_dns, the plugin always times out even though I can do a dig or nslookup successfully from my monitoring server. Does anyonw know if check_dns requires port 53 "tcp" to be open? If not, any ideas why my check_dns is timing out when other tools are successful? Thanks! Mark ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 21:42:12 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 13 Mar 2003 15:42:12 -0500 (EST) Subject: SNMP Discovery In-Reply-To: <20030313184315.GA18324@pc219-14.intranet.ciasc.gov.br> References: <20030313184315.GA18324@pc219-14.intranet.ciasc.gov.br> Message-ID: On Thu, 13 Mar 2003, Samoied wrote: > Good afternoon, > > I've been testing Nagios here in the company and got great results in > the way it checks the hosts and show them and warn us about any problem. > > I want to replace the whole What's Up system by Nagios, but there's only > one little problem that I have, and it is in the discovery. If you in the > list know about any way to do the discovery using SNMP, since my whole > network is configured under SNMP, and if there was any way to make > Nagios folow the links configured in each router I'd be very thankful. > > I'm using nagios 1.0 and nagios-plugins-1.3.0-beta3 > > Greetings, > > There is no easy way to do snmp discovery for Nagios currently. BTW - nagios-plugins are a 1.3.0 release -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From JTorres at abnamroprime.com Thu Mar 13 21:44:17 2003 From: JTorres at abnamroprime.com (Torres, Joe) Date: Thu, 13 Mar 2003 15:44:17 -0500 Subject: Nagios Problems Message-ID: <9F6689758D87D51191180002A55CB988067FF3DC@pb350exc.ingprime.com> What is this ??? 03-13-2003 15:36:27] SERVICE ALERT: hal2001;Check Users;WARNING;HARD;3;?????#EUR <----------what is this it is on my remote server info status browser????? can some help me on this <<...OLE_Obj...>> [03-13-2003 15:31:27] SERVICE ALERT: hal2001;Check Users;UNKNOWN;HARD;3;CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? <<...OLE_Obj...>> [03-13-2003 15:21:27] SERVICE ALERT: hal2001;Check Users;WARNING;HARD;3;?????#EUR <<...OLE_Obj...>> [03-13-2003 15:20:27] SERVICE ALERT: hal2001;Check Users;WARNING;SOFT;2;?????#EUR <<...OLE_Obj...>> [03-13-2003 15:19:27] SERVICE ALERT: hal2001;Check Users;WARNING;SOFT;1;?????#EUR <<...OLE_Obj...>> [03-13-2003 15:17:31] Nagios 1.0 starting... (PID=25335) <<...OLE_Obj...>> [03-13-2003 15:17:31] Caught SIGTERM, shutting down... <<...OLE_Obj...>> [03-13-2003 15:05:53] SERVICE ALERT: njprime;Check Messages ONLINE LOG;WARNING;HARD;3;???@?#EUR <<...OLE_Obj...>> [03-13-2003 15:05:29] SERVICE ALERT: njprime;Check Messages Log IDS;WARNING;HARD;3;???@?#EUR <<...OLE_Obj...>> [03-13-2003 15:05:05] SERVICE ALERT: njprime;Check EXPORT FILESYSTEM;WARNING;HARD;3;???@?#EUR <<...OLE_Obj...>> [03-13-2003 15:02:01] SERVICE ALERT: njprime;Check Users;WARNING;HARD;3;???@?#EUR <<...OLE_Obj...>> [03-13-2003 15:01:37] SERVICE ALERT: njprime;Check TMP FILESYSTEM;WARNING;HARD;3;???@?#EUR <<...OLE_Obj...>> [03-13-2003 15:01:17] SERVICE ALERT: njprime;Check ROOT FILESYSTEM;WARNING;HARD;3;???@?#EUR Joe Torres Prime Brokerage I.T. ABN AMRO Incorporated 350 Park Ave. New York,N.Y.10022 Phone-212 251-3924 Fax-212 251-3950 Email-jtorres at abnamroprime.com This message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and delete this message from your system. Any unauthorized use or dissemination of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. ABN AMRO Bank N.V. (including its group companies) shall not be liable for the improper or incomplete transmission of the information contained in this communication nor for any delay in its receipt or damage to your system. ABN AMRO Bank N.V. (or its group companies) does not guarantee that the integrity of this communication has been maintained nor that this communication is free of viruses, interceptions or interference. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Thu Mar 13 22:06:42 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Thu, 13 Mar 2003 22:06:42 +0100 Subject: Ping everything In-Reply-To: <72CF2973A7532D478D85271D40F608FCC3FEC9@mercury.panvera.com>; from don_schultz@panvera.com on Thu, Mar 13, 2003 at 01:43:42PM -0600 References: <72CF2973A7532D478D85271D40F608FCC3FEC9@mercury.panvera.com> Message-ID: <20030313220642.B1407@hpce.nec.com> On Thu, Mar 13, 2003 at 01:43:42PM -0600, Don Schultz wrote: > How many of you have a ping service on *all* hosts, regardless of > whether they have other services being checked already I think it's exactly 1649 of us. But then I might be wrong, of course... > I was thinking of only pinging the hosts that do not have services and > taking the ping service off hosts that alrady are being checked for > other things... (ssh, telnet, etc....) I hope I could help you in your decision making. Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Denis.OToole at dd.nec.com.au Thu Mar 13 22:13:55 2003 From: Denis.OToole at dd.nec.com.au (Denis J. O'Toole) Date: Fri, 14 Mar 2003 08:13:55 +1100 Subject: check_pop & check_imap Message-ID: <3E70F493.7050003@dd.nec.com.au> Hi Folks, I have just compiled, built and am now testing my first nagios box. Versions are; Nagios 1.0, Plugins V1.30 on Debian Linux 3.0 (Woody) Kernel 2.4.18 Most things are working fine, except for some checks I am doing for my POP and IMAP test responses. In services.cfg in have tried using check_imap & check_pop, looked through the checkcommands.cfg to make sure I had the syntax right. However these service checks *always* come back with connection refused. I have run the equivalent command from CLI as root and as nagios users ( /usr/local/nagios/libexec/check_(pop|imap) -H pophost and get the response, as I should expect :- POP OK - 0.018 second response time on port 110 [+OK POP3 ...] IMAP OK - 0.020 second response time on port 143 [* OK [CAPABILITY IMAPREV1 X-NETSCAPE LOGIN_REFERRALS STARTTLS AUTH=LOGIN] ..... I have tried using the check via check_tcp. I know it is the same program, but it has a less verbose output, as I thought it may have been a problem. I hope someone has an idea on what I can try next.. Regards, Denis J. O'Toole - "There are 10 types of people in this world. Those that understand binary, and those that don't." ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 13 22:58:56 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 13 Mar 2003 16:58:56 -0500 (EST) Subject: check_pop & check_imap In-Reply-To: <3E70F493.7050003@dd.nec.com.au> References: <3E70F493.7050003@dd.nec.com.au> Message-ID: On Fri, 14 Mar 2003, Denis J. O'Toole wrote: > Hi Folks, > > I have just compiled, built and am now testing my first nagios box. > > Versions are; Nagios 1.0, Plugins V1.30 on Debian Linux 3.0 (Woody) Kernel 2.4.18 > > Most things are working fine, except for some checks I am doing for my > POP and IMAP test responses. > > In services.cfg in have tried using check_imap & check_pop, looked > through the checkcommands.cfg to make sure I had the syntax right. > However these service checks *always* come back with connection refused. > > I have run the equivalent command from CLI as root and as nagios users ( > /usr/local/nagios/libexec/check_(pop|imap) -H pophost and get the > response, as I should expect :- > > POP OK - 0.018 second response time on port 110 [+OK POP3 ...] > IMAP OK - 0.020 second response time on port 143 [* OK [CAPABILITY > IMAPREV1 X-NETSCAPE LOGIN_REFERRALS STARTTLS AUTH=LOGIN] ..... > > I have tried using the check via check_tcp. I know it is the same > program, but it has a less verbose output, as I thought it may have been > a problem. > > I hope someone has an idea on what I can try next.. > > > Regards, > > Denis J. O'Toole > Helps if you post your configuration as well. -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From daehenoc at optusnet.com.au Thu Mar 13 23:08:58 2003 From: daehenoc at optusnet.com.au (daehenoc at optusnet.com.au) Date: Fri, 14 Mar 2003 09:08:58 +1100 Subject: How much delay do host checks impose? Message-ID: <200303132208.h2DM8wO32736@mail012.syd.optusnet.com.au> An embedded and charset-unspecified text was scrubbed... Name: not available URL: From benny at bennyvision.com Thu Mar 13 23:21:31 2003 From: benny at bennyvision.com (C. Bensend) Date: Thu, 13 Mar 2003 16:21:31 -0600 Subject: NRPE depots availible for HP-UX Message-ID: <20030313162131.B3834@bennyvision.com> Hey folks, I've gone ahead and built native HP-UX depots for NRPE. I have built them for 10.20, 11.00, and 11i. They're very simple, containing only the README from NRPE, as well as nrpe and check_nrpe binaries. Feel free to snag them from: http://www.bennyvision.com/projects/nagios/ Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Thu Mar 13 23:46:40 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Fri, 14 Mar 2003 00:46:40 +0200 Subject: SNMP Discovery Message-ID: Well, I kinda did it the hard way. I supply the program I wrote with a list of addresses where my services live. Then I parse the output of the traceroute command to see how I get from my Nagios machine to my destination. The scrippy then writes my hosts.cfg file (with parents and all) and puts a default check_ping service in for each router along the way. Looks kinda nice when the end result is a nice statusmap all filled in for me (btw I'm lazy, that's why I do these things ;) -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: 13 March 2003 10:42 To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] SNMP Discovery On Thu, 13 Mar 2003, Samoied wrote: > Good afternoon, > > I've been testing Nagios here in the company and got great results in > the way it checks the hosts and show them and warn us about any problem. > > I want to replace the whole What's Up system by Nagios, but there's only > one little problem that I have, and it is in the discovery. If you in the > list know about any way to do the discovery using SNMP, since my whole > network is configured under SNMP, and if there was any way to make > Nagios folow the links configured in each router I'd be very thankful. > > I'm using nagios 1.0 and nagios-plugins-1.3.0-beta3 > > Greetings, > > There is no easy way to do snmp discovery for Nagios currently. BTW - nagios-plugins are a 1.3.0 release -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Denis.OToole at dd.nec.com.au Fri Mar 14 00:02:42 2003 From: Denis.OToole at dd.nec.com.au (Denis J. O'Toole) Date: Fri, 14 Mar 2003 10:02:42 +1100 Subject: check_pop & check_imap In-Reply-To: References: Message-ID: <3E710E12.90705@dd.nec.com.au> Thanks for the warning ;) Hope this info helps solve my puzzle.. thanks again ================== checkcommands.cfg ================== # 'check_imap' command definition define command { command_name check_imap command_line $USER1$/check_imap -H $HOSTADDRESS$ } # 'check_pop' command definition define command { command_name check_pop command_line $USER1$/check_pop -H $HOSTADDRESS$ } ========= hosts.cfg ========= # 'MUA Pickup Host' host definition define host{ use generic-host ; Name of host template to use host_name pophost alias Linux Fileserver address 1.2.3.4 check_command check-host-alive max_check_attempts 10 notifications_enabled 1 notification_interval 120 notification_period 24x7 notification_options d,u,r } ============ services.cfg =========== # Service definition define service{ use generic-service ; Name of service template to use host_name pophost service_description POP3 is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups unix-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_pop ; check_command check_tcp!110 } # Service definition define service{ use generic-service ; Name of service template to use host_name pophost service_description IMAP4 is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups unix-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command check_imap ; check_command check_tcp!143 } Subhendu Ghosh wrote: >On Fri, 14 Mar 2003, Denis J. O'Toole wrote: > > >>Hi Folks, >> >>I have just compiled, built and am now testing my first nagios box. >> >>Versions are; Nagios 1.0, Plugins V1.30 on Debian Linux 3.0 (Woody) Kernel 2.4.18 >> >>Most things are working fine, except for some checks I am doing for my >>POP and IMAP test responses. >> >>In services.cfg in have tried using check_imap & check_pop, looked >>through the checkcommands.cfg to make sure I had the syntax right. >>However these service checks *always* come back with connection refused. >> >>I have run the equivalent command from CLI as root and as nagios users ( >>/usr/local/nagios/libexec/check_(pop|imap) -H pophost and get the >>response, as I should expect :- >> >>POP OK - 0.018 second response time on port 110 [+OK POP3 ...] >>IMAP OK - 0.020 second response time on port 143 [* OK [CAPABILITY >>IMAPREV1 X-NETSCAPE LOGIN_REFERRALS STARTTLS AUTH=LOGIN] ..... >> >>I have tried using the check via check_tcp. I know it is the same >>program, but it has a less verbose output, as I thought it may have been >>a problem. >> >>I hope someone has an idea on what I can try next.. >> >> >>Regards, >> >>Denis J. O'Toole >> >> > >Helps if you post your configuration as well. > > -- Regards, Denis J. O'Toole - "There are 10 types of people in this world. Those that understand binary, and those that don't." -- Denis O'Toole Voice Products Department R&D Division, Technology Group NEC Business Solutions Pty Ltd 649, Springvale Road Mulgrave 3170, AUSTRALIA Tel: +61-3-9264-3752 Fax: +61-3-9264 3438 Email: Denis.OToole at nec.com.au ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dadams at johncrowley.co.uk Fri Mar 14 00:49:44 2003 From: dadams at johncrowley.co.uk (David Adams) Date: Thu, 13 Mar 2003 23:49:44 -0000 Subject: if it aint broke...*sigh* Message-ID: Greetings List, Please could someone put me out of my misery. I was running the beta version of Nagios 1.0b3 (I think) and decided to upgrade to the latest version 1.0 now when i try to access the CGI's i get the error message ***It appears as though you do not have permission to view information for any of the services you requested...*** So, i have an authentication/config issue somewhere. It seems my username and password are being accepted when i log on to the web server as it brings up the html etc, it's just when i try to access the CGI's I've set up nagios a couple of times and have never seen this error message before, it must be something to do with the old config. Here is what i have done so far, and what i have done to try and solve the problem. Operating System OpenBSD 3.0 Webserver Apache/1.3.27 deleted old nagios source files deleted /usr/local/nagios/* Unzip, configure, make make install new version all worked fine with no errors my compile options for nagios - ./configure --prefix=/usr/local/nagios --with-cgiurl=/nagios/cgi-bin --with-htmurl=/nagios --with-nagios-user=nagios --with-nagios-grp=nagios unzip configure etc of plugins all worked fine with no errors my compile options for the plugins - ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-cgiurl=/nagios/cgi-bin Copied all the example cfg files into /usr/local/nagios/etc - here is a list -rw-r--r-- 1 nagios nagios 17184 Mar 13 16:19 cgi.cfg -rw-rw-r-- 1 nagios nagios 4478 Mar 13 16:17 checkcommands.cfg -rw-rw-r-- 1 nagios nagios 1589 Mar 13 21:34 contactgroups.cfg -rw-rw-r-- 1 nagios nagios 1949 Mar 13 22:00 contacts.cfg -rw-rw-r-- 1 nagios nagios 1665 Mar 13 22:07 dependencies.cfg -rw-rw-r-- 1 nagios nagios 1996 Mar 13 22:04 escalations.cfg -rw-rw-r-- 1 nagios nagios 1478 Mar 13 22:01 hostgroups.cfg -rw-rw-r-- 1 nagios nagios 5509 Mar 13 21:57 hosts.cfg -rw-r--r-- 1 nagios nagios 40 Mar 13 22:44 htpasswd.users -rw-rw-r-- 1 nagios nagios 4271 Mar 13 16:17 misccommands.cfg -rw-rw-r-- 1 nagios nagios 21356 Mar 13 16:39 nagios.cfg -rw-rw---- 1 nagios nagios 3072 Mar 13 16:17 resource.cfg -rw-rw-r-- 1 nagios nagios 11892 Mar 13 21:52 services.cfg -rw-rw-r-- 1 nagios nagios 1592 Mar 13 16:17 timeperiods.cfg edited all the cfg files to get a working config, ran the preflight check and got it to a point of 0 errors or warnings. Reviewed httpd.conf and didn't need to change anything because all the necessary stuff was still in there from the previous version. created the files /usr/local/nagios/sbin/.htaccess and /usr/local/nagios/share/.htaccess and inserted the following AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/htpasswd.users require valid-user I then ran htpasswd -c /usr/local/nagios/etc/htpasswd.users (my username) i added my old username and a new one, both exhibit the same problem. I have changed ownership of /usr/local/nagios/* to nagios and nagios (username and group name are both nagios) I have looked in the apache logs and cannot see anything to do with authentication errors, i have checked the nagios logs and there is nothing helpful there either. use_authentication=1 is set in cgi.cfg The plugins are working, i can see all the results in the log files, i just can't see the pretty pictures :-) Thanks in advance for any ideas, it's probably something stupid but i've scratched around for hours now and can't find it. regards Dave Adams David Adams IT Manager John Crowley Infrastructure Maintenance Telephone: +44 020 8709 5609 Mobile Number +44 079 0539 4003 E-Mail Address: dadams at johncrowley.co.uk Website: http://www.johncrowley.co.uk -------------------------------------------------------- Company registered in England, number 1301330 This message (and any associated files) is intended only for the use of the individual or entity to which it is addressed and may contain information that is confidential, subject to copyright or constitutes a trade secret. If you are not the intended recipient you are hereby notified that any dissemination, copying or distribution of this message, or files associated with this message, is strictly prohibited. If you have received this message in error, please notify us immediately by replying to the message and deleting it from your computer. Messages sent to and from John Crowley (Maidstone) Ltd may be monitored. Internet communications cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. Therefore, we do not accept responsibility for any errors or omissions that are present in this message, or any attachment, that have arisen as a result of e-mail transmission. If verification is required, please request a hard-copy version. Any views or opinions presented are solely those of the author and do not necessarily represent those of John Crowley (Maidstone) Ltd. -------------------------------------------------------- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 13 23:24:59 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 13 Mar 2003 16:24:59 -0600 Subject: check_pop & check_imap Message-ID: Might be your host definition. Might be your service definition. Please post snippets of both. jc > -----Original Message----- > From: Denis J. O'Toole [mailto:Denis.OToole at dd.nec.com.au] > Sent: Thursday, March 13, 2003 3:14 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_pop & check_imap > > > Hi Folks, > > I have just compiled, built and am now testing my first nagios box. > > Versions are; Nagios 1.0, Plugins V1.30 on Debian Linux 3.0 > (Woody) Kernel 2.4.18 > > Most things are working fine, except for some checks I am > doing for my POP and IMAP test responses. > > In services.cfg in have tried using check_imap & check_pop, > looked through the checkcommands.cfg to make sure I had the > syntax right. However these service checks *always* come back > with connection refused. > > I have run the equivalent command from CLI as root and as > nagios users ( /usr/local/nagios/libexec/check_(pop|imap) -H pophost > and get the response, as I should expect :- > > POP OK - 0.018 second response time on port 110 [+OK POP3 ...] > IMAP OK - 0.020 second response time on port 143 [* OK > [CAPABILITY IMAPREV1 X-NETSCAPE LOGIN_REFERRALS STARTTLS > AUTH=LOGIN] ..... > > I have tried using the check via check_tcp. I know it is the > same program, but it has a less verbose output, as I thought > it may have been a problem. > > I hope someone has an idea on what I can try next.. > > > Regards, > > Denis J. O'Toole > > - "There are 10 types of people in this world. > Those that understand binary, and those that don't." > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 14 00:50:28 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 13 Mar 2003 17:50:28 -0600 Subject: check_dns Message-ID: We're running tinydns here, and dnscachex as well. I'll assume for this discussion that you're not running dnscachex. AFAIK, check_dns does *not* require tcp port 53 to be open. Please provide the following: - cut-and-paste output of your nslookup query - cut-and-paste output of your dig query - cut-and-paste of your /etc/resolv.conf - the IP address(es) of your DNS server(s) Please do NOT hand-edit anything in an attempt to obfuscate details to the general public. One typo is all that I'll need in order to mis-diagnose your situation. jc > -----Original Message----- > From: mark [mailto:mark at woodstream.net] > Sent: Thursday, March 13, 2003 2:37 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_dns > > > > After reading the docs and the check_dns -help info I have a > question. > We run tinydns which listens to port 53 udp only. When I > check the dns > service with check_dns, the plugin always times out even > though I can do a > dig or nslookup successfully from my monitoring server. Does > anyonw know > if check_dns requires port 53 "tcp" to be open? If not, any > ideas why my > check_dns is timing out when other tools are successful? Thanks! > > Mark > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mmcclure at pneservices.com Fri Mar 14 03:17:07 2003 From: mmcclure at pneservices.com (Mike McClure) Date: Thu, 13 Mar 2003 20:17:07 -0600 (CST) Subject: if it aint broke...*sigh* In-Reply-To: References: Message-ID: <1535.192.168.1.32.1047608227.squirrel@xyzzy.homeip.net> Hi David, You must have your username (the one you put in /usr/local/nagios/etc/htpasswd.users) as a contact for the hostgroups you want to be able to work with. Alternatively, you can put your usernames into the "authorized_for" variables in the CGI configuration file. There's a lot more details here: http://nagios.sourceforge.net/docs/1_0/cgiauth.html If you're still having problems, feel free to email me directly. I like to help anyone using OpenBSD. :) - Mike > > > > > Greetings List, > > Please could someone put me out of my misery. > > I was running the beta version of Nagios 1.0b3 (I think) and decided to upgrade to > the latest version 1.0 > now when i try to access the CGI's i get the error message > > ***It appears as though you do not have permission to view information for any of > the services you requested...*** > > So, i have an authentication/config issue somewhere. It seems my username and > password are being accepted when i log on to the web server as it brings up the html > etc, it's just when i try to access the CGI's I've set up nagios a couple of times > and have never seen this error message before, it must be something to do with the > old config. > > Here is what i have done so far, and what i have done to try and solve the problem. > > Operating System OpenBSD 3.0 > Webserver Apache/1.3.27 > > deleted old nagios source files > deleted /usr/local/nagios/* > > Unzip, configure, make make install new version all worked fine with no errors > my compile options for nagios - ./configure --prefix=/usr/local/nagios > --with-cgiurl=/nagios/cgi-bin --with-htmurl=/nagios --with-nagios-user=nagios > --with-nagios-grp=nagios > > unzip configure etc of plugins all worked fine with no errors > my compile options for the plugins - ./configure --prefix=/usr/local/nagios > --with-nagios-user=nagios --with-nagios-group=nagios --with-cgiurl=/nagios/cgi-bin > > > Copied all the example cfg files into /usr/local/nagios/etc - here is a list > > -rw-r--r-- 1 nagios nagios 17184 Mar 13 16:19 cgi.cfg > -rw-rw-r-- 1 nagios nagios 4478 Mar 13 16:17 checkcommands.cfg > -rw-rw-r-- 1 nagios nagios 1589 Mar 13 21:34 contactgroups.cfg > -rw-rw-r-- 1 nagios nagios 1949 Mar 13 22:00 contacts.cfg > -rw-rw-r-- 1 nagios nagios 1665 Mar 13 22:07 dependencies.cfg > -rw-rw-r-- 1 nagios nagios 1996 Mar 13 22:04 escalations.cfg > -rw-rw-r-- 1 nagios nagios 1478 Mar 13 22:01 hostgroups.cfg > -rw-rw-r-- 1 nagios nagios 5509 Mar 13 21:57 hosts.cfg > -rw-r--r-- 1 nagios nagios 40 Mar 13 22:44 htpasswd.users > -rw-rw-r-- 1 nagios nagios 4271 Mar 13 16:17 misccommands.cfg > -rw-rw-r-- 1 nagios nagios 21356 Mar 13 16:39 nagios.cfg > -rw-rw---- 1 nagios nagios 3072 Mar 13 16:17 resource.cfg > -rw-rw-r-- 1 nagios nagios 11892 Mar 13 21:52 services.cfg > -rw-rw-r-- 1 nagios nagios 1592 Mar 13 16:17 timeperiods.cfg > > edited all the cfg files to get a working config, ran the preflight check and got it > to a point of 0 errors or warnings. > Reviewed httpd.conf and didn't need to change anything because all the necessary > stuff was still in there from the previous version. > created the files /usr/local/nagios/sbin/.htaccess and > /usr/local/nagios/share/.htaccess and inserted the following > > AuthName "Nagios Access" > AuthType Basic > AuthUserFile /usr/local/nagios/etc/htpasswd.users > require valid-user > I then ran htpasswd -c /usr/local/nagios/etc/htpasswd.users (my username) > > i added my old username and a new one, both exhibit the same problem. I have changed > ownership of /usr/local/nagios/* to nagios and nagios (username and group name are > both nagios) > > I have looked in the apache logs and cannot see anything to do with authentication > errors, i have checked the nagios logs and there is nothing helpful there either. > > use_authentication=1 is set in cgi.cfg > > The plugins are working, i can see all the results in the log files, i just can't > see the pretty pictures :-) > > Thanks in advance for any ideas, it's probably something stupid but i've scratched > around for hours now and can't find it. > > > > regards > > > > Dave Adams > > David Adams > IT Manager > John Crowley Infrastructure Maintenance > Telephone: +44 020 8709 5609 > Mobile Number +44 079 0539 4003 > E-Mail Address: dadams at johncrowley.co.uk > Website: http://www.johncrowley.co.uk > > -------------------------------------------------------- > Company registered in England, number 1301330 > > > > > This message (and any associated files) is intended only for the use of the > individual or entity to which it is addressed and may contain information that is > confidential, subject to copyright or constitutes a trade secret. If you are not the > intended recipient you are hereby notified that any dissemination, copying or > distribution of this message, or files associated with this message, is strictly > prohibited. If you have received this message in error, please notify us immediately > by replying to the message and deleting it from your computer. Messages sent to and > from John Crowley (Maidstone) Ltd may be monitored. > > Internet communications cannot be guaranteed to be secure or error-free as > information could be intercepted, corrupted, lost, destroyed, arrive late or > incomplete, or contain viruses. Therefore, we do not accept responsibility for any > errors or omissions that are present in this message, or any attachment, that have > arisen as a result of e-mail transmission. If verification is required, please > request a hard-copy version. Any views or opinions presented are solely those of the > author and do not necessarily represent those of John Crowley (Maidstone) Ltd. > -------------------------------------------------------- > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any > issue. > ::: Messages without supporting info will risk being sent to /dev/null > > -- Mike McClure, CCIE # 5125, CISSP # 30232 PNE Services, Inc. - http://www.pneservices.com mmcclure at pneservices.com mobile: 913-636-5590 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Denis.OToole at dd.nec.com.au Fri Mar 14 05:44:49 2003 From: Denis.OToole at dd.nec.com.au (Denis J. O'Toole) Date: Fri, 14 Mar 2003 15:44:49 +1100 Subject: check_pop & check_imap In-Reply-To: References: Message-ID: <3E715E41.1060609@dd.nec.com.au> Guys thanks for your help.. Problem has been fixed, mis-configuration (admin provided wrong IP) Carroll, Jim P [Contractor] wrote: >Might be your host definition. Might be your service definition. Please >post snippets of both. > >jc > > > >>-----Original Message----- >>From: Denis J. O'Toole [mailto:Denis.OToole at dd.nec.com.au] >>Sent: Thursday, March 13, 2003 3:14 PM >>To: nagios-users at lists.sourceforge.net >>Subject: [Nagios-users] check_pop & check_imap >> >> >>Hi Folks, >> >>I have just compiled, built and am now testing my first nagios box. >> >>Versions are; Nagios 1.0, Plugins V1.30 on Debian Linux 3.0 >>(Woody) Kernel 2.4.18 >> >>Most things are working fine, except for some checks I am >>doing for my POP and IMAP test responses. >> >>In services.cfg in have tried using check_imap & check_pop, >>looked through the checkcommands.cfg to make sure I had the >>syntax right. However these service checks *always* come back >>with connection refused. >> >>I have run the equivalent command from CLI as root and as >>nagios users ( /usr/local/nagios/libexec/check_(pop|imap) -H pophost >>and get the response, as I should expect :- >> >>POP OK - 0.018 second response time on port 110 [+OK POP3 ...] >>IMAP OK - 0.020 second response time on port 143 [* OK >>[CAPABILITY IMAPREV1 X-NETSCAPE LOGIN_REFERRALS STARTTLS >>AUTH=LOGIN] ..... >> >>I have tried using the check via check_tcp. I know it is the >>same program, but it has a less verbose output, as I thought >>it may have been a problem. >> >>I hope someone has an idea on what I can try next.. >> >> >>Regards, >> >>Denis J. O'Toole >> >>- "There are 10 types of people in this world. >> Those that understand binary, and those that don't." >> >> >> >> >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by:Crypto Challenge is now open! >>Get cracking and register here for some mind boggling fun and >>the chance of winning an Apple iPod: >>http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS >>when reporting any issue. >>::: Messages without supporting info will risk being sent to /dev/null >> >> >> > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > > -- Regards, Denis J. O'Toole - "There are 10 types of people in this world. Those that understand binary, and those that don't." -- Denis O'Toole Voice Products Department R&D Division, Technology Group NEC Business Solutions Pty Ltd 649, Springvale Road Mulgrave 3170, AUSTRALIA Tel: +61-3-9264-3752 Fax: +61-3-9264 3438 Email: Denis.OToole at nec.com.au ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From teomihsav at yahoo.com Fri Mar 14 05:44:32 2003 From: teomihsav at yahoo.com (mteohari) Date: 14 Mar 2003 04:44:32 -0000 Subject: How to enLarge statusmap In-Reply-To: <20030313154932.20361.qmail@pod-163.dolphin-server.co.uk> References: <20030313154932.20361.qmail@pod-163.dolphin-server.co.uk> Message-ID: <20030314044432.12305.qmail@pod-163.dolphin-server.co.uk> I have solved my problem. -------------- next part -------------- A non-text attachment was scrubbed... Name: ;).JPG Type: image/jpeg Size: 102624 bytes Desc: not available URL: From d.pavani at cineca.it Fri Mar 14 10:03:37 2003 From: d.pavani at cineca.it (Denis Pavani) Date: Fri, 14 Mar 2003 10:03:37 +0100 Subject: Ping everything References: <72CF2973A7532D478D85271D40F608FCC3FEC9@mercury.panvera.com> Message-ID: <3E719AE9.4010503@cineca.it> I have ping on all hosts, because ping is also giving you a "warning" when network is oveloaded. Cheers Don Schultz wrote: >How many of you have a ping service on *all* hosts, regardless of >whether they have other services being checked already > >I was thinking of only pinging the hosts that do not have services and >taking the ping service off hosts that alrady are being checked for >other things... (ssh, telnet, etc....) > > > -- ************************************************************************ Denis Pavani CINECA - Comunicazioni e Sistemi Distribuiti NOC - Network Operation Center phone:+39 0516171953 / fax:+39 0516132198 http://www.cineca.it ************************************************************************ "Siamo pagati per adattarci, improvvisare e raggiungere lo scopo" -- Gunny Highway ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From juris at lf.lv Fri Mar 14 11:21:24 2003 From: juris at lf.lv (Juris Grinbergs) Date: Fri, 14 Mar 2003 12:21:24 +0200 Subject: Statuspam dont display host icons, only question marks! In-Reply-To: References: Message-ID: <3E71AD24.9030508@lf.lv> 1) Statuspam dont display host icons, only question marks! I include in cgi.cfg hostextinfo[AP1]=;cat5000.png;cat5000.png;cat5000.gd2;Cisco Catalyst;;; hostextinfo[raja]=;win40.png;win40.png;win40.gd2;Windows 2000 Server;;; hostextinfo[zavns]=;win40.png;win40.png;win40.gd2;Windows 2000 Server;;; i try include information about hosts in hostextinfo.cfg file in decribed format, but nothing! 2) When autorizing, all it's OK, passwords also stored, how decribed, in cgi.cfg also included use_authorization=1 and when I open URL /nagios, authorization dialog been displayed, but when try do something, where need authorization, NAGIOS says: Sorry Dave, I can't let you do that... It seems that you have chosen to not use the authentication functionality of the CGIs. I don't want to be personally responsible for what may happen as a result of allowing unauthorized users to issue commands to Nagios,so you'll have to disable this safeguard if you are really stubborn and want to invite trouble. *Read the section on CGI authentication in the HTML documentation to learn how you can enable authentication and why you should want to* How to do this? Juris. -------------- next part -------------- An HTML attachment was scrubbed... URL: From David.Yang at sfs.siemens.de Fri Mar 14 12:23:49 2003 From: David.Yang at sfs.siemens.de (Yang David) Date: Fri, 14 Mar 2003 12:23:49 +0100 Subject: statusmap Message-ID: <9F833A9C0C5B6D4EBC07658332E0FEB10110B880@mchw636x.mchw.siemens.de> Hi there, I've added coordinations values into hostextinfo file for the monitored hosts. Can somebody tell me, how can i get the hosts connected with lines on the status map? How can the relationship be determined between the drawed hosts on the map? cheers david ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Fri Mar 14 13:04:53 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Fri, 14 Mar 2003 14:04:53 +0200 Subject: Notifications Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69200@intecserver007.intec.co.za> Gurus, Next question on notifications. Can one have email and pager notifications simultaneously for alerts? If one can, would you use two host notification lines? I have been trying, but with little success. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Fri Mar 14 12:59:02 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Fri, 14 Mar 2003 13:59:02 +0200 Subject: 3D Status map Message-ID: <9290BC9741D67F43BDAAC84144FF870DB691FF@intecserver007.intec.co.za> Gurus, Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " box. The URL looks right, and the permissions are fine for the file. Any ideas why I don't get the display. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From samcik at slovanet.sk Fri Mar 14 13:52:12 2003 From: samcik at slovanet.sk (Mgr. Matej =?utf-8?q?Sam=C4=8D=C3=ADk?=) Date: Fri, 14 Mar 2003 13:52:12 +0100 Subject: outages.cgi Message-ID: <200303141352.12598.samcik@slovanet.sk> Hello, I need some advice with following: I have set up nagios with several contactgroups, everything works OK. I see only hosts, services, etc. which I'm contact for, but I can't see outages.cgi (It appears as though you do not have permission to view information you requested...) until I'm not specified as a authorized_for_all_hosts in cgi.cfg. In docs, there is written: Authorization Requirements: * If you are authorized for all hosts you can view all hosts. * If you are an authenticated contact you can view hosts for which you are a contact. It doesn't work, as nagiosadmin (authorized_for_all_hosts) I see network outage cgi, as a user which is a contact person (not authorized_for_all_hosts) for the host causing network outage, I don't ... (It appears as though you do not have permission to view information you requested...) Does anybody know what could be the problem? Regards. MatejS ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Fri Mar 14 13:54:02 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Fri, 14 Mar 2003 13:54:02 +0100 Subject: 3D Status map References: <9290BC9741D67F43BDAAC84144FF870DB691FF@intecserver007.intec.co.za> Message-ID: <3E71D0EA.6311B3CF@gcc.dhl.com> http://www.nagios.org/faqs/viewfaq.php?faq_id=52 *sigh* will they ever learn... Paul Clayton wrote: > > Gurus, > > Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " > box. The URL looks right, and the permissions are fine for the file. Any > ideas why I don't get the display. > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > ******************************************************************************************* > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > notify the sender by e-mail. In such a case reading, reproducing, printing or > further dissemination of this e-mail is strictly prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ****************************************************************************************** > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Fri Mar 14 13:56:58 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Fri, 14 Mar 2003 13:56:58 +0100 Subject: Notifications References: <9290BC9741D67F43BDAAC84144FF870DB69200@intecserver007.intec.co.za> Message-ID: <3E71D19A.76363F57@gcc.dhl.com> Paul Clayton wrote: > Can one have email and pager notifications simultaneously for alerts? Yes > If one can, would you use two host notification lines? No. host_notification_commands host-notify-by-email,host-notify-by-epager > I have been trying, but with little success. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Fri Mar 14 14:04:21 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Fri, 14 Mar 2003 10:04:21 -0300 Subject: RES: Re: How to enLarge statusmap In-Reply-To: <20030314044432.12305.qmail@pod-163.dolphin-server.co.uk> References: <20030314044432.12305.qmail@pod-163.dolphin-server.co.uk> Message-ID: Could you tell us how? It's important to send to the list not only the problems, but also the solutions. Thanks in advance. Att., Sandro Vaz -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de mteohari Enviada em: sexta-feira, 14 de mar?o de 2003 01:45 Para: Nagios-users at lists.sourceforge.net Assunto: [Nagios-users] Re: How to enLarge statusmap I have solved my problem. --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Fri Mar 14 14:00:06 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Fri, 14 Mar 2003 13:00:06 +0000 Subject: NSClient In-Reply-To: References: Message-ID: Hey all, Has anybody else come accross the fact that despite your server regionalisation, NS CLient sill returns the date of a file in US format i.e., MM DD YY ? Is there a way to change this ? Thank you ! Matthew -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandromergvaz at uol.com.br Fri Mar 14 14:41:37 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Fri, 14 Mar 2003 10:41:37 -0300 Subject: RES: 3D Status map In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB691FF@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB691FF@intecserver007.intec.co.za> Message-ID: Download a VRML client. It's in the FAQs. http://www.nagios.org/faqs/viewfaq.php?faq_id=52 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul Clayton Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 Para: Nagios Users (E-mail) Assunto: [Nagios-users] 3D Status map Gurus, Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " box. The URL looks right, and the permissions are fine for the file. Any ideas why I don't get the display. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 **************************************************************************** *************** This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. **************************************************************************** ************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Fri Mar 14 14:53:23 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 14 Mar 2003 10:53:23 -0300 Subject: NSClient and check_nt command Message-ID: I have been problem with NSClient in Windows 2000 and some sintax of check_nt command. I put the check_nt in checkcommand.cfg file, but before I wanted test for command line. Example: ./check_nt -H 192.168.0.10 -p 1248 -v CPULOAD -l 5,80,90 NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&5 ./check_nt -H 192.168.0.10 -p 1248 -v MEMUSE -w 80 -c 90 Memory usage: total:0.00 Mb - used: 0.00 Mb (nan%) - free: 0.00 Mb (nan%) Could anyone help me ? I installed NSClient conform the readme.htm file. Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mlitzler at tisztanet.hu Fri Mar 14 15:01:53 2003 From: mlitzler at tisztanet.hu (Litzler Mihaly) Date: Fri, 14 Mar 2003 15:01:53 +0100 Subject: Cant compile on Solaris Message-ID: <200303141501.53812.mlitzler@tisztanet.hu> Hello! I'm trying to compile nagios 1.0 on Solaris 9. There are some availabe libraries (png, jpg) installed from companion cd, but there was no GD library, so I compiled one. I configured this way: ./configure --with-gd-lib=/usr/sfw/lib --with-gd-incle=/usr/sfw/include It doesnt work: checking for gdImagePng in -lgd (order 1)... (cached) no checking for gdImagePng in -lgd (order 2)... (cached) no checking for gdImagePng in -lgd (order 3)... (cached) no But gd is there, and gd is working properly, because I compiled mrtg successfully. Have you got any idea? Thanks! Mike ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dbestetti at opservices.com.br Fri Mar 14 14:58:51 2003 From: dbestetti at opservices.com.br (Dario B. Bestetti) Date: Fri, 14 Mar 2003 10:58:51 -0300 Subject: SNMP Discovery In-Reply-To: References: Message-ID: <00d201c2ea31$dccc2a60$34fda8c0@dario> Fred, can you send this program to the list ? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Fred Albrecht Sent: quinta-feira, 13 de mar?o de 2003 19:47 To: Subhendu Ghosh; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SNMP Discovery Well, I kinda did it the hard way. I supply the program I wrote with a list of addresses where my services live. Then I parse the output of the traceroute command to see how I get from my Nagios machine to my destination. The scrippy then writes my hosts.cfg file (with parents and all) and puts a default check_ping service in for each router along the way. Looks kinda nice when the end result is a nice statusmap all filled in for me (btw I'm lazy, that's why I do these things ;) -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: 13 March 2003 10:42 To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] SNMP Discovery On Thu, 13 Mar 2003, Samoied wrote: > Good afternoon, > > I've been testing Nagios here in the company and got great results in > the way it checks the hosts and show them and warn us about any > problem. > > I want to replace the whole What's Up system by Nagios, but there's > only one little problem that I have, and it is in the discovery. If > you in the list know about any way to do the discovery using SNMP, > since my whole network is configured under SNMP, and if there was any > way to make Nagios folow the links configured in each router I'd be > very thankful. > > I'm using nagios 1.0 and nagios-plugins-1.3.0-beta3 > > Greetings, > > There is no easy way to do snmp discovery for Nagios currently. BTW - nagios-plugins are a 1.3.0 release -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Fri Mar 14 15:09:58 2003 From: David at feedroom.com (David Gitman) Date: Fri, 14 Mar 2003 09:09:58 -0500 Subject: notify-by-email Message-ID: How can I change the from field in the notify-by-email notification? -------------- next part -------------- An HTML attachment was scrubbed... URL: From cristian.dimalio at lisit.it Fri Mar 14 15:24:13 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Fri, 14 Mar 2003 15:24:13 +0100 Subject: lot info Message-ID: http://www.totkat.org/pages/nagios.html --- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Christine.tsang at globalcrossing.com Fri Mar 14 15:19:20 2003 From: Christine.tsang at globalcrossing.com (Tsang, Christine Y) Date: Fri, 14 Mar 2003 09:19:20 -0500 Subject: SNMP version Message-ID: <89461EE9D2A2D51184EF00508BB1975A023143EC@exnagirmbx3.ams.gblxint.com> Hi all, I am new to this product. My goal is to look for a freeware monitoring product that is SNMP v3 compliant. I read through all the Nagios docs, but cannot find out if it is SNMP v3 complaint. Does anyone know? Thank you in advance. Best Regards, Christine Y. Tsang ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Fri Mar 14 15:22:23 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Fri, 14 Mar 2003 16:22:23 +0200 Subject: Compiling plugins on HPUX 11.00 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69206@intecserver007.intec.co.za> Anybody compiled HP-UX 11.00 plugins successfully? I have tried and no luck. It fails with Making all in plugins cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib -g -c check_disk.c cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib -g -c utils.c cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib -g -c popen.c cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib -g -c ./snprintf.c -o snprintf.o -r libsnprintf.a snprintf.o Make: Cannot load -r. Stop. *** Error exit code 1 Stop. *** Error exit code 1 Stop. Not being a C programmer I would not know where to start. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GWCOOK at mactec.com Fri Mar 14 15:33:55 2003 From: GWCOOK at mactec.com (Cook, Garry) Date: Fri, 14 Mar 2003 07:33:55 -0700 Subject: statusmap Message-ID: The relationship of your hosts can be shown by defining parents. Check these links for more information. http://www.nagios.org/faqs/viewfaq.php?faq_id=145 http://nagios.sourceforge.net/docs/1_0/networkreachability.html Garry W. Cook, CCNA Network Infrastructure Manager MACTEC, Inc. - http://www.mactec.com/ 303.308.6228 (Office) - 303.881.5157 (Mobile) > -----Original Message----- > From: Yang David [mailto:David.Yang at sfs.siemens.de] > Sent: Friday, March 14, 2003 4:24 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] statusmap > > > Hi there, > I've added coordinations values into hostextinfo file for the > monitored hosts. Can somebody tell me, how can i get the > hosts connected with lines on the status map? How can the > relationship be determined between the drawed hosts on the map? > > cheers > david > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-> bin/redirect.pl?thaw0031en > > > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Fri Mar 14 15:46:03 2003 From: David at feedroom.com (David Gitman) Date: Fri, 14 Mar 2003 09:46:03 -0500 Subject: notify-by-email Message-ID: Right now the email comes from root at machine.doamin.com. I'd like to change it from root to nagios. [-d] -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Friday, March 14, 2003 9:41 AM To: David Gitman; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] notify-by-email You can change in the miscommand.cfg file, but What do you want to do ? Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of David Gitman Sent: sexta-feira, 14 de mar?o de 2003 11:10 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] notify-by-email How can I change the from field in the notify-by-email notification? -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Fri Mar 14 15:40:37 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 14 Mar 2003 11:40:37 -0300 Subject: notify-by-email In-Reply-To: References: Message-ID: You can change in the miscommand.cfg file, but What do you want to do ? Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of David Gitman Sent: sexta-feira, 14 de marco de 2003 11:10 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] notify-by-email How can I change the from field in the notify-by-email notification? -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro at opservices.com.br Fri Mar 14 15:48:42 2003 From: sandro at opservices.com.br (Sandro Vaz) Date: Fri, 14 Mar 2003 11:48:42 -0300 Subject: RES: NSClient and check_nt command In-Reply-To: References: Message-ID: The sintax seems OK, the problem is in the NSClient client. What's the version installed? Have any entry at Event Log? Specially one entry just after the install, which specifies the language detected? More info, please. Att., Sandro Vaz OpServices S?o Paulo - Brasil (11) 3023-4009 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 10:53 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] NSClient and check_nt command I have been problem with NSClient in Windows 2000 and some sintax of check_nt command. I put the check_nt in checkcommand.cfg file, but before I wanted test for command line. Example: ./check_nt -H 192.168.0.10 -p 1248 -v CPULOAD -l 5,80,90 NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&5 ./check_nt -H 192.168.0.10 -p 1248 -v MEMUSE -w 80 -c 90 Memory usage: total:0.00 Mb - used: 0.00 Mb (nan%) - free: 0.00 Mb (nan%) Could anyone help me ? I installed NSClient conform the readme.htm file. Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Fri Mar 14 15:55:07 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 14 Mar 2003 11:55:07 -0300 Subject: notify-by-email In-Reply-To: References: Message-ID: Do you installed Nagios with user and group nagios ? You need to compile Nagios using user and group nagios. -----Original Message----- From: David Gitman [mailto:David at feedroom.com] Sent: sexta-feira, 14 de mar?o de 2003 11:46 To: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] notify-by-email Right now the email comes from root at machine.doamin.com. I?d like to change it from root to nagios. [-d] -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Friday, March 14, 2003 9:41 AM To: David Gitman; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] notify-by-email You can change in the miscommand.cfg file, but What do you want to do ? Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of David Gitman Sent: sexta-feira, 14 de mar?o de 2003 11:10 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] notify-by-email How can I change the from field in the notify-by-email notification? -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Fri Mar 14 16:08:59 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 14 Mar 2003 12:08:59 -0300 Subject: NSClient and check_nt command In-Reply-To: References: Message-ID: Stranger....when I use check_nt command with USEDDISKSPACE parameters I don't have problem. The messages in Event Log are : NSClient 1.0.7.1 has started. Language code : 0x0416. DebugLevel: 0 NSClient is reading C:\NSClient\Win_2k_XP_Bin\counters.defs for counters definitions. Language code : 0x0416 Thank You. Hugo -----Original Message----- From: Sandro Vaz [mailto:sandro at opservices.com.br] Sent: sexta-feira, 14 de mar?o de 2003 11:49 To: 'Hugo Rebello'; nagios-users at lists.sourceforge.net Subject: RES: [Nagios-users] NSClient and check_nt command The sintax seems OK, the problem is in the NSClient client. What's the version installed? Have any entry at Event Log? Specially one entry just after the install, which specifies the language detected? More info, please. Att., Sandro Vaz OpServices S?o Paulo - Brasil (11) 3023-4009 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 10:53 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] NSClient and check_nt command I have been problem with NSClient in Windows 2000 and some sintax of check_nt command. I put the check_nt in checkcommand.cfg file, but before I wanted test for command line. Example: ./check_nt -H 192.168.0.10 -p 1248 -v CPULOAD -l 5,80,90 NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&5 ./check_nt -H 192.168.0.10 -p 1248 -v MEMUSE -w 80 -c 90 Memory usage: total:0.00 Mb - used: 0.00 Mb (nan%) - free: 0.00 Mb (nan%) Could anyone help me ? I installed NSClient conform the readme.htm file. Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Fri Mar 14 16:41:37 2003 From: benny at bennyvision.com (C. Bensend) Date: Fri, 14 Mar 2003 09:41:37 -0600 Subject: Compiling plugins on HPUX 11.00 In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69206@intecserver007.intec.co.za>; from paul.clayton@intec.co.za on Fri, Mar 14, 2003 at 04:22:23PM +0200 References: <9290BC9741D67F43BDAAC84144FF870DB69206@intecserver007.intec.co.za> Message-ID: <20030314094137.A22022@bennyvision.com> On Fri, Mar 14, 2003 at 04:22:23PM +0200, Paul Clayton wrote: > Anybody compiled HP-UX 11.00 plugins successfully? Yup. http://www.bennyvision.com/projects/nagios/ Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 14 16:37:11 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 14 Mar 2003 10:37:11 -0500 (EST) Subject: SNMP version In-Reply-To: <89461EE9D2A2D51184EF00508BB1975A023143EC@exnagirmbx3.ams.gblxint.com> References: <89461EE9D2A2D51184EF00508BB1975A023143EC@exnagirmbx3.ams.gblxint.com> Message-ID: On Fri, 14 Mar 2003, Tsang, Christine Y wrote: > Hi all, > > I am new to this product. My goal is to look for a freeware monitoring > product that is SNMP v3 compliant. I read through all the Nagios docs, but > cannot find out if it is SNMP v3 complaint. Does anyone know? Thank you in > advance. > > > Best Regards, > Christine Y. Tsang If you are looking for an snmp-based monitor like HP Openview - this is not it. OpenNMS is probably closer. Nagios doesn't care how monitoring is done as it is delegated to the plugins. There is one plugins "check_snmp" that does support snmpv3. Other snmp plugins don't as yet. -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jmunoz at comcel.com.co Fri Mar 14 16:29:13 2003 From: jmunoz at comcel.com.co (=?iso-8859-1?Q?Jose_Orlando_Mu=F1oz_Bravo_=28HP=29?=) Date: Fri, 14 Mar 2003 10:29:13 -0500 Subject: Web interface don't show the 3D Status Map option? Message-ID: <8F3E96AF7095024E922116DCA0587C9DA340F5@ESPERANTO.comcel.com.co> Hi all, Could some one tell me, why my Nagios web interface do not show me the "3-D Status Map" option. all the other is ok in my Nagios Thanks. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 14 16:40:13 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 14 Mar 2003 10:40:13 -0500 (EST) Subject: Compiling plugins on HPUX 11.00 In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69206@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69206@intecserver007.intec.co.za> Message-ID: >From earlier this week.... - plugins are also there.. Hey folks, I've gone ahead and built native HP-UX depots for NRPE. I have built them for 10.20, 11.00, and 11i. They're very simple, containing only the README from NRPE, as well as nrpe and check_nrpe binaries. Feel free to snag them from: http://www.bennyvision.com/projects/nagios/ Benny On Fri, 14 Mar 2003, Paul Clayton wrote: > Anybody compiled HP-UX 11.00 plugins successfully? > > I have tried and no luck. It fails with > > Making all in plugins > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c check_disk.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c utils.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c popen.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c ./snprintf.c -o snprintf.o > -r libsnprintf.a snprintf.o > Make: Cannot load -r. Stop. > *** Error exit code 1 > > Stop. > *** Error exit code 1 > > Stop. > > Not being a C programmer I would not know where to start. > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > > > > ******************************************************************************************* > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > notify the sender by e-mail. In such a case reading, reproducing, printing or > further dissemination of this e-mail is strictly prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ****************************************************************************************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Fri Mar 14 16:52:12 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Fri, 14 Mar 2003 15:52:12 -0000 Subject: Compiling plugins on HPUX 11.00 Message-ID: <53104E20A25CD411B556009027E50636064D545B@pnnemp02.pn.egg.com> I think there are a few problems around compiling on HP-UX. Looks like you are missing the ar command - is there a special bit of HP-UX you need to install to get this? > -----Original Message----- > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > Sent: Friday, March 14, 2003 2:22 PM > To: Nagios Users (E-mail) > Subject: [Nagios-users] Compiling plugins on HPUX 11.00 > > Anybody compiled HP-UX 11.00 plugins successfully? > > I have tried and no luck. It fails with > > Making all in plugins > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c check_disk.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c utils.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c popen.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I. -I. -I. -I. -I.. -I../lib > -g -c ./snprintf.c -o snprintf.o > -r libsnprintf.a snprintf.o > Make: Cannot load -r. Stop. > *** Error exit code 1 > > Stop. > *** Error exit code 1 > > Stop. > > Not being a C programmer I would not know where to start. > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David.Yang at sfs.siemens.de Fri Mar 14 16:58:03 2003 From: David.Yang at sfs.siemens.de (Yang David) Date: Fri, 14 Mar 2003 16:58:03 +0100 Subject: statusmap Message-ID: <9F833A9C0C5B6D4EBC07658332E0FEB10110B886@mchw636x.mchw.siemens.de> Hi all thanx for your info. I've tried to use the parents field of the host definition. It works (--:) define host{ use generic-host ; Name of host template to use host_name myunix1 alias Sun Solaris Server address myunix.mydomain.de check_command check-host-alive parents parent_host_name max_check_attempts 10 notification_interval 120 notification_period 24x7 notification_options d,u,r } David -----Original Message----- From: Yang David Sent: Freitag, 14. M?rz 2003 12:24 To: nagios-users at lists.sourceforge.net Subject: statusmap Hi there, I've added coordinations values into hostextinfo file for the monitored hosts. Can somebody tell me, how can i get the hosts connected with lines on the status map? How can the relationship be determined between the drawed hosts on the map? cheers david ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Fri Mar 14 17:06:18 2003 From: David at feedroom.com (David Gitman) Date: Fri, 14 Mar 2003 11:06:18 -0500 Subject: Nagat Import Error Message-ID: When trying to import I'm receiving the error message "No nagios.cfg data found." Any ideas on why? -------------- next part -------------- An HTML attachment was scrubbed... URL: From rplewe at hpce.nec.com Fri Mar 14 17:11:29 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Fri, 14 Mar 2003 17:11:29 +0100 Subject: notify-by-email In-Reply-To: ; from David@feedroom.com on Fri, Mar 14, 2003 at 09:46:03AM -0500 References: Message-ID: <20030314171129.C1385@hpce.nec.com> On Fri, Mar 14, 2003 at 09:46:03AM -0500, David Gitman wrote: > > > > How can I change the from field in the notify-by-email > > > notification? > > > > You can change in the miscommand.cfg file, but What do you want to do > > ? > > Right now the email comes from [1]root at machine.doamin.com. I'd like to > change it from root to nagios. You're probably running Nagios as root. Run Nagios as user nagios instead (which is advisable in any case). Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Fri Mar 14 17:17:20 2003 From: benny at bennyvision.com (C. Bensend) Date: Fri, 14 Mar 2003 10:17:20 -0600 Subject: Compiling plugins on HPUX 11.00 In-Reply-To: <53104E20A25CD411B556009027E50636064D545B@pnnemp02.pn.egg.com>; from Ton.Voon@egg.com on Fri, Mar 14, 2003 at 03:52:12PM -0000 References: <53104E20A25CD411B556009027E50636064D545B@pnnemp02.pn.egg.com> Message-ID: <20030314101720.A9819@bennyvision.com> On Fri, Mar 14, 2003 at 03:52:12PM -0000, Voon, Ton wrote: > I think there are a few problems around compiling on HP-UX. Looks like you > are missing the ar command - is there a special bit of HP-UX you need to > install to get this? GNU binutils. http://hpux.cs.utah.edu/hppd/hpux/Gnu/binutils-2.11.2/ Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Fri Mar 14 17:20:52 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Fri, 14 Mar 2003 13:20:52 -0300 Subject: RES: NSClient and check_nt command In-Reply-To: References: Message-ID: Hugo: Try to look at counters.defs files, and compare the counters with the perfmon counters (using Performance Monitor). If they're different, just put the complete perfmon counters in that file (under the 0x416 section), and restart the service. If everything else fails, e-mail me and i will send a my counters.defs to you. Att., SMV -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 12:09 Para: Sandro Vaz; nagios-users at lists.sourceforge.net Assunto: RE: [Nagios-users] NSClient and check_nt command Stranger....when I use check_nt command with USEDDISKSPACE parameters I don't have problem. The messages in Event Log are : NSClient 1.0.7.1 has started. Language code : 0x0416. DebugLevel: 0 NSClient is reading C:\NSClient\Win_2k_XP_Bin\counters.defs for counters definitions. Language code : 0x0416 Thank You. Hugo -----Original Message----- From: Sandro Vaz [mailto:sandro at opservices.com.br] Sent: sexta-feira, 14 de mar?o de 2003 11:49 To: 'Hugo Rebello'; nagios-users at lists.sourceforge.net Subject: RES: [Nagios-users] NSClient and check_nt command The sintax seems OK, the problem is in the NSClient client. What's the version installed? Have any entry at Event Log? Specially one entry just after the install, which specifies the language detected? More info, please. Att., Sandro Vaz OpServices S?o Paulo - Brasil (11) 3023-4009 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 10:53 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] NSClient and check_nt command I have been problem with NSClient in Windows 2000 and some sintax of check_nt command. I put the check_nt in checkcommand.cfg file, but before I wanted test for command line. Example: ./check_nt -H 192.168.0.10 -p 1248 -v CPULOAD -l 5,80,90 NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&5 ./check_nt -H 192.168.0.10 -p 1248 -v MEMUSE -w 80 -c 90 Memory usage: total:0.00 Mb - used: 0.00 Mb (nan%) - free: 0.00 Mb (nan%) Could anyone help me ? I installed NSClient conform the readme.htm file. Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Fri Mar 14 17:44:22 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Fri, 14 Mar 2003 11:44:22 -0500 Subject: Problems with NRPE Client on 10.20 machine Message-ID: <5593DA408212D511B0910002A513501F01D2892C@phsexch20.mgh.harvard.edu> Hi Benny, I installed the NRPE client on a 10.20 system. Everything appeared to be fine on the server and the remote client. As a test, I configured the nrpe.cfg file to report disk usage via the check_disk command. Additionally, I ran the check_disk command manually and it gave me the correct feedback. After the changes were made to the services.cfg and inetd.conf files, I ran /usr/sbin/inetd -c to have the changes go into effect. The problem I am running into is when I try to have the Nagios server monitor the HP-UX box, I am getting a Connection Refused By Host error message. Any ideas? -----Original Message----- From: C. Bensend [mailto:benny at bennyvision.com] Sent: Thursday, March 13, 2003 5:22 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] NRPE depots availible for HP-UX Hey folks, I've gone ahead and built native HP-UX depots for NRPE. I have built them for 10.20, 11.00, and 11i. They're very simple, containing only the README from NRPE, as well as nrpe and check_nrpe binaries. Feel free to snag them from: http://www.bennyvision.com/projects/nagios/ Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Fri Mar 14 18:06:54 2003 From: David at feedroom.com (David Gitman) Date: Fri, 14 Mar 2003 12:06:54 -0500 Subject: Nagat Import Error Message-ID: I set the etc directory to permissions to 777 and is still doesn't work! The .dat file lives in the etc directory? [-d] -----Original Message----- From: Paul Clayton [mailto:paul.clayton at intec.co.za] Sent: Friday, March 14, 2003 11:42 AM To: David Gitman Subject: RE: [Nagios-users] Nagat Import Error David, Did you configure your local.inc with the correct path? Check that the /usr/local/nagios/etc directory is world writeable, as the .dat file will need to be created. I did this, and was able to import, althought I still received the spurious message of can't find nagios.cfg. cheers -----Original Message----- From: David Gitman [mailto:David at feedroom.com] Sent: Friday, March 14, 2003 6:06 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Nagat Import Error When trying to import I'm receiving the error message "No nagios.cfg data found." Any ideas on why? ************************************************************************ ******************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ************************************************************************ ****************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From benny at bennyvision.com Fri Mar 14 18:01:09 2003 From: benny at bennyvision.com ('C. Bensend') Date: Fri, 14 Mar 2003 11:01:09 -0600 Subject: Problems with NRPE Client on 10.20 machine In-Reply-To: <5593DA408212D511B0910002A513501F01D2892C@phsexch20.mgh.harvard.edu>; from AHKAPLAN@PARTNERS.ORG on Fri, Mar 14, 2003 at 11:44:22AM -0500 References: <5593DA408212D511B0910002A513501F01D2892C@phsexch20.mgh.harvard.edu> Message-ID: <20030314110109.B21011@bennyvision.com> On Fri, Mar 14, 2003 at 11:44:22AM -0500, Kaplan, Andrew H. wrote: > > The problem I am running into is when I try to have the Nagios server monitor > the HP-UX box, I am getting a > Connection Refused By Host error message. Any ideas? Unfortunately, no - I don't use NRPE anywhere. I do all of my checking via SSH. I simply packaged it up on HP-UX because I know a lot of people have had all sorts of problems with it. I know I've seen this come up in the past, however - do a little archive/Google searching, and I'm betting you can find the solution. Benny ps: I'm going to try to find the time to create a native HP-UX depot of Nagios sometime soon, also. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From johnmc at johnmc.org Fri Mar 14 18:02:17 2003 From: johnmc at johnmc.org (John McDonnell) Date: Fri, 14 Mar 2003 09:02:17 -0800 (PST) Subject: notify-by-email In-Reply-To: <20030314171129.C1385@hpce.nec.com> References: <20030314171129.C1385@hpce.nec.com> Message-ID: On the 14th day of March, Rasmus Plewe said to me: > You're probably running Nagios as root. Run Nagios as user nagios > instead (which is advisable in any case). So, what happens when you're running Nagios as user nagios and the emails all of a sudden change their from address from anonymous@ to another user? johnmc. -- . johnmc@ | bucketchild.net - +1-408-985-7992 (home) . . http:// | johnmc.org - +1-408-386-3549 (cell) . -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Fri Mar 14 18:41:49 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Fri, 14 Mar 2003 18:41:49 +0100 Subject: notify-by-email In-Reply-To: ; from johnmc@johnmc.org on Fri, Mar 14, 2003 at 09:02:17AM -0800 References: <20030314171129.C1385@hpce.nec.com> Message-ID: <20030314184149.D1385@hpce.nec.com> On Fri, Mar 14, 2003 at 09:02:17AM -0800, John McDonnell wrote: > On the 14th day of March, Rasmus Plewe said to me: > > > You're probably running Nagios as root. Run Nagios as user nagios > > instead (which is advisable in any case). > > So, what happens when you're running Nagios as user nagios and the emails > all of a sudden change their from address from anonymous@ to > another user? I would probably try to find out what I changed on the system, because there are no changes "all of a sudden". But the mails shouldn't have come from anonymous@ in the first place, running Nagios as nagios. In my experience, nagios_user (in nagios.cfg) defines the sender of the mails, everything else is MUA/MTA manipulation on the host and thus not directly related to Nagios. Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Fri Mar 14 19:29:31 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 14 Mar 2003 15:29:31 -0300 Subject: NSClient and check_nt command In-Reply-To: References: Message-ID: Please, Could you send me your counters.defs ? I tried to run the performance monitor, but I didn't to get found the perfmon counters. Thanks, Hugo -----Original Message----- From: Sandro Vaz (UOL) [mailto:sandromergvaz at uol.com.br] Sent: sexta-feira, 14 de mar?o de 2003 13:21 To: 'Hugo Rebello'; 'Sandro Vaz'; nagios-users at lists.sourceforge.net Subject: RES: [Nagios-users] NSClient and check_nt command Hugo: Try to look at counters.defs files, and compare the counters with the perfmon counters (using Performance Monitor). If they're different, just put the complete perfmon counters in that file (under the 0x416 section), and restart the service. If everything else fails, e-mail me and i will send a my counters.defs to you. Att., SMV -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 12:09 Para: Sandro Vaz; nagios-users at lists.sourceforge.net Assunto: RE: [Nagios-users] NSClient and check_nt command Stranger....when I use check_nt command with USEDDISKSPACE parameters I don't have problem. The messages in Event Log are : NSClient 1.0.7.1 has started. Language code : 0x0416. DebugLevel: 0 NSClient is reading C:\NSClient\Win_2k_XP_Bin\counters.defs for counters definitions. Language code : 0x0416 Thank You. Hugo -----Original Message----- From: Sandro Vaz [mailto:sandro at opservices.com.br] Sent: sexta-feira, 14 de mar?o de 2003 11:49 To: 'Hugo Rebello'; nagios-users at lists.sourceforge.net Subject: RES: [Nagios-users] NSClient and check_nt command The sintax seems OK, the problem is in the NSClient client. What's the version installed? Have any entry at Event Log? Specially one entry just after the install, which specifies the language detected? More info, please. Att., Sandro Vaz OpServices S?o Paulo - Brasil (11) 3023-4009 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 10:53 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] NSClient and check_nt command I have been problem with NSClient in Windows 2000 and some sintax of check_nt command. I put the check_nt in checkcommand.cfg file, but before I wanted test for command line. Example: ./check_nt -H 192.168.0.10 -p 1248 -v CPULOAD -l 5,80,90 NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&5 ./check_nt -H 192.168.0.10 -p 1248 -v MEMUSE -w 80 -c 90 Memory usage: total:0.00 Mb - used: 0.00 Mb (nan%) - free: 0.00 Mb (nan%) Could anyone help me ? I installed NSClient conform the readme.htm file. Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Fri Mar 14 19:41:11 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Fri, 14 Mar 2003 13:41:11 -0500 Subject: FW: Re: Problems with NRPE Client on 10.20 machine Message-ID: <5593DA408212D511B0910002A513501F01D2892F@phsexch20.mgh.harvard.edu> -----Original Message----- From: Kaplan, Andrew H. Sent: Friday, March 14, 2003 1:32 PM To: ''C. Bensend' ' Cc: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] Re: Problems with NRPE Client on 10.20 machine Benny, If I go with the check_by_ssh plugin, then the syntax on the Nagios server would be similar to the following: check_by_ssh!check_disk1 Am I correct? -----Original Message----- From: 'C. Bensend' To: 'nagios-users at lists.sourceforge.net' Sent: 3/14/03 12:01 PM Subject: [Nagios-users] Re: Problems with NRPE Client on 10.20 machine On Fri, Mar 14, 2003 at 11:44:22AM -0500, Kaplan, Andrew H. wrote: > > The problem I am running into is when I try to have the Nagios server monitor > the HP-UX box, I am getting a > Connection Refused By Host error message. Any ideas? Unfortunately, no - I don't use NRPE anywhere. I do all of my checking via SSH. I simply packaged it up on HP-UX because I know a lot of people have had all sorts of problems with it. I know I've seen this come up in the past, however - do a little archive/Google searching, and I'm betting you can find the solution. Benny ps: I'm going to try to find the time to create a native HP-UX depot of Nagios sometime soon, also. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Fri Mar 14 19:40:01 2003 From: benny at bennyvision.com (''C. Bensend' ') Date: Fri, 14 Mar 2003 12:40:01 -0600 Subject: Problems with NRPE Client on 10.20 machine In-Reply-To: <5593DA408212D511B0910002A513501F01D2892E@phsexch20.mgh.harvard.edu>; from AHKAPLAN@PARTNERS.ORG on Fri, Mar 14, 2003 at 01:32:20PM -0500 References: <5593DA408212D511B0910002A513501F01D2892E@phsexch20.mgh.harvard.edu> Message-ID: <20030314124001.B20261@bennyvision.com> On Fri, Mar 14, 2003 at 01:32:20PM -0500, Kaplan, Andrew H. wrote: > > If I go with the check_by_ssh plugin, then the syntax on the Nagios server > would be similar to the following: > > check_by_ssh!check_disk1 Um, I generally create a new test in checkcommands.cfg. For example: # 'check_mailq' command definition define command{ command_name check_mailq command_line $USER1$/check_by_ssh -l nagios -H $HOSTADDRESS$ -C '/home/nagios/check_mailq' } That way, I can just use 'check_mailq' in the service definition. Keep in mind - check_by_ssh takes more resources to fire off - SSH is, obviously, cryptographically intensive. If you're testing slow boxen, SSH might not be recommended. Please just reply to the list itself - I don't need multiple copies. :) Benny ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ "Discharge of a nuclear weapon shall be deemed a warlike act, even if accidental." -- My homeowners insurance policy ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dmaynard at outserv.net Fri Mar 14 20:08:14 2003 From: dmaynard at outserv.net (David Maynard) Date: Fri, 14 Mar 2003 13:08:14 -0600 Subject: NSClient and check_nt command Message-ID: <79BDC98308803B4EAE3B3CCFDE67823E0EBDD3@ausexch1.outserv.net> It might be a problem with the performance data in Windows itself. If you search the Microsoft knowledge base, there are lots of articles about the performance information becoming corrupted. Unfortunately, I haven't seen an easy solution that would apply in all cases. There is a relatively recent article at http://support.microsoft.com/?kbid=300956, but it involves fairly drastic (and potentially dangerous) changes. If that is your problem, you might be able to fix it by just reloading some of the performance counter information. Try searching on support.microsoft.com for "lodctr" since that is the command used to load the performance information. Unfortunately, it will probably not be easy to sort through all of the information. Also, try uninstalling nsclient, rebooting, then reinstalling nsclient. I have seen that fix some problems. Good luck. -dpm -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Friday, March 14, 2003 12:30 PM To: Sandro Vaz (UOL); 'Sandro Vaz'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] NSClient and check_nt command Please, Could you send me your counters.defs ? I tried to run the performance monitor, but I didn't to get found the perfmon counters. Thanks, Hugo -----Original Message----- From: Sandro Vaz (UOL) [mailto:sandromergvaz at uol.com.br] Sent: sexta-feira, 14 de mar?o de 2003 13:21 To: 'Hugo Rebello'; 'Sandro Vaz'; nagios-users at lists.sourceforge.net Subject: RES: [Nagios-users] NSClient and check_nt command Hugo: Try to look at counters.defs files, and compare the counters with the perfmon counters (using Performance Monitor). If they're different, just put the complete perfmon counters in that file (under the 0x416 section), and restart the service. If everything else fails, e-mail me and i will send a my counters.defs to you. Att., SMV -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 12:09 Para: Sandro Vaz; nagios-users at lists.sourceforge.net Assunto: RE: [Nagios-users] NSClient and check_nt command Stranger....when I use check_nt command with USEDDISKSPACE parameters I don't have problem. The messages in Event Log are : NSClient 1.0.7.1 has started. Language code : 0x0416. DebugLevel: 0 NSClient is reading C:\NSClient\Win_2k_XP_Bin\counters.defs for counters definitions. Language code : 0x0416 Thank You. Hugo -----Original Message----- From: Sandro Vaz [mailto:sandro at opservices.com.br] Sent: sexta-feira, 14 de mar?o de 2003 11:49 To: 'Hugo Rebello'; nagios-users at lists.sourceforge.net Subject: RES: [Nagios-users] NSClient and check_nt command The sintax seems OK, the problem is in the NSClient client. What's the version installed? Have any entry at Event Log? Specially one entry just after the install, which specifies the language detected? More info, please. Att., Sandro Vaz OpServices S?o Paulo - Brasil (11) 3023-4009 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Hugo Rebello Enviada em: sexta-feira, 14 de mar?o de 2003 10:53 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] NSClient and check_nt command I have been problem with NSClient in Windows 2000 and some sintax of check_nt command. I put the check_nt in checkcommand.cfg file, but before I wanted test for command line. Example: ./check_nt -H 192.168.0.10 -p 1248 -v CPULOAD -l 5,80,90 NSClient - ERROR:Malformed request or internal error. Check EventLog:None&2&5 ./check_nt -H 192.168.0.10 -p 1248 -v MEMUSE -w 80 -c 90 Memory usage: total:0.00 Mb - used: 0.00 Mb (nan%) - free: 0.00 Mb (nan%) Could anyone help me ? I installed NSClient conform the readme.htm file. Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nemir at hotmail.com Sat Mar 15 14:57:05 2003 From: nemir at hotmail.com (nemir nemiria) Date: Sat, 15 Mar 2003 13:57:05 +0000 Subject: Check Citrix has limitations....? Message-ID: Hiya, I can't seem to get check_citrix to work for all my published apps. It seems to only report about 26 of them from the master browser. Sadly, I have a few more than that. Well, I have a lot more than that. More like 526. Don't ask, I am sure you don't wanna know. ;-p I don't mind only checking the status of a single application, as that is enough to prove there is no problem with the the ICA protocol or the browse service of my farm. It is just not entirely ideal. I also want to know what I can do to check the status of a citrix server that has no published apps. I have a citrix server that everyone gets a desktop login to. As a short term solution I have published notepad, and this works fine. Just that again, it isn't totally ideal. It is also highly possuble that I am getting something wrong. I couldn't find any docs for this when I downloaded it... TIA Nemir _________________________________________________________________ Hotmail now available on Australian mobile phones. Go to http://ninemsn.com.au/mobilecentral/hotmail_mobile.asp ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gert.lindstrom at brevik.nu Sat Mar 15 16:40:29 2003 From: gert.lindstrom at brevik.nu (Gert) Date: 15 Mar 2003 15:40:29 -0000 Subject: NSClient In-Reply-To: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> References: <20030312204702.29965.qmail@pod-163.dolphin-server.co.uk> Message-ID: <20030315154029.10410.qmail@pod-163.dolphin-server.co.uk> Problem solved. It seems that i cant get out wtahs in the $USER5$ variabel. I i write the password in the checkcommands file it all works fine. Can live with that for now on. Thanks for all the tips. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nemir at hotmail.com Sat Mar 15 18:59:35 2003 From: nemir at hotmail.com (nemir nemiria) Date: Sat, 15 Mar 2003 17:59:35 +0000 Subject: Check Citrix has limitations....? - Nah, it was my brain. Message-ID: Sorry for all the bother, I found the -L switch now. This lists all the published apps, beyond a single UDP packet's worth. Hope it wasn't too much of a waste of time for those on the list to read this.... My only excuse (such as it is) is that this is really late. Cha carlos _________________________________________________________________ MSN Instant Messenger now available on Australian mobile phones.?Go to http://ninemsn.com.au/mobilecentral/hotmail_messenger.asp ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sheken at top-consulting.net Sat Mar 15 19:24:55 2003 From: sheken at top-consulting.net (George Breahna) Date: Sat, 15 Mar 2003 13:24:55 -0500 Subject: Confusing notify_interval Message-ID: <001101c2eb20$2db56a60$2700a8c0@pulsar> Alright, I am trying to get Nagios to re-send an e-mail every 2 minutes. Here's what I gathered from the docs: the interval_length=60 is in seconds and it determines the standard 'time_unit' this means 1 time unit = 60 seconds = 1 minute now, the notify_interval in the services section says that the value there is showed in 'time unit lengths'. By default the sample config file had a notify_interval of 120 which, according to my understanding means 120minutes = 2hours. Since I want 2 minutes, I changed that to 2. But now Nagios log says that my notify_interval is smaller than my interval_length. Isn't he comparing apples and oranges ? I mean, one is seconds, the other is minutes. Is this a bug ? I am pretty sure that the 120 is 2hours since I don't get any more notifies of the host being down after the first one.. Any clues ? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From Fred.Albrecht at za.tiscali.com Sun Mar 16 00:51:42 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Sun, 16 Mar 2003 01:51:42 +0200 Subject: SNMP Discovery Message-ID: Ok Here's the script. It's rough (without comments), but serves its purpose for me. ------------------begin----------------- #!/usr/bin/perl use Socket; sub resolve_ipaddress { my ($address)=@_; my $name=""; return $address if (!($address =~ /^\d/)); open(O, "nslookup $address 2>>/dev/null|") or die "Could not do nslookup"; while () { next if (!(/^Name:/)); chomp; s/\s//g; ($ble,$name)=split(/:/, $_); last; } #close(O); return $name; } sub resolve_name { my ($address)=@_; my $ad=0; my $name=""; return $address if ($address =~ /^\d/); open(O, "nslookup $address 2>>/dev/null|") or die "Could not do nslookup"; while () { next if (!(/^Address:/)); $ad++; next if ($ad < 2); chomp; s/\s//g; ($ble, $name)=split(/:/, $_); last; } #close(O); return $name; } sub get_host_name { my ($address)=@_; my $ip; my $name; #is address and ipaddress? if ($address =~ /^\d/) { #does the ip resolve? $name=resolve_ipaddress($address); if ($name ne "") { return $name; } } return $address; } my %dependency=(); sub get_proper_router_name { my ($address)=@_; my $ip; my $name; #is address and ipaddress? if ($address =~ /^\d/) { #does the ip resolve? $name=resolve_ipaddress($address); if ($name ne "") { #does the name resolve? $ip=resolve_name($name); if ($ip ne "") { #to the same address? if ($ip eq $address) { return $name; } } } } return $address; } my %dependency=(); my %hostip=(); #my %router_exists_allready=(); open(ROUTERS, "$ARGV[0]") or die "Could not open $ARGV[0]"; while () { my @t=(); my @s=(); s/\s//g; next if (/^\#/); next if ($_ eq ""); ($router)=split(/:/, $_); print "Busy with router $router\n"; open(IN, "traceroute -m 10 -w 2 -q 1 $router 2>>/dev/null|") or die "Can't read"; while () { push @t, $_; $line=$_; next if (! ($line =~ /^\s\d/)); $line=~s/^\s//g; $line=~s/\s\s/ /g; $line=~s/\(//g; $line=~s/\)//g; print "$line"; @b=split(/\s/, $line); push @s, $b[2]; last if ($b[2] eq $router); last if ($b[1] eq "*"); } #close (IN); pop @s; push @s, $router; $prev=" "; foreach $host (@s) { print "Traceroute Busy with router $host\n"; $host_name=get_host_name($host); $hostip{$host_name}=$host; if ($host_name ne $host) { $ip=resolve_name($host_name); if ($ip ne "") { print "Router resolved to $host_name, replacing $host\n"; $hostip{$host_name}=$host_name; $host=$host_name; } else { $hostip{$host}=$host; } } # if (defined $router_exists_allready{$host}) # { # print "WARNING: Router $host has allready been added, IGNORING THIS INSTANCE\n"; # next; # } # $router_exists_allready{$host}=1; push @{$dependency{$host}},$prev; $prev=$host; } } print "==========================\n"; my $router_count=0; ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = localtime( time() ); open(HOSTS, ">rtg_hosts.cfg") or die "Could not create rtg_hosts.cfg"; printf HOSTS "# Generated %02d/%02d/%02d %02d:%02d by $0\n\n", $mon + 1, $mday, $year + 1900, $hour, $min; print HOSTS "define service {\n"; print HOSTS " name generic-client\n"; print HOSTS " use generic-service\n"; print HOSTS " check_command check-host-alive\n"; print HOSTS " register 0\n"; print HOSTS " max_check_attempts 36\n"; print HOSTS " notification_interval 0\n"; print HOSTS " active_checks_enabled 1\n"; print HOSTS " retry_check_interval 1\n"; print HOSTS "}\n\n"; open(HOSTGROUPS, ">rtg_hostgroups.cfg") or die "Could not create rtg_hostgroups.cfg"; printf HOSTGROUPS "# Generated %02d/%02d/%02d %02d:%02d by $0\n\n", $mon + 1, $mday, $year + 1900, $hour, $min; print HOSTGROUPS "define hostgroup {\n"; print HOSTGROUPS "hostgroup_name routers\n"; print HOSTGROUPS "alias routers\n"; print HOSTGROUPS "name routers\n"; print HOSTGROUPS "register 1\n"; print HOSTGROUPS "contact_groups NMSAdmin\n"; print HOSTGROUPS "members "; foreach $router (keys %dependency) { #print "$router<--->$dependency{$router}\n"; #print "$router<--->"; my %k=(); print HOSTS "define host {\n"; print HOSTS "\thost_name\t\t$router\n"; print HOSTS "\talias\t\t\t$router\n"; print HOSTS "\taddress\t\t\t$hostip{$router}\n"; print HOSTS "\tregister\t\t1\n"; print HOSTS "\tuse\t\t\tgeneric-router\n"; print HOSTS "\tcheck_command\t\tcheck-host-alive\n"; print "define host {\n"; print "\thost_name\t\t$router\n"; print "\talias\t\t\t$router\n"; print "\taddress\t\t\t$hostip{$router}\n"; print "\tregister\t\t1\n"; print "\tuse\t\t\tgeneric-router\n"; print "\tcheck_command\t\tcheck-host-alive\n"; $c=0; foreach $parent (@{$dependency{$router}}) { if (! defined $k{$parent}) { print HOSTS "\tparents\t\t\t" if (($c==0) && ($parent ne " ")); print "\tparents\t\t\t" if (($c==0) && ($parent ne " ")); $c++; if ($parent ne " ") { print "," if ($c > 1); print HOSTS "," if ($c > 1); print "$parent"; print HOSTS "$parent"; } $k{$parent}=1; } } print "\n"; print "}\n\n"; print HOSTS "\n"; print HOSTS "}\n\n"; print "define service {\n"; print "\tuse generic-router\n"; print "\thost_name $router\n"; print "\tservice_description PING\n"; print "\tcheck_command check-host-alive\n"; #print "\tactive_checks_enabled 0\n"; #print "\tpassive_checks_enabled 0\n"; print "}\n\n"; print HOSTS "define service {\n"; print HOSTS "\tuse generic-router\n"; print HOSTS "\thost_name $router\n"; print HOSTS "\tservice_description PING\n"; print HOSTS "\tcheck_command check-host-alive\n"; #print HOSTS "\tactive_checks_enabled 0\n"; #print HOSTS "\tpassive_checks_enabled 0\n"; print HOSTS "}\n\n"; $router_count++; print HOSTGROUPS "," if ($router_count > 1); print HOSTGROUPS "$router"; } close(HOSTS); print HOSTGROUPS "\n}\n\n"; close HOSTGROUPS; ----------end------------ Define another object file with the following in: define host { name generic-host ; The name of this host template - referenced in other host definit ions, used for template recursion/resolution register 0 notification_options d,u,r max_check_attempts 1 notifications_enabled 1 notification_interval 5 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 } define host { host_name generic-router name generic-router register 0 use generic-host ; The name of this host template - referenced in other host definit ions, used for template recursion/resolution max_check_attempts 1 notification_interval 5 notification_period 24x7 notification_options d,u,r notifications_enabled 1 checks_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 ------------ Store your list of router/host names one per line in a file. Pass the filename as argument to the script. The output gets written to stdout and a file called rtg_hosts.cfg. The hostgroups live in rtg_hostgroups.cfg. Note: the program rellys heavily on traceroute, your milleage might differ to mine. The code is provided as is, etc, etc etc. :) fred -----Original Message----- From: Dario B. Bestetti [mailto:dbestetti at opservices.com.br] Sent: 14 March 2003 03:59 To: Fred Albrecht; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SNMP Discovery Fred, can you send this program to the list ? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Fred Albrecht Sent: quinta-feira, 13 de mar?o de 2003 19:47 To: Subhendu Ghosh; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SNMP Discovery Well, I kinda did it the hard way. I supply the program I wrote with a list of addresses where my services live. Then I parse the output of the traceroute command to see how I get from my Nagios machine to my destination. The scrippy then writes my hosts.cfg file (with parents and all) and puts a default check_ping service in for each router along the way. Looks kinda nice when the end result is a nice statusmap all filled in for me (btw I'm lazy, that's why I do these things ;) -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: 13 March 2003 10:42 To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] SNMP Discovery On Thu, 13 Mar 2003, Samoied wrote: > Good afternoon, > > I've been testing Nagios here in the company and got great results in > the way it checks the hosts and show them and warn us about any > problem. > > I want to replace the whole What's Up system by Nagios, but there's > only one little problem that I have, and it is in the discovery. If > you in the list know about any way to do the discovery using SNMP, > since my whole network is configured under SNMP, and if there was any > way to make Nagios folow the links configured in each router I'd be > very thankful. > > I'm using nagios 1.0 and nagios-plugins-1.3.0-beta3 > > Greetings, > > There is no easy way to do snmp discovery for Nagios currently. BTW - nagios-plugins are a 1.3.0 release -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dbestetti at opservices.com.br Sun Mar 16 14:58:48 2003 From: dbestetti at opservices.com.br (Dario B. Bestetti) Date: Sun, 16 Mar 2003 10:58:48 -0300 Subject: SNMP Discovery In-Reply-To: References: Message-ID: <003201c2ebc4$2b84dc40$34fda8c0@dario> Thanks Fred. It's very useful. []s Dario. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Fred Albrecht Sent: s?bado, 15 de mar?o de 2003 20:52 To: dbestetti at opservices.com.br; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SNMP Discovery Ok Here's the script. It's rough (without comments), but serves its purpose for me. ------------------begin----------------- #!/usr/bin/perl use Socket; sub resolve_ipaddress { my ($address)=@_; my $name=""; return $address if (!($address =~ /^\d/)); open(O, "nslookup $address 2>>/dev/null|") or die "Could not do nslookup"; while () { next if (!(/^Name:/)); chomp; s/\s//g; ($ble,$name)=split(/:/, $_); last; } #close(O); return $name; } sub resolve_name { my ($address)=@_; my $ad=0; my $name=""; return $address if ($address =~ /^\d/); open(O, "nslookup $address 2>>/dev/null|") or die "Could not do nslookup"; while () { next if (!(/^Address:/)); $ad++; next if ($ad < 2); chomp; s/\s//g; ($ble, $name)=split(/:/, $_); last; } #close(O); return $name; } sub get_host_name { my ($address)=@_; my $ip; my $name; #is address and ipaddress? if ($address =~ /^\d/) { #does the ip resolve? $name=resolve_ipaddress($address); if ($name ne "") { return $name; } } return $address; } my %dependency=(); sub get_proper_router_name { my ($address)=@_; my $ip; my $name; #is address and ipaddress? if ($address =~ /^\d/) { #does the ip resolve? $name=resolve_ipaddress($address); if ($name ne "") { #does the name resolve? $ip=resolve_name($name); if ($ip ne "") { #to the same address? if ($ip eq $address) { return $name; } } } } return $address; } my %dependency=(); my %hostip=(); #my %router_exists_allready=(); open(ROUTERS, "$ARGV[0]") or die "Could not open $ARGV[0]"; while () { my @t=(); my @s=(); s/\s//g; next if (/^\#/); next if ($_ eq ""); ($router)=split(/:/, $_); print "Busy with router $router\n"; open(IN, "traceroute -m 10 -w 2 -q 1 $router 2>>/dev/null|") or die "Can't read"; while () { push @t, $_; $line=$_; next if (! ($line =~ /^\s\d/)); $line=~s/^\s//g; $line=~s/\s\s/ /g; $line=~s/\(//g; $line=~s/\)//g; print "$line"; @b=split(/\s/, $line); push @s, $b[2]; last if ($b[2] eq $router); last if ($b[1] eq "*"); } #close (IN); pop @s; push @s, $router; $prev=" "; foreach $host (@s) { print "Traceroute Busy with router $host\n"; $host_name=get_host_name($host); $hostip{$host_name}=$host; if ($host_name ne $host) { $ip=resolve_name($host_name); if ($ip ne "") { print "Router resolved to $host_name, replacing $host\n"; $hostip{$host_name}=$host_name; $host=$host_name; } else { $hostip{$host}=$host; } } # if (defined $router_exists_allready{$host}) # { # print "WARNING: Router $host has allready been added, IGNORING THIS INSTANCE\n"; # next; # } # $router_exists_allready{$host}=1; push @{$dependency{$host}},$prev; $prev=$host; } } print "==========================\n"; my $router_count=0; ( $sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst ) = localtime( time() ); open(HOSTS, ">rtg_hosts.cfg") or die "Could not create rtg_hosts.cfg"; printf HOSTS "# Generated %02d/%02d/%02d %02d:%02d by $0\n\n", $mon + 1, $mday, $year + 1900, $hour, $min; print HOSTS "define service {\n"; print HOSTS " name generic-client\n"; print HOSTS " use generic-service\n"; print HOSTS " check_command check-host-alive\n"; print HOSTS " register 0\n"; print HOSTS " max_check_attempts 36\n"; print HOSTS " notification_interval 0\n"; print HOSTS " active_checks_enabled 1\n"; print HOSTS " retry_check_interval 1\n"; print HOSTS "}\n\n"; open(HOSTGROUPS, ">rtg_hostgroups.cfg") or die "Could not create rtg_hostgroups.cfg"; printf HOSTGROUPS "# Generated %02d/%02d/%02d %02d:%02d by $0\n\n", $mon + 1, $mday, $year + 1900, $hour, $min; print HOSTGROUPS "define hostgroup {\n"; print HOSTGROUPS "hostgroup_name routers\n"; print HOSTGROUPS "alias routers\n"; print HOSTGROUPS "name routers\n"; print HOSTGROUPS "register 1\n"; print HOSTGROUPS "contact_groups NMSAdmin\n"; print HOSTGROUPS "members "; foreach $router (keys %dependency) { #print "$router<--->$dependency{$router}\n"; #print "$router<--->"; my %k=(); print HOSTS "define host {\n"; print HOSTS "\thost_name\t\t$router\n"; print HOSTS "\talias\t\t\t$router\n"; print HOSTS "\taddress\t\t\t$hostip{$router}\n"; print HOSTS "\tregister\t\t1\n"; print HOSTS "\tuse\t\t\tgeneric-router\n"; print HOSTS "\tcheck_command\t\tcheck-host-alive\n"; print "define host {\n"; print "\thost_name\t\t$router\n"; print "\talias\t\t\t$router\n"; print "\taddress\t\t\t$hostip{$router}\n"; print "\tregister\t\t1\n"; print "\tuse\t\t\tgeneric-router\n"; print "\tcheck_command\t\tcheck-host-alive\n"; $c=0; foreach $parent (@{$dependency{$router}}) { if (! defined $k{$parent}) { print HOSTS "\tparents\t\t\t" if (($c==0) && ($parent ne " ")); print "\tparents\t\t\t" if (($c==0) && ($parent ne " ")); $c++; if ($parent ne " ") { print "," if ($c > 1); print HOSTS "," if ($c > 1); print "$parent"; print HOSTS "$parent"; } $k{$parent}=1; } } print "\n"; print "}\n\n"; print HOSTS "\n"; print HOSTS "}\n\n"; print "define service {\n"; print "\tuse generic-router\n"; print "\thost_name $router\n"; print "\tservice_description PING\n"; print "\tcheck_command check-host-alive\n"; #print "\tactive_checks_enabled 0\n"; #print "\tpassive_checks_enabled 0\n"; print "}\n\n"; print HOSTS "define service {\n"; print HOSTS "\tuse generic-router\n"; print HOSTS "\thost_name $router\n"; print HOSTS "\tservice_description PING\n"; print HOSTS "\tcheck_command check-host-alive\n"; #print HOSTS "\tactive_checks_enabled 0\n"; #print HOSTS "\tpassive_checks_enabled 0\n"; print HOSTS "}\n\n"; $router_count++; print HOSTGROUPS "," if ($router_count > 1); print HOSTGROUPS "$router"; } close(HOSTS); print HOSTGROUPS "\n}\n\n"; close HOSTGROUPS; ----------end------------ Define another object file with the following in: define host { name generic-host ; The name of this host template - referenced in other host definit ions, used for template recursion/resolution register 0 notification_options d,u,r max_check_attempts 1 notifications_enabled 1 notification_interval 5 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 } define host { host_name generic-router name generic-router register 0 use generic-host ; The name of this host template - referenced in other host definit ions, used for template recursion/resolution max_check_attempts 1 notification_interval 5 notification_period 24x7 notification_options d,u,r notifications_enabled 1 checks_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 ------------ Store your list of router/host names one per line in a file. Pass the filename as argument to the script. The output gets written to stdout and a file called rtg_hosts.cfg. The hostgroups live in rtg_hostgroups.cfg. Note: the program rellys heavily on traceroute, your milleage might differ to mine. The code is provided as is, etc, etc etc. :) fred -----Original Message----- From: Dario B. Bestetti [mailto:dbestetti at opservices.com.br] Sent: 14 March 2003 03:59 To: Fred Albrecht; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SNMP Discovery Fred, can you send this program to the list ? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Fred Albrecht Sent: quinta-feira, 13 de mar?o de 2003 19:47 To: Subhendu Ghosh; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] SNMP Discovery Well, I kinda did it the hard way. I supply the program I wrote with a list of addresses where my services live. Then I parse the output of the traceroute command to see how I get from my Nagios machine to my destination. The scrippy then writes my hosts.cfg file (with parents and all) and puts a default check_ping service in for each router along the way. Looks kinda nice when the end result is a nice statusmap all filled in for me (btw I'm lazy, that's why I do these things ;) -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: 13 March 2003 10:42 To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] SNMP Discovery On Thu, 13 Mar 2003, Samoied wrote: > Good afternoon, > > I've been testing Nagios here in the company and got great results in > the way it checks the hosts and show them and warn us about any > problem. > > I want to replace the whole What's Up system by Nagios, but there's > only one little problem that I have, and it is in the discovery. If > you in the list know about any way to do the discovery using SNMP, > since my whole network is configured under SNMP, and if there was any > way to make Nagios folow the links configured in each router I'd be > very thankful. > > I'm using nagios 1.0 and nagios-plugins-1.3.0-beta3 > > Greetings, > > There is no easy way to do snmp discovery for Nagios currently. BTW - nagios-plugins are a 1.3.0 release -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From teomihsav at yahoo.com Sun Mar 16 22:28:35 2003 From: teomihsav at yahoo.com (mteohari) Date: 16 Mar 2003 21:28:35 -0000 Subject: RES: Re: How to enLarge statusmap In-Reply-To: References: Message-ID: <20030316212835.28398.qmail@pod-163.dolphin-server.co.uk> Hello, it's easy, you have to use "parents".The parents have to be involved with some host that will be a "root" and then the cord will be established between "root" in this example "Wireless1" and Wireless-IO. in hosts.cfg define host{ use generic-host ; Name of host template to use host_name Wireless-IO alias Wireless #1 address 10.2.50.66 ---> parents Wireless1 check_command check-host-alive max_check_attempts 10 notification_interval 120 notification_period 24x7 notification_options d,u,r } I hope this will be helpful . bye __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bliwanag at yahoo.com Mon Mar 17 07:00:32 2003 From: bliwanag at yahoo.com (bernie liwanag) Date: Sun, 16 Mar 2003 22:00:32 -0800 (PST) Subject: oracle plugins In-Reply-To: <3E26CE2101D682CA@mel-rta6.wanadoo.fr> (added by postmaster@wanadoo.fr) References: <3E26CE2101D682CA@mel-rta6.wanadoo.fr> Message-ID: <20030317060032.89088.qmail@web40604.mail.yahoo.com> Sebastien, We use NT server for the Oracle database and applications and we use Linux Red Hat for the nagios monitoring. Thanks! Bernie --- Sebastien MAHIEUX wrote: > Whats kind of server do you use ? NT, UNIX ? > ----- Original Message ----- > From: "bernie liwanag" > To: > Sent: Tuesday, March 11, 2003 12:16 PM > Subject: [Nagios-users] oracle plugins > > > > Anyone can help me on how to check oracle server > > status? > > > > What are the pre-requisites for using check_oracle > > plugins? > > > > What is check_ora_table_space.pl and > > check_oracle_instance.pl? > > > > Thanks a lot! > > Bernie > > > > > > > > __________________________________________________ > > Do you Yahoo!? > > Yahoo! Web Hosting - establish your business > online > > http://webhosting.yahoo.com > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version > (-v) and OS when > reporting any issue. > > ::: Messages without supporting info will risk > being sent to /dev/null > > __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stanislaw.szczygiel at amerbank.pl Mon Mar 17 09:12:18 2003 From: stanislaw.szczygiel at amerbank.pl (=?iso-8859-2?Q?Stanis=B3aw_Szczygie=B3?=) Date: Mon, 17 Mar 2003 09:12:18 +0100 Subject: ODP: how to compile check_cluster? Message-ID: <14B0262CF202D311A9B10008C7FA43E3016B43FB@ACO_NT_I> Thanj for mail, I've manage myself. It seems to be not too hard, even for me, I compiled last time something maybe 10 years ago... Ok, this is receipt: first compile sorce: cc check_cluster.c after few seconds you will see shell prompt, and in directory you find a file "a.out". So this is time for second step: ld -o check_cluster a.out and in a moment you receive file "check_cluster" (the name is after -o option). Dependly on your setting, it may be necessary to change access rights (chmode 755 check_cluster - for example). And that's it. End. Everything should work - I have no problems and check_cluster fulfill all my needs. Regards, Stanley -----Oryginalna wiadomo??----- Od: Williams, P. Lane [mailto:Lane.Williams at jhuapl.edu] Wys?ano: 14 marca 2003 19:30 Do: 'Stanislaw Szczygiel' Temat: RE: [Nagios-users] how to compile check_cluster? Has anyone helped you on this matter? I am also trying to compile this plugin with no luck. Lane -----Original Message----- From: Stanislaw Szczygiel [mailto:stanislaw.szczygiel at amerbank.pl] Sent: Monday, March 10, 2003 10:05 AM To: 'nagios-users at lists.sourceforge.net' Subject: [Nagios-users] how to compile check_cluster? Hello, Please help... Im not programmer, Im just user. Can anyone help me how to compile check_cluster? I found the source in CVS, what I should do now? There is no help in docs, or on mailing lists... Stanis?aw Szczygie? ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nemir at hotmail.com Mon Mar 17 10:41:36 2003 From: nemir at hotmail.com (nemir nemiria) Date: Mon, 17 Mar 2003 09:41:36 +0000 Subject: AW: Check Citrix has limitations....? - Nah, it wa s my brain. Message-ID: Sure... download the check_citrix plugin to your system. >From there, double check that it will function by running it independently of your nagios with the following command. ./check_citrix -C citrixsvr -P publishedapp It should return with a response something like: Ok. Citrix master browser "IP Address of citrixsvr" reported that the published application "publishedapp" is available. Or it will return: Failed. "publishedapp" not found in list of published applications "list,of,published,apps,found,comma,separated" If it returns the latter, but only shows up the first few applications try the command with an extra -L switch as the following example: ./check_citrix -C citrixsvr -P publishedapp -L IF you get a report that says: Failed. No response to helo datagram (master browser query) from citrixsvr. It means that the monitoring host cannot connect to the specified citrix server over UDP port 1604. Check your firewall rulesets on all systems. check that the citrix service is running on the destination citrix server. Once you confirm that the check_citrix tool will work manually, just add the rule(s) into your nagios services.cfg file. I hope this has been of some assistance. Please note, citrixsvr should be the name of your citrix server. publishedapp should be the name of your published application on the citrix server and this is CaSe SeNsiTivE. I have an entry for all my citrix servers in the /etc/hosts file on the monitoring host. I suspect this may be important. ;-) Best regards, nemir >From: Barst Michael >To: 'nemir nemiria' >Subject: AW: [Nagios-users] Check Citrix has limitations....? - Nah, it >wa s my brain. >Date: Mon, 17 Mar 2003 07:00:26 +0100 > >HI, > >could you please tell me how to monitor the published apps under metaframe >XP or point me in the right direction? > >thanks, > >Michael > > > -----Urspr?ngliche Nachricht----- > > Von: nemir nemiria [mailto:nemir at hotmail.com] > > Gesendet: Samstag, 15. M?rz 2003 19:00 > > An: nagios-users at lists.sourceforge.net > > Betreff: [Nagios-users] Check Citrix has limitations....? - > > Nah, it was > > my brain. > > > > > > > > > > Sorry for all the bother, I found the -L switch now. This > > lists all the > > published apps, beyond a single UDP packet's worth. > > > > Hope it wasn't too much of a waste of time for those on the > > list to read > > this.... > > > > My only excuse (such as it is) is that this is really late. > > > > Cha > > > > carlos > > > > _________________________________________________________________ > > MSN Instant Messenger now available on Australian mobile > > phones.?Go to > > http://ninemsn.com.au/mobilecentral/hotmail_messenger.asp > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > _________________________________________________________________ MSN Instant Messenger now available on Australian mobile phones.?Go to http://ninemsn.com.au/mobilecentral/hotmail_messenger.asp ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From yewkwee-tan at axvantage.com Mon Mar 17 10:46:05 2003 From: yewkwee-tan at axvantage.com (Tan Yew Kwee) Date: Mon, 17 Mar 2003 17:46:05 +0800 Subject: SNMP Message-ID: <002001c2ec6a$07bcfdf0$5601010a@YEWKWEE> Dear all members, Thanks for your valuable information and guidence given on this monitoring software. May I know is there a plug in available to monitor a checkpoint firewall? Thanks/regards Yew Kwee -------------- next part -------------- An HTML attachment was scrubbed... URL: From nemir at hotmail.com Mon Mar 17 11:29:24 2003 From: nemir at hotmail.com (nemir nemiria) Date: Mon, 17 Mar 2003 10:29:24 +0000 Subject: SNMP Message-ID: MOst people set their checkpoint firewalls up to be "invisible" and so there would be no way of monitoring them. Assuming this is not the case with your firewall, I don't know what sort of monitoring you would want to be doing with it beyond the basic standard plugins (things like ping and diskfree) PErhaps more information about what you are wanting if it is more than that...? Best regards, Nemir >From: "Tan Yew Kwee" >Reply-To: "Tan Yew Kwee" >To: >Subject: [Nagios-users] SNMP >Date: Mon, 17 Mar 2003 17:46:05 +0800 > >Dear all members, >Thanks for your valuable information and guidence given on this monitoring >software. May I know is there a plug in available to monitor a checkpoint >firewall? >Thanks/regards >Yew Kwee _________________________________________________________________ Hotmail now available on Australian mobile phones. Go to http://ninemsn.com.au/mobilecentral/hotmail_mobile.asp ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Mon Mar 17 11:27:54 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Mon, 17 Mar 2003 10:27:54 +0000 Subject: SNMP In-Reply-To: <002001c2ec6a$07bcfdf0$5601010a@YEWKWEE> References: <002001c2ec6a$07bcfdf0$5601010a@YEWKWEE> Message-ID: Hey there, I dont have a specific program to monitor mib variables, but once you have switched SNMP on at the firewall (which you will need to really lock down) you can just walk the mibs from your Linux box and then decide which you want to monitor. Personally I just check that telnet works to the firewall . Matthew "Tan Yew Kwee" Sent by: nagios-users-admin at lists.sourceforge.net 17/03/2003 09:46 Please respond to "Tan Yew Kwee" To cc Subject [Nagios-users] SNMP Dear all members, Thanks for your valuable information and guidence given on this monitoring software. May I know is there a plug in available to monitor a checkpoint firewall? Thanks/regards Yew Kwee _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. -------------- next part -------------- An HTML attachment was scrubbed... URL: From barst at goethe.de Mon Mar 17 12:55:53 2003 From: barst at goethe.de (Barst Michael) Date: Mon, 17 Mar 2003 12:55:53 +0100 Subject: AW: AW: Check Citrix has limitations....? - Nah, i t wa s my brain. Message-ID: <7675333BBCD5D511BC2A00005A42A8BB09BDEF@MUC-ZVS-MAIL1> Thanks for the fast response! But could you please tell me where to download the plugin - I didn't find 'check_citrix nagios' on google. M;ichael > -----Urspr?ngliche Nachricht----- > Von: nemir nemiria [mailto:nemir at hotmail.com] > Gesendet: Montag, 17. M?rz 2003 10:42 > An: barst at goethe.de; nagios-users at lists.sourceforge.net > Betreff: Re: AW: [Nagios-users] Check Citrix has > limitations....? - Nah, > it wa s my brain. > > > Sure... > > download the check_citrix plugin to your system. > > From there, double check that it will function by running it > independently > of your nagios with the following command. > > ./check_citrix -C citrixsvr -P publishedapp > > It should return with a response something like: > > Ok. Citrix master browser "IP Address of citrixsvr" reported that the > published application "publishedapp" is available. > > Or it will return: > > Failed. "publishedapp" not found in list of published applications > "list,of,published,apps,found,comma,separated" > > If it returns the latter, but only shows up the first few > applications try > the command with an extra -L switch as the following example: > > ./check_citrix -C citrixsvr -P publishedapp -L > > IF you get a report that says: > > Failed. No response to helo datagram (master browser query) > from citrixsvr. > > It means that the monitoring host cannot connect to the > specified citrix > server over UDP port 1604. Check your firewall rulesets on > all systems. > check that the citrix service is running on the destination > citrix server. > > Once you confirm that the check_citrix tool will work > manually, just add > the rule(s) into your nagios services.cfg file. > > > I hope this has been of some assistance. > > > Please note, citrixsvr should be the name of your citrix server. > publishedapp should be the name of your published application > on the citrix > server and this is CaSe SeNsiTivE. I have an entry for all > my citrix > servers in the /etc/hosts file on the monitoring host. I > suspect this may > be important. ;-) > > > Best regards, > > nemir > > >From: Barst Michael > >To: 'nemir nemiria' > >Subject: AW: [Nagios-users] Check Citrix has > limitations....? - Nah, it > >wa s my brain. > >Date: Mon, 17 Mar 2003 07:00:26 +0100 > > > >HI, > > > >could you please tell me how to monitor the published apps > under metaframe > >XP or point me in the right direction? > > > >thanks, > > > >Michael > > > > > -----Urspr?ngliche Nachricht----- > > > Von: nemir nemiria [mailto:nemir at hotmail.com] > > > Gesendet: Samstag, 15. M?rz 2003 19:00 > > > An: nagios-users at lists.sourceforge.net > > > Betreff: [Nagios-users] Check Citrix has limitations....? - > > > Nah, it was > > > my brain. > > > > > > > > > > > > > > > Sorry for all the bother, I found the -L switch now. This > > > lists all the > > > published apps, beyond a single UDP packet's worth. > > > > > > Hope it wasn't too much of a waste of time for those on the > > > list to read > > > this.... > > > > > > My only excuse (such as it is) is that this is really late. > > > > > > Cha > > > > > > carlos > > > > > > _________________________________________________________________ > > > MSN Instant Messenger now available on Australian mobile > > > phones.?Go to > > > http://ninemsn.com.au/mobilecentral/hotmail_messenger.asp > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by:Crypto Challenge is now open! > > > Get cracking and register here for some mind boggling fun and > > > the chance of winning an Apple iPod: > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin version (-v) and OS > > > when reporting any issue. > > > ::: Messages without supporting info will risk being sent > to /dev/null > > > > > > _________________________________________________________________ > MSN Instant Messenger now available on Australian mobile > phones.?Go to > http://ninemsn.com.au/mobilecentral/hotmail_messenger.asp > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mriedel at neuearbeit.de Mon Mar 17 13:47:52 2003 From: mriedel at neuearbeit.de (Marko Riedel) Date: Mon, 17 Mar 2003 13:47:52 +0100 (CET) Subject: NSClient & check_nt & FILEAGE Message-ID: <15989.50168.414208.257350@linuxsexi.nasttg> Hi all, I noticed that check_nt would always reply with "could not parse arguments" when asked to fetch the FILEAGE statistic. I looked at the source code and it seems that "FILEAGE" is not implemented. Is this correct? The version is check_nt (nagios-plugins 1.3.0-alpha1) 1.1.1.1 Best regards, -- +------------------------------------------------------------+ | Marko Riedel, EDV Neue Arbeit gGmbH, mriedel at neuearbeit.de | | http://www.geocities.com/markoriedelde/index.html | +------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Mon Mar 17 14:27:11 2003 From: David at feedroom.com (David Gitman) Date: Mon, 17 Mar 2003 08:27:11 -0500 Subject: Nagat Import Error Message-ID: Of course. [-d] -----Original Message----- From: Cristian DiMalio [mailto:cristian.dimalio at lisit.it] Sent: Saturday, March 15, 2003 5:11 AM To: David Gitman Subject: R: [Nagios-users] Nagat Import Error Have you change path in nagat\local.inc # Nagat (NGT) main configuration (mind ending slashes /) define("NGT_ROOT","/usr/local/nagat/"); // where Nagat is installed define("NGT_LIB",NGT_ROOT); // location of inc-files (exept local and sticky) define("NGT_WEBROOT","/nagat"); // URL of Nagat # Location of Nagios (mind ending slashes); define("NAGIOS_PREFIX","/usr/local/nagios/"); define("NAGIOS_ETC",NAGIOS_PREFIX."etc/"); --- -----Messaggio originale----- Da: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Per conto di David Gitman Inviato: venerd? 14 marzo 2003 17.06 A: nagios-users at lists.sourceforge.net Oggetto: [Nagios-users] Nagat Import Error When trying to import I'm receiving the error message "No nagios.cfg data found." Any ideas on why? -------------- next part -------------- An HTML attachment was scrubbed... URL: From sandro at opservices.com.br Mon Mar 17 14:34:41 2003 From: sandro at opservices.com.br (Sandro Vaz) Date: Mon, 17 Mar 2003 10:34:41 -0300 Subject: "Error" in service notifications when a host goes OK Message-ID: Hi list, as usual we have a problem... We are receiving "Service Recovery" notifications, soon after a host comes back from a "host down" state, without receive the "Service Critical" notification (see attached notifications e-mails). No problem at host notifications. No secong Nagios instance running. Version is Nagios 1.6b. No dependencies set. Some idea about the problem? Below some of our *.cfg files. Hosts.cfg ********* define host{ name generic-host-giozza notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 register 0 max_check_attempts 10 notification_interval 0 notification_period 24x7 notification_options d,r } define host{ use generic-host-giozza host_name giozza-adslbrt-plt-01 parents paelxmg1 alias Giozza Pelotas address giozza-adslbrt-plt-01.opnet.opservices.com.br check_command check-host-alive-ssh } services.cfg ************ define service{ name generic-service-giozza active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 is_volatile 0 check_period 24x7 max_check_attempts 10 normal_check_interval 5 retry_check_interval 1 notification_interval 0 notification_options c,r contact_groups opnet-admins,callcenter,giozza-admins notification_period 24x7 register 0 } define service{ use generic-service-giozza host_name giozza-adslbrt-plt-01 service_description Disk1 check_command check_nrpe_disk1 } define service{ use generic-service-giozza host_name giozza-adslbrt-plt-01 service_description Disk2 check_command check_nrpe_disk2 } --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.462 / Virus Database: 261 - Release Date: 13/3/2003 -------------- next part -------------- An embedded message was scrubbed... From: Subject: OpMon Alert - Host giozza-adslbrt-plt-01 is UP! Date: Mon, 17 Mar 2003 10:15:37 -0300 Size: 2461 URL: -------------- next part -------------- An embedded message was scrubbed... From: Subject: ** OpMon Alert - RECOVERY - Giozza Pelotas/Disk2 is OK ** Date: Mon, 17 Mar 2003 10:16:47 -0300 Size: 2677 URL: -------------- next part -------------- An embedded message was scrubbed... From: Subject: ** OpMon Alert - RECOVERY - Giozza Pelotas/Disk1 is OK ** Date: Mon, 17 Mar 2003 10:16:07 -0300 Size: 2675 URL: From David at feedroom.com Mon Mar 17 15:10:09 2003 From: David at feedroom.com (David Gitman) Date: Mon, 17 Mar 2003 09:10:09 -0500 Subject: notify-by-email Message-ID: This is a fresh install. [-d] -----Original Message----- From: Rasmus Plewe [mailto:rplewe at hpce.nec.com] Sent: Friday, March 14, 2003 12:42 PM To: Nagios users list Subject: Re: [Nagios-users] notify-by-email On Fri, Mar 14, 2003 at 09:02:17AM -0800, John McDonnell wrote: > On the 14th day of March, Rasmus Plewe said to me: > > > You're probably running Nagios as root. Run Nagios as user nagios > > instead (which is advisable in any case). > > So, what happens when you're running Nagios as user nagios and the emails > all of a sudden change their from address from anonymous@ to > another user? I would probably try to find out what I changed on the system, because there are no changes "all of a sudden". But the mails shouldn't have come from anonymous@ in the first place, running Nagios as nagios. In my experience, nagios_user (in nagios.cfg) defines the sender of the mails, everything else is MUA/MTA manipulation on the host and thus not directly related to Nagios. Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Mon Mar 17 15:09:44 2003 From: David at feedroom.com (David Gitman) Date: Mon, 17 Mar 2003 09:09:44 -0500 Subject: notify-by-email Message-ID: I have. [-d] -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Friday, March 14, 2003 9:55 AM To: David Gitman; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] notify-by-email Do you installed Nagios with user and group nagios ? You need to compile Nagios using user and group nagios. -----Original Message----- From: David Gitman [mailto:David at feedroom.com] Sent: sexta-feira, 14 de mar?o de 2003 11:46 To: Hugo Rebello; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] notify-by-email Right now the email comes from root at machine.doamin.com. I'd like to change it from root to nagios. [-d] -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Friday, March 14, 2003 9:41 AM To: David Gitman; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] notify-by-email You can change in the miscommand.cfg file, but What do you want to do ? Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of David Gitman Sent: sexta-feira, 14 de mar?o de 2003 11:10 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] notify-by-email How can I change the from field in the notify-by-email notification? -------------- next part -------------- An HTML attachment was scrubbed... URL: From David at feedroom.com Mon Mar 17 15:09:32 2003 From: David at feedroom.com (David Gitman) Date: Mon, 17 Mar 2003 09:09:32 -0500 Subject: notify-by-email Message-ID: No emails are being sent by root at hostname.domain.com not nagios at hostname.domain.com when it's running under user Nagios. [-d] -----Original Message----- From: John McDonnell [mailto:johnmc at johnmc.org] Sent: Friday, March 14, 2003 12:02 PM To: Nagios users list Subject: Re: [Nagios-users] notify-by-email On the 14th day of March, Rasmus Plewe said to me: > You're probably running Nagios as root. Run Nagios as user nagios > instead (which is advisable in any case). So, what happens when you're running Nagios as user nagios and the emails all of a sudden change their from address from anonymous@ to another user? johnmc. -- . johnmc@ | bucketchild.net - +1-408-985-7992 (home) . . http:// | johnmc.org - +1-408-386-3549 (cell) . -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Mon Mar 17 15:20:15 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Mon, 17 Mar 2003 15:20:15 +0100 Subject: spark rpm Message-ID: Hi all I need nagios-plugins and nrpe package for solaris 2.8 Can anyone help me? --- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Mon Mar 17 16:30:12 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Mon, 17 Mar 2003 10:30:12 -0500 (EST) Subject: spark rpm In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- - ------------------------------------------------------------- On 17-Mar-2003, Cristian DiMalio wrote message "[Nagios-users] spark rpm" - ------------------------------------------------------------- > Hi all > I need nagios-plugins and nrpe package for solaris 2.8 > Can anyone help me? There isn't one, unless someone's made one very recently. Fortunately building packages in solaris is less difficult than many o/s's so you could roll your easily if you're looking to install on many spar*c* stations. - -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPnXqAlPEkLgodAWVAQHZAQP/TqhVeqEaLH7IGt4L7LITCO6FRqdeXIWd r6Dvxpxj6m1LTjgXsYFae4xUHPvLruN23djTHSIKMxWy+RISSETn46NpD/VI/ZWM 8EEzt7HmZ62R+o4pYE3FjM0pKY/HovaQImFOgCSs/nqGFCshJfY+TElZ1yaBBdYH gfslnlLpW64= =or8J -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Mon Mar 17 16:32:49 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Mon, 17 Mar 2003 17:32:49 +0200 Subject: check_disk Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69221@intecserver007.intec.co.za> Found an interesting problem Running check_disk on an HP server that uses long volume names such as /dev/vgraid01/lvol1, causes nagios to report "Unable to read output:" I discovered that the problem is because the output line of the df command extends to two lines due to the long device name. Anybody got awork around on this one. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From efreis at opentable.com Mon Mar 17 16:53:23 2003 From: efreis at opentable.com (efreis) Date: 17 Mar 2003 15:53:23 -0000 Subject: CGI Permissions prob - have looked at FAQ and archives many times Message-ID: <20030317155323.6026.qmail@pod-163.dolphin-server.co.uk> Okay, everything should be set up properly. I can login, and the info box shows me as being "Logged in as efreis". I've been over everything, permissions are fine (even gave world rw to all in nagios sub dirs&files for the hell of it), etc. Tactical Overview" always shows nothing (shows there are no hosts, services, etc to monitor) , but does not give the "It appears as though you do not have permission to view information for any of the hosts you requested..." error. Here is cgi.cfg: main_config_file=/usr/local/nagios/etc/nagios.cfg physical_html_path=/usr/local/nagios/share url_html_path=/nagios show_context_help=0 nagios_check_command=/usr/local/nagios/libexec/check_nagios /usr/local/nagios/var/status.log 5 '/usr/local/nagios/bin/nagios' use_authentication=1 #default_user_name=guest authorized_for_configuration_information=efreis,bgoldstein,t est authorized_for_configuration_information=efreis,bgoldstein,t est authorized_for_system_commands=efreis,bgoldstein,test authorized_for_all_services=efreis,bgoldstein,test authorized_for_all_hosts=efreis,bgoldstein,test authorized_for_all_service_commands=efreis,bgoldstein,test authorized_for_all_host_commands=efreis,bgoldstein,test default_statusmap_layout=5 default_statuswrl_layout=4 ping_syntax=/bin/ping -n -U -c 5 $HOSTADDRESS$ refresh_rate=90 So, how is it possible I am logged in as efreis, efreis has authorized_for_all_services=efreis,bgoldstein,test authorized_for_all_hosts=efreis,bgoldstein,test But I still get the permissions error?? Even if I turn off anuthentication, same permissions error. HELP! Thanks, -Elliott ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From efreis at opentable.com Mon Mar 17 16:54:28 2003 From: efreis at opentable.com (efreis) Date: 17 Mar 2003 15:54:28 -0000 Subject: CGI Permissions prob - have looked at FAQ and archives many times Message-ID: <20030317155428.6232.qmail@pod-163.dolphin-server.co.uk> I should mention that this is running on FreeBSD 4.5. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Mon Mar 17 17:39:19 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 17 Mar 2003 10:39:19 -0600 Subject: spark rpm Message-ID: http://nagios.sourceforge.net/download/ports/solaris/ http://sourceforge.net/project/showfiles.php?group_id=29880 jc > -----Original Message----- > From: Cristian DiMalio [mailto:cristian.dimalio at lisit.it] > Sent: Monday, March 17, 2003 8:20 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] spark rpm > > > Hi all > I need nagios-plugins and nrpe package for solaris 2.8 > Can anyone help me? ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 17 17:38:00 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 17 Mar 2003 11:38:00 -0500 (EST) Subject: check_disk In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69221@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69221@intecserver007.intec.co.za> Message-ID: Bug 696439 was posted on the issue - no resolution as yet. -sg On Mon, 17 Mar 2003, Paul Clayton wrote: > Found an interesting problem > > Running check_disk on an HP server that uses long volume names such as > /dev/vgraid01/lvol1, causes nagios to report "Unable to read output:" > I discovered that the problem is because the output line of the df command > extends to two lines due to the long device name. Anybody got awork around > on this one. > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > > > > ******************************************************************************************* > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > notify the sender by e-mail. In such a case reading, reproducing, printing or > further dissemination of this e-mail is strictly prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ****************************************************************************************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Mon Mar 17 18:02:44 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Mon, 17 Mar 2003 18:02:44 +0100 Subject: check_disk In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69221@intecserver007.intec.co.za>; from paul.clayton@intec.co.za on Mon, Mar 17, 2003 at 05:32:49PM +0200 References: <9290BC9741D67F43BDAAC84144FF870DB69221@intecserver007.intec.co.za> Message-ID: <20030317180244.G1427@hpce.nec.com> On Mon, Mar 17, 2003 at 05:32:49PM +0200, Paul Clayton wrote: > > Running check_disk on an HP server that uses long volume names such as > /dev/vgraid01/lvol1, causes nagios to report "Unable to read output:" > I discovered that the problem is because the output line of the df command > extends to two lines due to the long device name. Anybody got awork around > on this one. I did a small workaround for e.g. that reason: $ cat check_local_disk.sh #!/bin/sh # Local disk checking for cs nodes FSLIST=`df -hl | grep dev | cut -f1 -d" " | tr "\n" " "` /path/to/nagios_plugins/check_disk -w $1 -c $2 -p "$FSLIST" This checks all locally mounted file systems at once, the "grep dev" part preventing problems with line splits. Be aware that the "df -hl" is system dependent. Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.mcavoy at megawheels.com Mon Mar 17 18:21:58 2003 From: sean.mcavoy at megawheels.com (Sean McAvoy) Date: 17 Mar 2003 12:21:58 -0500 Subject: Problems recieveing service notifications Message-ID: <1047921718.15764.51.camel@tech03.toronto.drive-megawheels.net> Hello, I'm having problems getting service alerts. I've attached my configs for 1 service. I've got 2 distributed servers, and one central that does all notification (but no active checks, just host checks). I'm receiving host notifications, but no service ones. Any ideas where I can look to see why they're not being sent? Any help would be appreciated! -Sean -------------- next part -------------- define service{ name client-low active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 1 freshness_threshold 2100 check_command notify-by-email notifications_enabled 1 event_handler_enabled 0 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 max_check_attempts 3 normal_check_interval 15 retry_check_interval 2 contact_groups technical-support check_period 24x7 notification_interval 30 notification_period workhours notification_options w,c,r register 0 } -------------- next part -------------- define service{ use client-low host_name vpn.clienta service_description Office - clienta tunnel check_command check_ipsec_tunnel!192.168.109.1 } From GBunting864 at Worldsavings.com Mon Mar 17 20:21:09 2003 From: GBunting864 at Worldsavings.com (Bunting, Glen, IG) Date: Mon, 17 Mar 2003 11:21:09 -0800 Subject: NSClient return code of 184 is out of bounds Message-ID: <6CF7A192A85BD1458E7C5F35D607750C440551@ok1ems2.worldsavings.com> I have just installed NSClient on one of our Win2000 boxes. I have copied the version of check_nt to my Linux box. I have edited the checkcommands and services files. I can run the commands fine from the command line, but when they are run from Nagios, I get an error of "Return code of 184 is out of bounds" Can someone tell me how to fix this and what I need to do to be able to monitor my Win2000 boxes? Thanks Glen ***************************************************************************** If you are not the intended recipient of this e-mail, please notify the sender immediately. The contents of this e-mail do not amend any existing disclosures or agreements unless expressly stated. ***************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Mon Mar 17 23:14:11 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Tue, 18 Mar 2003 09:14:11 +1100 Subject: AW: Check Citrix has limitations....? - Nah, i t wa s my brain. In-Reply-To: <7675333BBCD5D511BC2A00005A42A8BB09BDEF@MUC-ZVS-MAIL1>; from barst@goethe.de on Mon, Mar 17, 2003 at 12:55:53PM +0100 References: <7675333BBCD5D511BC2A00005A42A8BB09BDEF@MUC-ZVS-MAIL1> Message-ID: <20030318091408.A26258@IPAustralia.Gov.AU> Dear Ladies and Gentlemen, Check_citrix is in the contrib/ directory of the plugin distributions. Contrib/ is code for . unsupported by the Nagios plugin developers . untested . undocumented . YMMV . un ported etc. Contributed plugins _may_ be supported by their authors. You can find the author either by reading the code or trying ./plugin -h. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Mon Mar 17 22:05:58 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Mon, 17 Mar 2003 16:05:58 -0500 Subject: NRPE monitor remote AIX server Message-ID: <3E7638B6.1226079@algonquincollege.com> Hi All, Does anyone have AIX box to be monitored by NRPE? Now, I have nagios running in Solaris 8 and monitor NT using nsclient. I'm trying to monitor the remote Unix servers' disk space whatever, the Sun client working fine. While I compile the nrpe source on Aix (4.3.3), got nrpe, when I run #./nrpe -c nrpe.cfg --daemon, no error. While running check_nrpe on Sun nagios box, get Connection refused by host. Could you shed some lights on this? Thank you, Emily ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GBunting864 at Worldsavings.com Mon Mar 17 23:35:08 2003 From: GBunting864 at Worldsavings.com (Bunting, Glen, IG) Date: Mon, 17 Mar 2003 14:35:08 -0800 Subject: NSClient return code of 184 is out of bounds Message-ID: <6CF7A192A85BD1458E7C5F35D607750C4409A9@ok1ems2.worldsavings.com> Never mind. I solved my own problem. Thanks Glen -----Original Message----- From: Bunting, Glen, IG Sent: Monday, March 17, 2003 11:21 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] NSClient return code of 184 is out of bounds I have just installed NSClient on one of our Win2000 boxes. I have copied the version of check_nt to my Linux box. I have edited the checkcommands and services files. I can run the commands fine from the command line, but when they are run from Nagios, I get an error of "Return code of 184 is out of bounds" Can someone tell me how to fix this and what I need to do to be able to monitor my Win2000 boxes? Thanks Glen ***************************************************************************** If you are not the intended recipient of this e-mail, please notify the sender immediately. The contents of this e-mail do not amend any existing disclosures or agreements unless expressly stated. ***************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nallen at humboldtbank.com Tue Mar 18 02:42:03 2003 From: nallen at humboldtbank.com (Nate Allen) Date: Mon, 17 Mar 2003 17:42:03 -0800 Subject: negate plugin Message-ID: Our network folks would like to be paged if an ISDN backup circuit becomes active, to alert us that something's wrong with the primary (and because the backup circuit is billed by the minute). I thought I'd try to use the negate plugin to alert them when the circuit is 'pingable', instead of when it isn't. I understand the negate wrapper is the plugin for that job. I downloaded and built the negate plugin from the 1.3.0 plugin archive and put it with my other plugins (which are the 1.2.9 version packaged as part of the Debian unstable distribution). However, I can't get it to work. >From reading through the list, it's my understanding that the 'negate' plugin wrapper is broken in the version 1.3.0 plugins. Is there a corrected version or patch available somewhere? Here's an example of my output when I try it from the command line. I'm using Nagios 1.0, again from Debian's unstable packages. monitor:/usr/lib/nagios/plugins# ./negate ./check_ping -H 11.11.11.11 -w 50,50% -c 90,90% -p 5 ./negate: invalid option -- H negate: Unknown argument - H Usage: negate [-t timeout] negate (-h | --help) for detailed help negate (-V | --version) for version information If I put the check command in quotes, as someone else suggested, I get a different problem: monitor:/usr/lib/nagios/plugins# ./negate "./check_ping -H 11.11.11.11 -w 50,50% -c 90,90% -p 5" ./negate problem - No data recieved from host CMD: ./check_ping -H 11.11.11.11 -w 50,50% -c 90,90% -p 10 (null) No data recieved from host? Am I using the plugin incorrectly, or is it just bugged? If it's bugged, is there somewhere I can get a fixed one? Thanks in advance for any help! Nate ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From yewkwee-tan at axvantage.com Tue Mar 18 03:22:28 2003 From: yewkwee-tan at axvantage.com (Tan Yew Kwee) Date: Tue, 18 Mar 2003 10:22:28 +0800 Subject: SNMP References: Message-ID: <000601c2ecf5$38a97ed0$5601010a@YEWKWEE> Dear Nemir, Thanks so much for your advise. I have checked and confirmed telnet is not enabled on the firewall. The type of monitoring we wish to have are as follows:- CPU utilization Memory utilization Disk utilization Bandwidth utilization Interface availability Latency Event history Is it possible to monitor these on Nagios? Thanks/regards Yew Kwee ----- Original Message ----- From: "nemir nemiria" To: Cc: Sent: Monday, March 17, 2003 6:29 PM Subject: Re: [Nagios-users] SNMP > MOst people set their checkpoint firewalls up to be "invisible" and so there > would be no way of monitoring them. Assuming this is not the case with your > firewall, I don't know what sort of monitoring you would want to be doing > with it beyond the basic standard plugins (things like ping and diskfree) > > > PErhaps more information about what you are wanting if it is more than > that...? > > Best regards, > > Nemir > > > > >From: "Tan Yew Kwee" > >Reply-To: "Tan Yew Kwee" > >To: > >Subject: [Nagios-users] SNMP > >Date: Mon, 17 Mar 2003 17:46:05 +0800 > > > >Dear all members, > >Thanks for your valuable information and guidence given on this monitoring > >software. May I know is there a plug in available to monitor a checkpoint > >firewall? > >Thanks/regards > >Yew Kwee > > > _________________________________________________________________ > Hotmail now available on Australian mobile phones. Go to > http://ninemsn.com.au/mobilecentral/hotmail_mobile.asp > > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Tue Mar 18 04:12:01 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 17 Mar 2003 22:12:01 -0500 (EST) Subject: negate plugin In-Reply-To: References: Message-ID: Grab the copy from CVS - there was a bug fix post 1.3 release... -sg On Mon, 17 Mar 2003, Nate Allen wrote: > Our network folks would like to be paged if an ISDN backup circuit becomes > active, to alert us that something's wrong with the primary (and because the > backup circuit is billed by the minute). I thought I'd try to use the > negate plugin to alert them when the circuit is 'pingable', instead of when > it isn't. I understand the negate wrapper is the plugin for that job. > > I downloaded and built the negate plugin from the 1.3.0 plugin archive and > put it with my other plugins (which are the 1.2.9 version packaged as part > of the Debian unstable distribution). However, I can't get it to work. > > >From reading through the list, it's my understanding that the 'negate' > plugin wrapper is broken in the version 1.3.0 plugins. Is there a corrected > version or patch available somewhere? > > Here's an example of my output when I try it from the command line. I'm > using Nagios 1.0, again from Debian's unstable packages. > > monitor:/usr/lib/nagios/plugins# ./negate ./check_ping -H 11.11.11.11 -w > 50,50% -c 90,90% -p 5 > ./negate: invalid option -- H > negate: Unknown argument - H > Usage: > negate [-t timeout] > negate (-h | --help) for detailed help > negate (-V | --version) for version information > > If I put the check command in quotes, as someone else suggested, I get a > different problem: > > monitor:/usr/lib/nagios/plugins# ./negate "./check_ping -H 11.11.11.11 -w > 50,50% -c 90,90% -p 5" > ./negate problem - No data recieved from host > CMD: ./check_ping -H 11.11.11.11 -w 50,50% -c 90,90% -p 10 (null) > > No data recieved from host? Am I using the plugin incorrectly, or is it > just bugged? If it's bugged, is there somewhere I can get a fixed one? > > Thanks in advance for any help! > > Nate > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Tue Mar 18 06:47:43 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 18 Mar 2003 00:47:43 -0500 Subject: negate plugin In-Reply-To: References: Message-ID: <1047966463.10721.6.camel@miles.debisschop.net> On Mon, 2003-03-17 at 20:42, Nate Allen wrote: > Our network folks would like to be paged if an ISDN backup circuit becomes > active, to alert us that something's wrong with the primary (and because the > backup circuit is billed by the minute). I thought I'd try to use the > negate plugin to alert them when the circuit is 'pingable', instead of when > it isn't. I understand the negate wrapper is the plugin for that job. > > I downloaded and built the negate plugin from the 1.3.0 plugin archive and > put it with my other plugins (which are the 1.2.9 version packaged as part > of the Debian unstable distribution). However, I can't get it to work. > > From reading through the list, it's my understanding that the 'negate' > plugin wrapper is broken in the version 1.3.0 plugins. Is there a corrected > version or patch available somewhere? The corrected version is in the CVS repository, not yet in a release. -- Karl ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Tue Mar 18 08:15:55 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Tue, 18 Mar 2003 08:15:55 +0100 Subject: R: spark rpm In-Reply-To: References: Message-ID: Of corse But I have a problem to compile on my sun, because cannot install gcc to compile, and I only need some plugins to use with nrpe, like check_disk check_load check_users and check_procs Does anyone send me? Tx --- -----Messaggio originale----- Da: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Per conto di Andy Harrison Inviato: luned? 17 marzo 2003 16.30 A: Cristian DiMalio Cc: nagios-users at lists.sourceforge.net Oggetto: Re: [Nagios-users] spark rpm -----BEGIN PGP SIGNED MESSAGE----- - ------------------------------------------------------------- On 17-Mar-2003, Cristian DiMalio wrote message "[Nagios-users] spark rpm" - ------------------------------------------------------------- > Hi all > I need nagios-plugins and nrpe package for solaris 2.8 > Can anyone help me? There isn't one, unless someone's made one very recently. Fortunately building packages in solaris is less difficult than many o/s's so you could roll your easily if you're looking to install on many spar*c* stations. - -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPnXqAlPEkLgodAWVAQHZAQP/TqhVeqEaLH7IGt4L7LITCO6FRqdeXIWd r6Dvxpxj6m1LTjgXsYFae4xUHPvLruN23djTHSIKMxWy+RISSETn46NpD/VI/ZWM 8EEzt7HmZ62R+o4pYE3FjM0pKY/HovaQImFOgCSs/nqGFCshJfY+TElZ1yaBBdYH gfslnlLpW64= =or8J -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From johannes.dagemark at wheelnetworks.com Tue Mar 18 11:19:41 2003 From: johannes.dagemark at wheelnetworks.com (Johannes Dagemark) Date: Tue, 18 Mar 2003 11:19:41 +0100 Subject: AS400 References: <000601c2ecf5$38a97ed0$5601010a@YEWKWEE> <1047974614.11353.22.camel@aten.fqdn.no> Message-ID: <12b201c2ed37$e377f930$8000a8c0@wheeljd> Hello all Im wondering if there is somebody out there that is monitoring AS400 servers with Nagios. Im very interested in how you are doing and where to get info about how to do this. Regards Johannes Dagemark Wheel Networks AB ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Tue Mar 18 11:11:17 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Tue, 18 Mar 2003 11:11:17 +0100 Subject: problem with new kernel Message-ID: I upgrade on my linux server, th kernel version with Red Hat Linux (2.4.18-27.8.0), from Red Hat Linux (2.4.18-26.8.0) All work fine, the only problem are qith nagios process, because grep [root at consolefw nagios]# ps -aef |grep nag nagios 1241 1 0 11:05 ? 00:00:00 [nagios] check_nagios said [root at consolefw root]# /usr/local/nagios/libexec/check_nagios /usr/local/nagios/var/status.log 5 /usr/local/nagios/bin/nagios Could not locate a running Nagios process! And log [1047981881] Lockfile '/usr/local/nagios/var/nagios.lock' is held by PID 0. Bailing out... whats append? Does anyone have same problem? I rollback on previous kernel and all return ok [root at consolefw root]# ps -aef|grep nagi nagios 783 1 0 11:11 ? 00:00:00 /usr/local/nagios/bin/nagios -d -cd --- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From anders at dira.no Tue Mar 18 09:03:08 2003 From: anders at dira.no (Anders Grue Nerheim) Date: 18 Mar 2003 09:03:08 +0100 Subject: SNMP In-Reply-To: <000601c2ecf5$38a97ed0$5601010a@YEWKWEE> References: <000601c2ecf5$38a97ed0$5601010a@YEWKWEE> Message-ID: <1047974614.11353.22.camel@aten.fqdn.no> everything but eventlog should be easy, either via SNMP, nsclient or nrpe. depending on what hardware your checkpoint fs1 is running. But I suggest a very strict ruleset, and passwords to get the info. You could also have the fw beeing check it passive mode, it would then not have any stuff you can connect to, but send out info now & then. On Tue, 2003-03-18 at 03:22, Tan Yew Kwee wrote: > Dear Nemir, > Thanks so much for your advise. I have checked and confirmed telnet is not > enabled on the firewall. > The type of monitoring we wish to have are as follows:- > CPU utilization > Memory utilization > Disk utilization > Bandwidth utilization > Interface availability > Latency > Event history > > Is it possible to monitor these on Nagios? > > Thanks/regards > Yew Kwee > ----- Original Message ----- > From: "nemir nemiria" > To: > Cc: > Sent: Monday, March 17, 2003 6:29 PM > Subject: Re: [Nagios-users] SNMP > > > > MOst people set their checkpoint firewalls up to be "invisible" and so > there > > would be no way of monitoring them. Assuming this is not the case with > your > > firewall, I don't know what sort of monitoring you would want to be doing > > with it beyond the basic standard plugins (things like ping and diskfree) > > > > > > PErhaps more information about what you are wanting if it is more than > > that...? > > > > Best regards, > > > > Nemir > > > > > > > > >From: "Tan Yew Kwee" > > >Reply-To: "Tan Yew Kwee" > > >To: > > >Subject: [Nagios-users] SNMP > > >Date: Mon, 17 Mar 2003 17:46:05 +0800 > > > > > >Dear all members, > > >Thanks for your valuable information and guidence given on this > monitoring > > >software. May I know is there a plug in available to monitor a checkpoint > > >firewall? > > >Thanks/regards > > >Yew Kwee > > > > > > _________________________________________________________________ > > Hotmail now available on Australian mobile phones. Go to > > http://ninemsn.com.au/mobilecentral/hotmail_mobile.asp > > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dadams at johncrowley.co.uk Tue Mar 18 11:50:31 2003 From: dadams at johncrowley.co.uk (David Adams) Date: Tue, 18 Mar 2003 10:50:31 -0000 Subject: Monitoring Cisco Routers Message-ID: Greetings all, Is there a way to monitor link states, interface states, processor load etc on Cisco routers? I'm assuming this would have to be done using check_snmp. If that's how it's done, does anyone have any MIB's or link to a resource that could get me started? Of course, there is always the jackpot, has anyone made any plugins for Cisco kit ;-) Thanks Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: From dadams at johncrowley.co.uk Tue Mar 18 11:53:29 2003 From: dadams at johncrowley.co.uk (David Adams) Date: Tue, 18 Mar 2003 10:53:29 -0000 Subject: Alternative state? Message-ID: My next question, Say i want to make sure that a service is NOT running on a particular host. e.g. i want to make sure that FTP is not running on a machine, is there a way of configuring nagios to bring this up as a green or OK state rather than a problem? thanks in advance Dave -------------- next part -------------- An HTML attachment was scrubbed... URL: From mat at avedya.com Tue Mar 18 12:32:44 2003 From: mat at avedya.com (Matthieu Parisot) Date: Tue, 18 Mar 2003 12:32:44 +0100 Subject: Alternative state? In-Reply-To: References: Message-ID: <3E7703DC.4030901@avedya.com> David Adams wrote: > My next question, > > Say i want to make sure that a service is NOT running on a particular > host. e.g. i want to make sure that FTP is not running on a machine, > is there a way of configuring nagios to bring this up as a green or OK > state rather than a problem? > > thanks in advance > > Dave try to use negate, provided with the plugins ; The syntax is quite easy : /usr/local/nagios/libexec/negate -t 42 /usr/local/nagios/libexec/mysuperbplugin itswonderfularguments Mat ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Tue Mar 18 14:22:56 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Tue, 18 Mar 2003 15:22:56 +0200 Subject: Compiling plugins for Tru64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB6922B@intecserver007.intec.co.za> Guys, Anybody had any luck with compiling plugins on Tru64 4.0 and 5.1 Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chris.stankaitis at datawire.net Tue Mar 18 14:33:44 2003 From: chris.stankaitis at datawire.net (Chris Stankaitis) Date: Tue, 18 Mar 2003 08:33:44 -0500 Subject: Quick Timeperiod Question In-Reply-To: <3E7703DC.4030901@avedya.com> References: <3E7703DC.4030901@avedya.com> Message-ID: <3E772038.8020807@datawire.net> Hey there, We have a service which submits passive results back to Nagios via NSCA and it basically does a DB check which monitors if there has been any customer traffic in the last XX amount of time, and is set to page if there has been no traffic, No Traffic USUALLY means that there is a problem with the software and that it needs a kick in the pants, however we do acknowledge that betweeen say 4:30 and 6:00 in the morning it's quite likley that 0 traffic really means 0 transactions. So I tried to setup a custom time period that would send Notification during all times EXCEPT between 4:30 am and 6:00 am when we decided it would be ok not to be notified about situations which more often then not were false alarms (i.e. 0 traffic but software working fine) It shoudln't make a difference but the Cal server is set to GMT and the Nagios Server is set to EST (GMT -5) it is my understanding that the Nagios server uses it's time to define time and ignores what time the passive checks come in... I.E. On Server the passive check is submitted at 3:00am but since the Nagios server's time is 5:00am due to the time difference it will use the notification logic for 5:00am not for the GMT server time that the external server sent the check. I did the following but I am still getting notified 24x7 by the looks of my pager and the lack of sleep I have been getting. Please give me a hand in finding out how I got my logic backwards on this. # 'cal' timeperiod definition define timeperiod{ timeperiod_name cal alias Special Time For Cal Server sunday 00:00-04:30,06:00-24:00 monday 00:00-04:30,06:00-24:00 tuesday 00:00-04:30,06:00-24:00 wednesday 00:00-04:30,06:00-24:00 thursday 00:00-04:30,06:00-24:00 friday 00:00-04:30,06:00-24:00 saturday 00:00-04:30,06:00-24:00 } # define service{ use passive-service host_name calserver.mydomain.com service_description DB-CHECK is_volatile 0 check_period 24x7 max_check_attempts 2 normal_check_interval 2 retry_check_interval 1 contact_groups oncall notification_interval 2 notification_period cal notification_options u,c,r check_command not_fresh } -- Chris ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Tue Mar 18 14:58:41 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Tue, 18 Mar 2003 13:58:41 -0000 Subject: Compiling plugins for Tru64 Message-ID: <53104E20A25CD411B556009027E50636064D547C@pnnemp02.pn.egg.com> Copying to nagiosplug-help mailing list There has been reported success on Tru64 (not sure which versions) for the final 1.3.0 release. Please can you try and compile and confirm the Tru64 versions. Also, check_nagios and check_swap do not currently work so if you manage to fix these, please let us know. Ton > -----Original Message----- > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > Sent: Tuesday, March 18, 2003 1:23 PM > To: Nagios Users (E-mail) > Subject: [Nagios-users] Compiling plugins for Tru64 > > Guys, > > Anybody had any luck with compiling plugins on Tru64 4.0 and 5.1 > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From otmar at e-commercepark.com Tue Mar 18 15:17:36 2003 From: otmar at e-commercepark.com (Otmar Conradus) Date: Tue, 18 Mar 2003 10:17:36 -0400 Subject: multiple host and service alerts Message-ID: Ryan, That I know when a service check return a non-ok value nagios will the check if the host is up according to the host check command you defined. Please check if you are getting - an email with a critical ping message followed by a - email with a host down message Otmar Conradus Curacao, Netherlands Antilles -----Original Message----- From: Otmar Conradus [mailto:otmar at e-commercepark.com] Sent: Monday, March 03, 2003 5:02 PM To: 'Ryan O'Rourke'; 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] multiple host and service alerts Hi Ryan, Please include your contact-groups.cfg also Otmar Conradus Curacao, Netherlands Antilles -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Ryan O'Rourke Sent: Monday, March 03, 2003 1:11 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] multiple host and service alerts Hello, I keep getting multiple alerts (usually two or three) within minutes of each other each time a host or service goes down or recovers. I only want one notice each time a host or service goes down and one when it recovers. Also, Nagios is only monitoring one service on each of these hosts so I don't understand why I would be getting multiple alerts at all. If someone could point me in the right direction I would appreciate it. There are examples of service.cfg and contacts.cfg. ********************************************************************** ## services.cfg ## # 'ping ROUTER' service definition define service{ use generic-service host_name r2030 service_description PING router contact_groups router-admin check_command check_ping!100.0,20%!500.0,60% } ## contacts.cfg ## # 'ryano' contact definition define contact{ contact_name ryano alias Ryan O service_notification_period 24x7 host_notification_period 24x7 service_notification_options c,r host_notification_options d,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email email at mydomain.com } ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Tue Mar 18 16:26:39 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Tue, 18 Mar 2003 10:26:39 -0500 (EST) Subject: R: spark rpm In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- - ------------------------------------------------------------- On 18-Mar-2003, Cristian DiMalio wrote message "R: [Nagios-users] spark rpm" - ------------------------------------------------------------- > > Of corse > But I have a problem to compile on my sun, because cannot install gcc to > compile, and I only need some plugins to use with nrpe, like check_disk > check_load check_users and check_procs > Does anyone send me? > Tx Can't because you don't have root, or can't because you don't know how? The gcc package is available on sunfreeware.com. - -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPnc6rVPEkLgodAWVAQHx8AP+Ja4SW+zui8bZQHsIAeyWzh1N1NBBZhW/ IIev23YWrJtgKcip1T8+9pGcf2KYOKtyN9nkBoEucvS3sjF2inPkAcyxx/J9fUHQ rZqqLobUZOekQNr5yK0n17ptnQK0vFVSEVcuLtnhD2V2lOtHCucbGbG28lmVotOY n55OPCl8WsQ= =WjJC -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Tue Mar 18 16:19:27 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Tue, 18 Mar 2003 12:19:27 -0300 Subject: 3D Status map In-Reply-To: References: Message-ID: When I click on the "3-D Status Map" link I dont see anything. I installed VRML client (Cosmo player), but the "3-D status map" doesn't work yet. I enable Java in my browser, also. Thank you. Regards, Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz (UOL) Sent: sexta-feira, 14 de mar?o de 2003 10:42 To: 'Paul Clayton'; 'Nagios Users (E-mail)' Subject: RES: [Nagios-users] 3D Status map Download a VRML client. It's in the FAQs. http://www.nagios.org/faqs/viewfaq.php?faq_id=52 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul Clayton Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 Para: Nagios Users (E-mail) Assunto: [Nagios-users] 3D Status map Gurus, Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " box. The URL looks right, and the permissions are fine for the file. Any ideas why I don't get the display. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 **************************************************************************** *************** This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. **************************************************************************** ************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Tue Mar 18 16:39:05 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Tue, 18 Mar 2003 07:39:05 -0800 (PST) Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: <20030318153905.7925.qmail@web21506.mail.yahoo.com> Try the plugin check_ifstatus, work well for detecting link status. David Adams wrote:Greetings all, Is there a way to monitor link states, interface states, processor load etc on Cisco routers? I'm assuming this would have to be done using check_snmp.If that's how it's done, does anyone have any MIB's or link to a resource that could get me started? Of course, there is always the jackpot, has anyone made any plugins for Cisco kit ;-) Thanks Dave --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From sghosh at sghosh.org Tue Mar 18 17:11:56 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Tue, 18 Mar 2003 11:11:56 -0500 (EST) Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: On Tue, 18 Mar 2003, David Adams wrote: > Greetings all, > Is there a way to monitor link states, interface states, processor load > etc on Cisco routers? I'm assuming this would have to be done using > check_snmp. If that's how it's done, does anyone have any MIB's or link > to a resource that could get me started? Of course, there is always the > jackpot, has anyone made any plugins for Cisco kit ;-) Jackpot ;-) check_ifstatus for monitoring individual interfaces check_ifoperstatus for monitoring all interfaces contrib/checkciscotemp for monitoring cisco temp.. -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mgerber at leitwerk.de Tue Mar 18 17:21:22 2003 From: mgerber at leitwerk.de (Mike Gerber) Date: Tue, 18 Mar 2003 17:21:22 +0100 Subject: check_jdbc Message-ID: <20030318162122.GC1515@dostojewski.lan.rwsr-xr-x.de> Hi, we had to check an Oracle database and a IBM DB2 on AS/400, so we decided to use JDBC. The check_jdbc plugin is a quick hack, but works for us and might be of use for someone else. Of course the performance isn't really exciting. :-) Remarks: o Get java getopt from http://www.urbanophile.com/arenn/hacking/download.html o Drop the JDBC drivers and java-getopt.jar into your java-lib-directory and change the classpath in Makefile and the check_jdbc shell script. o make all install o Use the following commandline syntax: check_command "$USER1$/check_jdbc -c 'com.ibm.as400.access.AS400JDBCDriver' \ -s 'jdbc:as400://host' -u user -p pass -q 'SELECT field FROM my.table'" check_command "$USER1$/check_jdbc -c 'oracle.jdbc.driver.OracleDriver' \ -s 'jdbc:oracle:thin:@host:1521:instance' -u user -p pass \ -q 'SELECT field FROM table'" Cheers, Mike -- ------------------------------------------------------------------ Mike Gerber Management Internet/Security Development LEITWERK GmbH http://www.leitwerk.de Im Ettenbach 13a Fon: +49 7805 918 0 77767 Appenweier Fax: +49 7805 918 200 ------------------------------------------------------------------ -------------- next part -------------- #!/bin/sh #-------------------------------------------------------------------------------------------------------------- # CVS: $Id: check_jdbc,v 1.2 2003/03/17 18:17:22 mgerber Exp $ # Autor: Mike Gerber # Start: Mon Mar 17 19:14:55 CET 2003 # Zweck: Checken von Datenbanken ?ber JDBC #-------------------------------------------------------------------------------------------------------------- export PATH=$PATH:/usr/java/j2sdk1.4.1/bin export CLASSPATH=/usr/java/j2sdk1.4.1/lib/oracle8i-8.1.7.1-jdbc-classes12.zip:/usr/java/j2sdk1.4.1/lib/jt400.jar:/usr/java/j2sdk1.4.1/lib/java-getopt-1.0.9.jar:. cd `dirname $0` java check_jdbc "$@" -------------- next part -------------- //-------------------------------------------------------------------------------------------------------------- // CVS: $Id: check_jdbc.java,v 1.2 2003/03/17 18:17:22 mgerber Exp $ // Autor: Mike Gerber // Start: Mon Mar 17 19:14:55 CET 2003 // Zweck: Checken von Datenbanken ?ber JDBC //-------------------------------------------------------------------------------------------------------------- import java.sql.*; import gnu.getopt.*; public class check_jdbc { static String db_classname, db_connstr, db_user, db_password, db_query; static void getargs(String[] args) { int c; Getopt g = new Getopt("check_jdbc", args, "c:s:u:p:q:"); while ((c = g.getopt()) != -1) { switch(c) { case 'c': db_classname = g.getOptarg(); break; case 's': db_connstr = g.getOptarg(); break; case 'u': db_user = g.getOptarg(); break; case 'p': db_password = g.getOptarg(); break; case 'q': db_query = g.getOptarg(); break; default: break; } } if (db_classname == null || db_connstr == null || db_user == null || db_password == null || db_query == null) { System.out.println("Wrong number of arguments"); System.exit(2); } } public static void main(String[] args) { String exit_string; int exit_code; try { // Get command line arguments getargs(args); // Load driver and connect to the database Class.forName(db_classname); Connection con = DriverManager.getConnection(db_connstr,db_user,db_password); Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery(db_query); // Do we get a result? If so, then return title and value of // the first column. if (rs.next()) { exit_string = "OK: column '" + rs.getMetaData().getColumnLabel(1) + "' returned '" + rs.getObject(1) + "'"; exit_code = 0; } else { exit_string = "CRITICAL: No result returned."; exit_code = 2; } } catch (Exception e) { // If we caught an exception, we have a problem, dude. exit_string = "CRITICAL: " + e; exit_code = 2; } // Return our one-liner and die. System.out.println(exit_string); System.exit(exit_code); } } -------------- next part -------------- PATH += :/usr/java/j2sdk1.4.1/bin CLASSPATH=/usr/java/j2sdk1.4.1/lib/oracle8i-8.1.7.1-jdbc-classes12.zip:/usr/java/j2sdk1.4.1/lib/jt400.jar:/usr/java/j2sdk1.4.1/lib/java-getopt-1.0.9.jar:. all: check_jdbc.class install: all cp check_jdbc check_jdbc.class /usr/lib/nagios/plugins clean: rm -f *.class check_jdbc.class: check_jdbc.java javac -classpath $(CLASSPATH) check_jdbc.java From jeremy+nagios at undergrid.net Tue Mar 18 17:29:15 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Tue, 18 Mar 2003 08:29:15 -0800 Subject: spark rpm In-Reply-To: References: Message-ID: <20030318162915.GA10185@UnderGrid.net> I have actually been working with the CVS code for the plugins to generate a Solaris package which can be installed/removed with pkgadd/pkgrm... It has not been included into the repository yet but I have successfully made Solaris packages on Solaris 7 and 9 at this time... I'm tracking down a build issue in the CVS code on Solaris 2.6 which was reported to me today... I could get a Solaris 8 nagios-plugins package made with the base plugins (read as no MySQL, PostreSQL, LDAP, OpenSSL support) as they require additional packages be installed and ld library paths be changed to get the plugins to execute... The package does install into /usr/local/nagios and currently only includes the plugins, not the command.cfg or anything else for configuration... Jeremy On Mon, Mar 17, 2003 at 03:20:15PM +0100, Cristian DiMalio wrote: > Hi all > I need nagios-plugins and nrpe package for solaris 2.8 > Can anyone help me? > > --- > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From casperez at cesga.es Tue Mar 18 18:30:25 2003 From: casperez at cesga.es (casperez at cesga.es) Date: Tue, 18 Mar 2003 18:30:25 +0100 (CET) Subject: (no subject) Message-ID: <36019.193.144.34.186.1048008625.squirrel@webmail.cesga.es> Hello, Can somebody send me the config files of the demo, please? Thank you ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Lane.Williams at jhuapl.edu Tue Mar 18 18:53:56 2003 From: Lane.Williams at jhuapl.edu (Williams, P. Lane) Date: Tue, 18 Mar 2003 12:53:56 -0500 Subject: services.cfg and notifications (wishfull thinking) Message-ID: I would like to send notifications to individual contacts without creating a new contactgroup for services. Such as use "contacts" instead of just "contact_groups". Has anyone found where in the code this can be enabled. I would also like to be notified by pager and by email for some services and only email for other services. The only way I see doing this is making use of event handlers. Anyone have any ideas? Thanks, Lane ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Tue Mar 18 19:15:38 2003 From: russell at quadrix.com (Russell Scibetti) Date: Tue, 18 Mar 2003 13:15:38 -0500 Subject: services.cfg and notifications (wishfull thinking) References: Message-ID: <3E77624A.9050909@quadrix.com> For notifications, you are in complete control on what Nagios executes. If you make a "smart" notification script, the script can know what services should also causes pages to be sent. Then, you make a command definition (probably in the misccommands.cfg file) that calls this script with several arguments (the host name, service name, output, pager, email, etc). Use this as your notification command for your contacts. Another option is to make 2 contact groups, one for contacting via email and one for contacting via pager. Then, you can use the contact_groups setting of a service definition to have some services use both groups (sends pages and emails) and others just the email contactgroup. As for sending to individual contacts, this is currently not an option anywhere. I don't know if there is any plan to add it as an additional feature. Russell Williams, P. Lane wrote: >I would like to send notifications to individual contacts without creating a >new contactgroup for services. Such as use "contacts" instead of just >"contact_groups". Has anyone found where in the code this can be enabled. > >I would also like to be notified by pager and by email for some services and >only email for other services. The only way I see doing this is making use >of event handlers. > >Anyone have any ideas? > >Thanks, > >Lane > > >------------------------------------------------------- >This SF.net email is sponsored by: Does your code think in ink? >You could win a Tablet PC. Get a free Tablet PC hat just for playing. >What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From drich at employees.org Tue Mar 18 19:18:14 2003 From: drich at employees.org (Dan Rich) Date: Tue, 18 Mar 2003 10:18:14 -0800 (PST) Subject: services.cfg and notifications (wishfull thinking) In-Reply-To: References: Message-ID: <58987.63.237.201.12.1048011494.squirrel@www.lapseofthought.com> Williams, P. Lane said: > I would like to send notifications to individual contacts without creating a > new contactgroup for services. Such as use "contacts" instead of just > "contact_groups". Has anyone found where in the code this can be enabled. I can't help you on this one, but.... > I would also like to be notified by pager and by email for some services and > only email for other services. The only way I see doing this is making use > of event handlers. I do this by having two contacts for each person, ex. drich and drich-nopage. The drich contact has both a pager and e-mail defined, the drich-nopage has only the e-mail. I use drich-nopage for services that I never want to be paged for (like performance monitoring on our web server and printers) and drich for services where I want pages. define contact { name systems service_notification_period 24x7 host_notification_period 24x7 service_notification_options c,r host_notification_options d,r service_notification_commands notify-by-email,notify-by-qpage host_notification_commands host-notify-by-email,host-notify-by-qpage register 0 } define contact { name systems-nopage service_notification_period 24x7 host_notification_period 24x7 service_notification_options w,u,c,r host_notification_options d,u,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email register 0 } define contact{ use systems contact_name drich alias Dan Rich email drich at pdi.com pager drich } define contact{ use systems-nopage contact_name drich-nopage alias Dan Rich email drich at pdi.com } -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ric at nkn.net Tue Mar 18 19:46:59 2003 From: ric at nkn.net (Ric Moseley) Date: Tue, 18 Mar 2003 12:46:59 -0600 Subject: Acknowledgements disappear In-Reply-To: <58987.63.237.201.12.1048011494.squirrel@www.lapseofthought.com> References: <58987.63.237.201.12.1048011494.squirrel@www.lapseofthought.com> Message-ID: <00de01c2ed7e$c2ac7720$1bd010ac@theplanet.com> Anyone know why acknowledgements keep disappearing on me? When a host/service go down we acknowledge it (persitant) and then sometime later it pops backup and then re-emails back out. The acknowledge comment is still there so we delete the comment and then re- acknowledge it. Thanks. Ric. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Tue Mar 18 20:58:37 2003 From: russell at quadrix.com (Russell Scibetti) Date: Tue, 18 Mar 2003 14:58:37 -0500 Subject: Acknowledgements disappear References: <00de01c2ed7e$c2ac7720$1bd010ac@theplanet.com> Message-ID: <3E777A6D.5060802@quadrix.com> My guess is that the state of the service (CRITICAL/WARNING/...) has changed at some point. An acknowledgement only applies to a particular state of a service. If you acknowledge a critical service, and then a check of that service returns a warning (or vice versa), the acknowledgement will go away, regardless of if its persistent. Russell Scibetti Ric Moseley wrote: >Anyone know why acknowledgements keep disappearing on me? When a >host/service go down we acknowledge it (persitant) and then sometime >later it pops backup and then re-emails back out. The acknowledge >comment is still there so we delete the comment and then re- acknowledge >it. > >Thanks. > >Ric. > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Does your code think in ink? >You could win a Tablet PC. Get a free Tablet PC hat just for playing. >What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jbautista at icnet.com.ve Tue Mar 18 21:01:22 2003 From: jbautista at icnet.com.ve (Jeyri Bautista) Date: Tue, 18 Mar 2003 16:01:22 -0400 Subject: Question Message-ID: <5.1.0.14.0.20030318155048.0431dce8@pop.icnet.com.ve> I installed and configured Nagios, I configure the apache. I can see the web interface of nagios but when I try to see any option (Host Detail, Status Summary, etc) appear the following error: It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. Thanks, Jeyri Bautista ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Tue Mar 18 21:41:40 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Tue, 18 Mar 2003 20:41:40 +0000 Subject: Fw: Compiling Net Saint Nt Agent Message-ID: Dear all, I have been working on a resolution to the NetSaint Nt Agent returning the date of a file in US format. I have changed the short date format in the code but as I do not have Delphi I am unable to compile it. Has anybody else recompiled the agent ? If so would they mind just compiling it for me with my modified source code ? If you could that would be great !!! Thanks, Matthew -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: uNSClient.pas Type: application/octet-stream Size: 21566 bytes Desc: not available URL: From Ben.Farris at key3media.com Tue Mar 18 22:42:52 2003 From: Ben.Farris at key3media.com (Ben.Farris at key3media.com) Date: Tue, 18 Mar 2003 13:42:52 -0800 Subject: nagios http_check ssl Message-ID: For some reason I cant seem to compile ssl support into check_http. I configured the nagios plugins as follows: ./configure --prefix=/opt/nagios --with-nagios-user=nagios --with-nagios-group=nagios --enable-SSL --with-SMCossl --with-openssl=/usr/local/ssl and after installing the plugins I always get... Tue Mar 18 13:42:03 (/opt/nagios/libexec) root at monitor# ./check_http --ssl check_http: invalid option - SSL is not available Usage: check_http (-H | -I ) [-u ] [-p ] [-w ] [-c ] [-t ] [-L] [-a auth] [-f ] [-e ] [-s string] [-l] [-r | -R ] [-P string] check_http (-h | --help) for detailed help check_http (-V | --version) for version information Any ideas??? ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From wilcoxc at troycorp.com Tue Mar 18 23:26:54 2003 From: wilcoxc at troycorp.com (Wilcox, Chris) Date: Tue, 18 Mar 2003 17:26:54 -0500 Subject: Email Notifications if mail -s works Message-ID: <5F735AF7A501D411910600104B76901E02B82C53@POSTAL> What is the most likely cause of mail not being sent correctly if mail -s works. I am using nullmailer as my mta, from the CLI it works great....but Nagios just won't send it...any help out there would be greatly appreciated.... Chris Wilcox Manager Network Services Troy Corporation 973-443-4200 x2545 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jcarro10 at sprintspectrum.com Tue Mar 18 23:32:44 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Tue, 18 Mar 2003 16:32:44 -0600 Subject: OT: Another RRDtool tool Message-ID: I just stumbled across this. Thought someone on the list (or a friend of a friend) might stand to benefit from it: http://percival.sourceforge.net/ jc ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Tue Mar 18 23:45:59 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Tue, 18 Mar 2003 17:45:59 -0500 Subject: nrpe not working References: <74D428BDBFD5D04CB54E84499ECA29DB2E51D5@PKDWB03C.ad.sprint.com> Message-ID: <3E77A1A7.1DA2DBC5@algonquincollege.com> Hi JC, I guess you have experience with NRPE, could you give me some clue? I use command line working fine: (Both Server and Client are Solaris 8) ~libexec/check_nrpe -c check_disk1 DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] However, when I put in the nagios, it's not working, the status information is : Incorrect command line arguments supplied, my config file this: in checkcommands.cfg: # 'check_nrpe' command definition define command{ command_name check_nrpe command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ } In services.cfg: define service{ use generic-service host_name netsrv service_description File System / Check is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups unix-admins notification_interval 120 notification_period 24x7 notification_options c,r check_command check_nrpe!check_disk1 name remotefstemp } In remote server's nrpe.cfg, the check_disk1 is defined, no doubt about that, as the command line is working. Any help would be appreciated. Thanks, Emily "Carroll, Jim P [Contractor]" wrote: > Try telnetting to port 5666 on the target host; see if you get a connection. > > Try installed check_nrpe on the target host and doing this command: > > ./check_nrpe localhost -c check_disk1 > > Let us know how that goes. > > jc > > > -----Original Message----- > > From: Jeff McKeon [mailto:jsm at inpro.net] > > Sent: Monday, November 25, 2002 2:32 PM > > To: Nagios List > > Subject: [Nagios-users] nrpe not working > > > > > > Hey guys/gals, > > > > Needed to set up linux disk monitoring of a remote host. downloaded > > nrpe (as suggested by mailing list) and installed the daemon on the > > remote host according to the directions. Also copied the check_disk > > plugin to that remote server. > > > > installed on the nagios host server and coped the check_nrpe to the > > /usr/local/nagios/libexec dir. > > > > confirmed that a check_disk command issued at the command prompt will > > work on the remote host. So at least I know that works... > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > below is the nrpe xinetd file I've modified. > > > > Problem:::: > > > > If on the nagios host machine I issue: > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ > > [jsm at rh80-jsm libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > CHECK_NRPE: Error receiving data from host. > > [jsm at rh80-jsm libexec]$ > > > > I get the error shown. > > > > If I look on the remote host in the var/log/messages file I get: > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > Any suggestions on what I'm doing wrong? > > > > # default: on > > # description: NRPE > > service nrpe > > { > > flags = REUSE > > socket_type = stream > > wait = no > > user = nagios > > server = /usr/local/nagios/libexec/nrpe > > server_args = -i /etc/nrpe.cfg > > log_on_failure += USERID > > disable = no > > only_from = 127.0.0.1 10.16.2.101 > > } > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > handheld. Power & Color in a compact size! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Get the new Palm Tungsten T > handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 19 01:16:23 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Tue, 18 Mar 2003 18:16:23 -0600 Subject: nrpe not working Message-ID: In checkcommands.cfg, you're passing a "-H" switch to check_nrpe. However, check_nrpe doesn't use the -H switch. Remove that and you should be fine. jc > -----Original Message----- > From: emily zhou [mailto:Emily.Zhou at algonquincollege.com] > Sent: Tuesday, March 18, 2003 4:46 PM > To: Carroll, Jim P [Contractor] > Cc: 'Jeff McKeon'; Nagios List > Subject: Re: [Nagios-users] nrpe not working > > > Hi JC, > I guess you have experience with NRPE, could you give me some clue? > I use command line working fine: (Both Server and Client > are Solaris 8) > ~libexec/check_nrpe -c check_disk1 > DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] > > However, when I put in the nagios, it's not working, the > status information is : > Incorrect command line arguments supplied, my config file this: > > in checkcommands.cfg: > # 'check_nrpe' command definition > define command{ > command_name check_nrpe > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ > } > > In services.cfg: > define service{ > use generic-service > host_name netsrv > service_description File System / Check > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups unix-admins > notification_interval 120 > notification_period 24x7 > notification_options c,r > check_command check_nrpe!check_disk1 > name remotefstemp > } > > In remote server's nrpe.cfg, the check_disk1 is defined, no > doubt about that, as > the command line is working. > Any help would be appreciated. > Thanks, > Emily > > "Carroll, Jim P [Contractor]" wrote: > > > Try telnetting to port 5666 on the target host; see if you > get a connection. > > > > Try installed check_nrpe on the target host and doing this command: > > > > ./check_nrpe localhost -c check_disk1 > > > > Let us know how that goes. > > > > jc > > > > > -----Original Message----- > > > From: Jeff McKeon [mailto:jsm at inpro.net] > > > Sent: Monday, November 25, 2002 2:32 PM > > > To: Nagios List > > > Subject: [Nagios-users] nrpe not working > > > > > > > > > Hey guys/gals, > > > > > > Needed to set up linux disk monitoring of a remote host. > downloaded > > > nrpe (as suggested by mailing list) and installed the > daemon on the > > > remote host according to the directions. Also copied the > check_disk > > > plugin to that remote server. > > > > > > installed on the nagios host server and coped the > check_nrpe to the > > > /usr/local/nagios/libexec dir. > > > > > > confirmed that a check_disk command issued at the command > prompt will > > > work on the remote host. So at least I know that works... > > > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > > > below is the nrpe xinetd file I've modified. > > > > > > Problem:::: > > > > > > If on the nagios host machine I issue: > > > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ > > > [jsm at rh80-jsm libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > > CHECK_NRPE: Error receiving data from host. > > > [jsm at rh80-jsm libexec]$ > > > > > > I get the error shown. > > > > > > If I look on the remote host in the var/log/messages file I get: > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > Any suggestions on what I'm doing wrong? > > > > > > # default: on > > > # description: NRPE > > > service nrpe > > > { > > > flags = REUSE > > > socket_type = stream > > > wait = no > > > user = nagios > > > server = /usr/local/nagios/libexec/nrpe > > > server_args = -i /etc/nrpe.cfg > > > log_on_failure += USERID > > > disable = no > > > only_from = 127.0.0.1 10.16.2.101 > > > } > > > > > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > handheld. Power & Color in a compact size! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > handheld. Power & Color in a compact size! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Wed Mar 19 03:07:18 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 18 Mar 2003 21:07:18 -0500 Subject: spark rpm In-Reply-To: <20030318162915.GA10185@UnderGrid.net> References: <20030318162915.GA10185@UnderGrid.net> Message-ID: <1048039638.1102.37.camel@miles.debisschop.net> On Tue, 2003-03-18 at 11:29, Jeremy T. Bouse wrote: > I have actually been working with the CVS code for the plugins > to generate a Solaris package which can be installed/removed with > pkgadd/pkgrm... It has not been included into the repository yet but I > have successfully made Solaris packages on Solaris 7 and 9 at this > time... I'm tracking down a build issue in the CVS code on Solaris 2.6 > which was reported to me today... > > I could get a Solaris 8 nagios-plugins package made with the > base plugins (read as no MySQL, PostreSQL, LDAP, OpenSSL support) as > they require additional packages be installed and ld library paths be > changed to get the plugins to execute... > > The package does install into /usr/local/nagios and currently > only includes the plugins, not the command.cfg or anything else for > configuration... With regard to your package, Jeremy, I'd like to try and build in support for packages of many sorts. To that end, I have thought about a 'pkg' directory that all these should go into. Unfortunately, from this point of view, debain IIRC requires that the debain directory be located at the top of the tree. But RPM spec can be moved into a pkg directory. I would propose putting packaging stuff for Solaris in /pkg/solaris -- if there's version specifc stuff, naybe those parts would go into pkg/solaris/2.6 for eaxample. Seem reasonable? If so, would you go ahead and commit your new packaging stuff to CVS HEAD in that manner? Then we could add packaging tools for FreeBSD ports, and so on, as we get the chance. As for RPMs, right now we have one general spec, which is more geared toward RedHat than any of the other distros. It might be nice to have something like pkg/mandrake to accomadate a Mandrake-specifc spec, etc. But I don't know of any way to get 'rpm -ta' to respect my wishes on the matter. I'd like it even more if I could include the parts that were distro specific, and not need to maintain the spec in multiple instances. But that's entering into the realm of fantasy, I think. (at least with the CVS tree -- but maybe the distribution tarball could do something like that, since the spec is processed by a make-hook anyway) I'm open to suggestions on how to best handle the various RPM flavors. As I said, AFAIK, debian has policy standards that preclude it from playing nicely with other package formats in this manner - it demands a top level directory of its own. Please correct me if I'm wrong. At one point in the netsaint plugins, I thought we had a debain directory in CVS. I would support ressurecting that, especially if we can get get the debain maintainer on board now that we have an actual release. -- Karl ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Dave.Font at Systime.co.nz Wed Mar 19 06:17:57 2003 From: Dave.Font at Systime.co.nz (Dave Font) Date: Wed, 19 Mar 2003 17:17:57 +1200 Subject: Entering Service State Information Message-ID: <001c01c2edd6$e809dd20$3c00a8c0@DavidF> I am running nagios-1.0 on Caldera Openlinux 3.1.1 The installation was trouble-free and the FAQ's have generally been a great help. I have been trying out the product for about a week and I have found it very useful. However, I am trying to enter Service State Information to acknowledge a particular service problem message. I type information into the "Entry into Comment:" field, then I [Commit] I get the message: Error: Could not stat () command file '/usr/local/nagios/var/rw/nagios.cmd!' I have checked a FAQ and ensured the 'rw' directory is drwxrws--- and is owned by 'nagios' and group-ownership is 'nagiocmd'. I had created a group call 'nagiocmd' I have created a user-name called 'nagiosadmin' using htpasswd The cgi.cmd has the following : authorized_for_system_information=nagiosadmin,guest authorized_for_configuration_information=nagiosadmin,guest authorized_for_system_commands=nagiosadmin authorized_for_all_services=nagiosadmin,guest authorized_for_all_hosts=nagiosadmin,guest authorized_for_all_service_commands=nagiosadmin authorized_for_all_host_commands=nagiosadmin Inside the 'rw' directory is the file nagios.cmd , owned by nagios with group-ownership nagiocmd The file is zero size and has permissions prw-rw---- Could someone please help me resolve this issue or determine what further information I need to supply to problem-solve Dave Font Communications Systime Computer Company Ltd 190 Great South Road Remuera PO Box 74147 Market Road, Auckland Telephone: +64 9 529 1445 Facsimile: +64 9 529 1466 Email: Dave.Font at Systime.co.nz Comms at Systime.co.nz ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient, please delete it and notify the sender. Views expressed in this message and any attachments are those of the individual sender, and are not necessarily the views of Systime Computer Company Ltd or SAM Computer Systems Ltd. This footnote also confirms that this email message has been virus scanned. No computer viruses were detected, however no liability will be accepted for any consequential damage resulting from email containing computer viruses. ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 19 06:59:53 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 19 Mar 2003 07:59:53 +0200 Subject: nrpe not working Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69230@intecserver007.intec.co.za> Guys, this is my check_nrpe command in checkcommands.cfg and it works # 'check_nrpe' command definition define command{ command_name check_nrpe command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -p 5666 -c $ARG1$ -to 60 } I disagree with Jim, as the -H is required, otherwise how does check-nrpe know where to go. -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Wednesday, March 19, 2003 2:16 AM To: 'emily zhou' Cc: Nagios List Subject: RE: [Nagios-users] nrpe not working In checkcommands.cfg, you're passing a "-H" switch to check_nrpe. However, check_nrpe doesn't use the -H switch. Remove that and you should be fine. jc > -----Original Message----- > From: emily zhou [mailto:Emily.Zhou at algonquincollege.com] > Sent: Tuesday, March 18, 2003 4:46 PM > To: Carroll, Jim P [Contractor] > Cc: 'Jeff McKeon'; Nagios List > Subject: Re: [Nagios-users] nrpe not working > > > Hi JC, > I guess you have experience with NRPE, could you give me some clue? > I use command line working fine: (Both Server and Client > are Solaris 8) > ~libexec/check_nrpe -c check_disk1 > DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] > > However, when I put in the nagios, it's not working, the > status information is : > Incorrect command line arguments supplied, my config file this: > > in checkcommands.cfg: > # 'check_nrpe' command definition > define command{ > command_name check_nrpe > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ > } > > In services.cfg: > define service{ > use generic-service > host_name netsrv > service_description File System / Check > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups unix-admins > notification_interval 120 > notification_period 24x7 > notification_options c,r > check_command check_nrpe!check_disk1 > name remotefstemp > } > > In remote server's nrpe.cfg, the check_disk1 is defined, no > doubt about that, as > the command line is working. > Any help would be appreciated. > Thanks, > Emily > > "Carroll, Jim P [Contractor]" wrote: > > > Try telnetting to port 5666 on the target host; see if you > get a connection. > > > > Try installed check_nrpe on the target host and doing this command: > > > > ./check_nrpe localhost -c check_disk1 > > > > Let us know how that goes. > > > > jc > > > > > -----Original Message----- > > > From: Jeff McKeon [mailto:jsm at inpro.net] > > > Sent: Monday, November 25, 2002 2:32 PM > > > To: Nagios List > > > Subject: [Nagios-users] nrpe not working > > > > > > > > > Hey guys/gals, > > > > > > Needed to set up linux disk monitoring of a remote host. > downloaded > > > nrpe (as suggested by mailing list) and installed the > daemon on the > > > remote host according to the directions. Also copied the > check_disk > > > plugin to that remote server. > > > > > > installed on the nagios host server and coped the > check_nrpe to the > > > /usr/local/nagios/libexec dir. > > > > > > confirmed that a check_disk command issued at the command > prompt will > > > work on the remote host. So at least I know that works... > > > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > > > below is the nrpe xinetd file I've modified. > > > > > > Problem:::: > > > > > > If on the nagios host machine I issue: > > > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ > > > [jsm at rh80-jsm libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > > CHECK_NRPE: Error receiving data from host. > > > [jsm at rh80-jsm libexec]$ > > > > > > I get the error shown. > > > > > > If I look on the remote host in the var/log/messages file I get: > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > Any suggestions on what I'm doing wrong? > > > > > > # default: on > > > # description: NRPE > > > service nrpe > > > { > > > flags = REUSE > > > socket_type = stream > > > wait = no > > > user = nagios > > > server = /usr/local/nagios/libexec/nrpe > > > server_args = -i /etc/nrpe.cfg > > > log_on_failure += USERID > > > disable = no > > > only_from = 127.0.0.1 10.16.2.101 > > > } > > > > > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > handheld. Power & Color in a compact size! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > handheld. Power & Color in a compact size! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Wed Mar 19 07:37:49 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Wed, 19 Mar 2003 06:37:49 +0000 (GMT) Subject: Compiling plugins for Tru64 In-Reply-To: <53104E20A25CD411B556009027E50636064D547C@pnnemp02.pn.egg.com> References: <53104E20A25CD411B556009027E50636064D547C@pnnemp02.pn.egg.com> Message-ID: <20030319063749.14558.qmail@web12607.mail.yahoo.com> Hi TOON This is really music to my ears..i have a couple of Digital Unix machines..i will download and give it a try..but i am a Oracle DBA and currently busy with some production issues..at the first free time i will try compiling on Digital unix machines..and if its sucessful i will mail the binaries regards Hrishy --- "Voon, Ton" wrote: > Copying to nagiosplug-help mailing list > > There has been reported success on Tru64 (not sure > which versions) for the > final 1.3.0 release. Please can you try and compile > and confirm the Tru64 > versions. > > Also, check_nagios and check_swap do not currently > work so if you manage to > fix these, please let us know. > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Tuesday, March 18, 2003 1:23 PM > > To: Nagios Users (E-mail) > > Subject: [Nagios-users] Compiling plugins for > Tru64 > > > > Guys, > > > > Anybody had any luck with compiling plugins on > Tru64 4.0 and 5.1 > > > > Regards > > > > Unix like TeePee no windows, no gates, Apache > inside. > > Paul Clayton > > > > > This private and confidential e-mail has been sent > to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd > (registered > no. 3319027) and Egg Investments Ltd (registered no. > 3403963) which > carries out investment business on behalf of Egg and > is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: > 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail > and have > received it in error, please notify the sender by > replying with > 'received in error' as the subject and then delete > it from your > mailbox. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code > think in ink? > You could win a Tablet PC. Get a free Tablet PC hat > just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Wed Mar 19 08:07:06 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Wed, 19 Mar 2003 07:07:06 +0000 (GMT) Subject: Compiling plugins for Tru64 In-Reply-To: <53104E20A25CD411B556009027E50636064D547C@pnnemp02.pn.egg.com> References: <53104E20A25CD411B556009027E50636064D547C@pnnemp02.pn.egg.com> Message-ID: <20030319070706.2033.qmail@web12603.mail.yahoo.com> Hi Voon Can you please mail me the final 1.3.0 source code along with the make files..or instruct me how to download them..i was not able to trace the 1.3.0 version on the CVS browser regards Hrishy --- "Voon, Ton" wrote: > Copying to nagiosplug-help mailing list > > There has been reported success on Tru64 (not sure > which versions) for the > final 1.3.0 release. Please can you try and compile > and confirm the Tru64 > versions. > > Also, check_nagios and check_swap do not currently > work so if you manage to > fix these, please let us know. > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Tuesday, March 18, 2003 1:23 PM > > To: Nagios Users (E-mail) > > Subject: [Nagios-users] Compiling plugins for > Tru64 > > > > Guys, > > > > Anybody had any luck with compiling plugins on > Tru64 4.0 and 5.1 > > > > Regards > > > > Unix like TeePee no windows, no gates, Apache > inside. > > Paul Clayton > > > > > This private and confidential e-mail has been sent > to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd > (registered > no. 3319027) and Egg Investments Ltd (registered no. > 3403963) which > carries out investment business on behalf of Egg and > is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: > 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail > and have > received it in error, please notify the sender by > replying with > 'received in error' as the subject and then delete > it from your > mailbox. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code > think in ink? > You could win a Tablet PC. Get a free Tablet PC hat > just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Wed Mar 19 08:18:25 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Wed, 19 Mar 2003 08:18:25 +0100 Subject: R: spark rpm In-Reply-To: References: Message-ID: <3E7819C1.8090808@lisit.it> can't because that machine are harden Andy Harrison ha scritto: >-----BEGIN PGP SIGNED MESSAGE----- > > >- ------------------------------------------------------------- >On 18-Mar-2003, Cristian DiMalio wrote message "R: [Nagios-users] spark rpm" >- ------------------------------------------------------------- > > >>Of corse >>But I have a problem to compile on my sun, because cannot install gcc to >>compile, and I only need some plugins to use with nrpe, like check_disk >>check_load check_users and check_procs >>Does anyone send me? >>Tx >> >> > >Can't because you don't have root, or can't because you don't know how? > >The gcc package is available on sunfreeware.com. > > > >- -- >Andy Harrison >ah##@httpsite.com >ICQ: 123472 AIM/Y!: AHinMaine >homepage: http://www.nachoz.com > >-----BEGIN PGP SIGNATURE----- >Version: PGP 6.5.8 > >iQCVAwUBPnc6rVPEkLgodAWVAQHx8AP+Ja4SW+zui8bZQHsIAeyWzh1N1NBBZhW/ >IIev23YWrJtgKcip1T8+9pGcf2KYOKtyN9nkBoEucvS3sjF2inPkAcyxx/J9fUHQ >rZqqLobUZOekQNr5yK0n17ptnQK0vFVSEVcuLtnhD2V2lOtHCucbGbG28lmVotOY >n55OPCl8WsQ= >=WjJC >-----END PGP SIGNATURE----- > > >------------------------------------------------------- >This SF.net email is sponsored by: Does your code think in ink? >You could win a Tablet PC. Get a free Tablet PC hat just for playing. >What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Wed Mar 19 08:19:36 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Wed, 19 Mar 2003 08:19:36 +0100 Subject: R: spark rpm In-Reply-To: References: Message-ID: <3E781A08.4040104@lisit.it> can't because that machine are harden Andy Harrison ha scritto: >-----BEGIN PGP SIGNED MESSAGE----- > > >- ------------------------------------------------------------- >On 18-Mar-2003, Cristian DiMalio wrote message "R: [Nagios-users] spark rpm" >- ------------------------------------------------------------- > > >>Of corse >>But I have a problem to compile on my sun, because cannot install gcc to >>compile, and I only need some plugins to use with nrpe, like check_disk >>check_load check_users and check_procs >>Does anyone send me? >>Tx >> >> > >Can't because you don't have root, or can't because you don't know how? > >The gcc package is available on sunfreeware.com. > > > >- -- >Andy Harrison >ah##@httpsite.com >ICQ: 123472 AIM/Y!: AHinMaine >homepage: http://www.nachoz.com > >-----BEGIN PGP SIGNATURE----- >Version: PGP 6.5.8 > >iQCVAwUBPnc6rVPEkLgodAWVAQHx8AP+Ja4SW+zui8bZQHsIAeyWzh1N1NBBZhW/ >IIev23YWrJtgKcip1T8+9pGcf2KYOKtyN9nkBoEucvS3sjF2inPkAcyxx/J9fUHQ >rZqqLobUZOekQNr5yK0n17ptnQK0vFVSEVcuLtnhD2V2lOtHCucbGbG28lmVotOY >n55OPCl8WsQ= >=WjJC >-----END PGP SIGNATURE----- > > >------------------------------------------------------- >This SF.net email is sponsored by: Does your code think in ink? >You could win a Tablet PC. Get a free Tablet PC hat just for playing. >What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 19 09:00:56 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 19 Mar 2003 10:00:56 +0200 Subject: Compiling plugins for Tru64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69232@intecserver007.intec.co.za> Got the nagios 1.30 plugins and nrpe to compile on tru64 4.0g. The only change to configure I had to make was the df command. ./configure --with-df-command="/sbin/df -Pk" make all make install Anybody interested mail me and I can send you a zip compiled file. cheers -----Original Message----- From: hrishy [mailto:hrishys at yahoo.co.uk] Sent: Wednesday, March 19, 2003 9:07 AM To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) Cc: Nagiosplug-help at lists.sourceforge.net Subject: RE: [Nagios-users] Compiling plugins for Tru64 Hi Voon Can you please mail me the final 1.3.0 source code along with the make files..or instruct me how to download them..i was not able to trace the 1.3.0 version on the CVS browser regards Hrishy --- "Voon, Ton" wrote: > Copying to nagiosplug-help mailing list > > There has been reported success on Tru64 (not sure > which versions) for the > final 1.3.0 release. Please can you try and compile > and confirm the Tru64 > versions. > > Also, check_nagios and check_swap do not currently > work so if you manage to > fix these, please let us know. > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Tuesday, March 18, 2003 1:23 PM > > To: Nagios Users (E-mail) > > Subject: [Nagios-users] Compiling plugins for > Tru64 > > > > Guys, > > > > Anybody had any luck with compiling plugins on > Tru64 4.0 and 5.1 > > > > Regards > > > > Unix like TeePee no windows, no gates, Apache > inside. > > Paul Clayton > > > > > This private and confidential e-mail has been sent > to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd > (registered > no. 3319027) and Egg Investments Ltd (registered no. > 3403963) which > carries out investment business on behalf of Egg and > is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: > 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail > and have > received it in error, please notify the sender by > replying with > 'received in error' as the subject and then delete > it from your > mailbox. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code > think in ink? > You could win a Tablet PC. Get a free Tablet PC hat > just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From casperez at cesga.es Wed Mar 19 09:29:14 2003 From: casperez at cesga.es (casperez at cesga.es) Date: Wed, 19 Mar 2003 09:29:14 +0100 (CET) Subject: (no subject) Message-ID: <63205.193.144.34.186.1048062554.squirrel@webmail.cesga.es> Hello Can somebody send me the config files of the demo, please? Thank you. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Wed Mar 19 09:25:33 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Wed, 19 Mar 2003 08:25:33 -0000 Subject: Compiling plugins for Tru64 Message-ID: <53104E20A25CD411B556009027E50636064D5487@pnnemp02.pn.egg.com> Excellent news! I have started a thread on http://sourceforge.net/forum/forum.php?forum_id=254122. Can you send a sample output from the df -Pk command so I'll look into the changes for the configure script to automatically pick up the right one. Presumably /sbin is normally in the PATH? Hrishy, the final 1.3.0 release can be found on http://sourceforge.net/projects/nagiosplug Ton > -----Original Message----- > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > Sent: Wednesday, March 19, 2003 8:01 AM > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > Got the nagios 1.30 plugins and nrpe to compile on tru64 4.0g. > > The only change to configure I had to make was the df command. > > ./configure --with-df-command="/sbin/df -Pk" > make all > make install > > Anybody interested mail me and I can send you a zip compiled file. > > cheers > > -----Original Message----- > From: hrishy [mailto:hrishys at yahoo.co.uk] > Sent: Wednesday, March 19, 2003 9:07 AM > To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > > Hi Voon > > Can you please mail me the final 1.3.0 source code > along with the make files..or instruct me how to > download them..i was not able to trace the 1.3.0 > version on the CVS browser > > > regards > Hrishy > > > --- "Voon, Ton" wrote: > Copying > to nagiosplug-help mailing list > > > > There has been reported success on Tru64 (not sure > > which versions) for the > > final 1.3.0 release. Please can you try and compile > > and confirm the Tru64 > > versions. > > > > Also, check_nagios and check_swap do not currently > > work so if you manage to > > fix these, please let us know. > > > > Ton > > > > > -----Original Message----- > > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > To: Nagios Users (E-mail) > > > Subject: [Nagios-users] Compiling plugins for > > Tru64 > > > > > > Guys, > > > > > > Anybody had any luck with compiling plugins on > > Tru64 4.0 and 5.1 > > > > > > Regards > > > > > > Unix like TeePee no windows, no gates, Apache > > inside. > > > Paul Clayton > This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 19 09:41:21 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 19 Mar 2003 10:41:21 +0200 Subject: Compiling plugins for Tru64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69234@intecserver007.intec.co.za> Sbin is in the path, but I had a failure unless I pathed it in the configure script. Here is the df -Pk output sample root_domain#root 2080368 359876 1691088 18% / cheers -----Original Message----- From: Voon, Ton [mailto:Ton.Voon at egg.com] Sent: Wednesday, March 19, 2003 10:26 AM To: 'Paul Clayton'; 'hrishy'; Voon, Ton; Nagios Users (E-mail) Cc: Nagiosplug-help at lists.sourceforge.net Subject: RE: [Nagios-users] Compiling plugins for Tru64 Excellent news! I have started a thread on http://sourceforge.net/forum/forum.php?forum_id=254122. Can you send a sample output from the df -Pk command so I'll look into the changes for the configure script to automatically pick up the right one. Presumably /sbin is normally in the PATH? Hrishy, the final 1.3.0 release can be found on http://sourceforge.net/projects/nagiosplug Ton > -----Original Message----- > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > Sent: Wednesday, March 19, 2003 8:01 AM > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > Got the nagios 1.30 plugins and nrpe to compile on tru64 4.0g. > > The only change to configure I had to make was the df command. > > ./configure --with-df-command="/sbin/df -Pk" > make all > make install > > Anybody interested mail me and I can send you a zip compiled file. > > cheers > > -----Original Message----- > From: hrishy [mailto:hrishys at yahoo.co.uk] > Sent: Wednesday, March 19, 2003 9:07 AM > To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > > Hi Voon > > Can you please mail me the final 1.3.0 source code > along with the make files..or instruct me how to > download them..i was not able to trace the 1.3.0 > version on the CVS browser > > > regards > Hrishy > > > --- "Voon, Ton" wrote: > Copying > to nagiosplug-help mailing list > > > > There has been reported success on Tru64 (not sure > > which versions) for the > > final 1.3.0 release. Please can you try and compile > > and confirm the Tru64 > > versions. > > > > Also, check_nagios and check_swap do not currently > > work so if you manage to > > fix these, please let us know. > > > > Ton > > > > > -----Original Message----- > > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > To: Nagios Users (E-mail) > > > Subject: [Nagios-users] Compiling plugins for > > Tru64 > > > > > > Guys, > > > > > > Anybody had any luck with compiling plugins on > > Tru64 4.0 and 5.1 > > > > > > Regards > > > > > > Unix like TeePee no windows, no gates, Apache > > inside. > > > Paul Clayton > This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 19 09:48:18 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 19 Mar 2003 10:48:18 +0200 Subject: Compiling plugins for Tru64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69235@intecserver007.intec.co.za> Hrishy, Yes I got it working as well, with no changes. cheers -----Original Message----- From: hrishy [mailto:hrishys at yahoo.co.uk] Sent: Wednesday, March 19, 2003 10:48 AM To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) Cc: Nagiosplug-help at lists.sourceforge.net Subject: RE: [Nagios-users] Compiling plugins for Tru64 Hi Paul Did you also compile NRPE on digital Unix ? Thanks toon..i will try regards Hrishy --- "Voon, Ton" wrote: > Excellent news! I have started a thread on > http://sourceforge.net/forum/forum.php?forum_id=254122. > > Can you send a sample output from the df -Pk command > so I'll look into the > changes for the configure script to automatically > pick up the right one. > Presumably /sbin is normally in the PATH? > > Hrishy, the final 1.3.0 release can be found on > http://sourceforge.net/projects/nagiosplug > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Wednesday, March 19, 2003 8:01 AM > > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > Got the nagios 1.30 plugins and nrpe to compile on > tru64 4.0g. > > > > The only change to configure I had to make was the > df command. > > > > ./configure --with-df-command="/sbin/df -Pk" > > make all > > make install > > > > Anybody interested mail me and I can send you a > zip compiled file. > > > > cheers > > > > -----Original Message----- > > From: hrishy [mailto:hrishys at yahoo.co.uk] > > Sent: Wednesday, March 19, 2003 9:07 AM > > To: Voon, Ton; 'Paul Clayton'; Nagios Users > (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > > > Hi Voon > > > > Can you please mail me the final 1.3.0 source code > > along with the make files..or instruct me how to > > download them..i was not able to trace the 1.3.0 > > version on the CVS browser > > > > > > regards > > Hrishy > > > > > > --- "Voon, Ton" wrote: > > Copying > > to nagiosplug-help mailing list > > > > > > There has been reported success on Tru64 (not > sure > > > which versions) for the > > > final 1.3.0 release. Please can you try and > compile > > > and confirm the Tru64 > > > versions. > > > > > > Also, check_nagios and check_swap do not > currently > > > work so if you manage to > > > fix these, please let us know. > > > > > > Ton > > > > > > > -----Original Message----- > > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > To: Nagios Users (E-mail) > > > > Subject: [Nagios-users] Compiling plugins for > > > Tru64 > > > > > > > > Guys, > > > > > > > > Anybody had any luck with compiling plugins on > > > Tru64 4.0 and 5.1 > > > > > > > > Regards > > > > > > > > Unix like TeePee no windows, no gates, Apache > > > inside. > > > > Paul Clayton > > > > > This private and confidential e-mail has been sent > to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd > (registered > no. 3319027) and Egg Investments Ltd (registered no. > 3403963) which > carries out investment business on behalf of Egg and > is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: > 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail > and have > received it in error, please notify the sender by > replying with > 'received in error' as the subject and then delete > it from your > mailbox. > __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Wed Mar 19 09:48:07 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Wed, 19 Mar 2003 08:48:07 +0000 (GMT) Subject: Compiling plugins for Tru64 In-Reply-To: <53104E20A25CD411B556009027E50636064D5487@pnnemp02.pn.egg.com> References: <53104E20A25CD411B556009027E50636064D5487@pnnemp02.pn.egg.com> Message-ID: <20030319084807.71907.qmail@web12604.mail.yahoo.com> Hi Paul Did you also compile NRPE on digital Unix ? Thanks toon..i will try regards Hrishy --- "Voon, Ton" wrote: > Excellent news! I have started a thread on > http://sourceforge.net/forum/forum.php?forum_id=254122. > > Can you send a sample output from the df -Pk command > so I'll look into the > changes for the configure script to automatically > pick up the right one. > Presumably /sbin is normally in the PATH? > > Hrishy, the final 1.3.0 release can be found on > http://sourceforge.net/projects/nagiosplug > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Wednesday, March 19, 2003 8:01 AM > > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > Got the nagios 1.30 plugins and nrpe to compile on > tru64 4.0g. > > > > The only change to configure I had to make was the > df command. > > > > ./configure --with-df-command="/sbin/df -Pk" > > make all > > make install > > > > Anybody interested mail me and I can send you a > zip compiled file. > > > > cheers > > > > -----Original Message----- > > From: hrishy [mailto:hrishys at yahoo.co.uk] > > Sent: Wednesday, March 19, 2003 9:07 AM > > To: Voon, Ton; 'Paul Clayton'; Nagios Users > (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > > > Hi Voon > > > > Can you please mail me the final 1.3.0 source code > > along with the make files..or instruct me how to > > download them..i was not able to trace the 1.3.0 > > version on the CVS browser > > > > > > regards > > Hrishy > > > > > > --- "Voon, Ton" wrote: > > Copying > > to nagiosplug-help mailing list > > > > > > There has been reported success on Tru64 (not > sure > > > which versions) for the > > > final 1.3.0 release. Please can you try and > compile > > > and confirm the Tru64 > > > versions. > > > > > > Also, check_nagios and check_swap do not > currently > > > work so if you manage to > > > fix these, please let us know. > > > > > > Ton > > > > > > > -----Original Message----- > > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > To: Nagios Users (E-mail) > > > > Subject: [Nagios-users] Compiling plugins for > > > Tru64 > > > > > > > > Guys, > > > > > > > > Anybody had any luck with compiling plugins on > > > Tru64 4.0 and 5.1 > > > > > > > > Regards > > > > > > > > Unix like TeePee no windows, no gates, Apache > > > inside. > > > > Paul Clayton > > > > > This private and confidential e-mail has been sent > to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd > (registered > no. 3319027) and Egg Investments Ltd (registered no. > 3403963) which > carries out investment business on behalf of Egg and > is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: > 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail > and have > received it in error, please notify the sender by > replying with > 'received in error' as the subject and then delete > it from your > mailbox. > __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Wed Mar 19 09:48:51 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Wed, 19 Mar 2003 08:48:51 -0000 Subject: Compiling plugins for Tru64 Message-ID: <53104E20A25CD411B556009027E50636064D5488@pnnemp02.pn.egg.com> Sorry, should have explained better. Can you send the entire df -Pk output? The configure script looks at the header to work out if the syntax is supported. > -----Original Message----- > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > Sent: Wednesday, March 19, 2003 8:41 AM > To: 'Voon, Ton'; 'hrishy'; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > Sbin is in the path, but I had a failure unless I pathed it in the > configure > script. > > Here is the df -Pk output sample > > root_domain#root 2080368 359876 1691088 > 18% / > > cheers > > -----Original Message----- > From: Voon, Ton [mailto:Ton.Voon at egg.com] > Sent: Wednesday, March 19, 2003 10:26 AM > To: 'Paul Clayton'; 'hrishy'; Voon, Ton; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > > Excellent news! I have started a thread on > http://sourceforge.net/forum/forum.php?forum_id=254122. > > Can you send a sample output from the df -Pk command so I'll look into the > changes for the configure script to automatically pick up the right one. > Presumably /sbin is normally in the PATH? > > Hrishy, the final 1.3.0 release can be found on > http://sourceforge.net/projects/nagiosplug > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Wednesday, March 19, 2003 8:01 AM > > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > > > Got the nagios 1.30 plugins and nrpe to compile on tru64 4.0g. > > > > The only change to configure I had to make was the df command. > > > > ./configure --with-df-command="/sbin/df -Pk" > > make all > > make install > > > > Anybody interested mail me and I can send you a zip compiled file. > > > > cheers > > > > -----Original Message----- > > From: hrishy [mailto:hrishys at yahoo.co.uk] > > Sent: Wednesday, March 19, 2003 9:07 AM > > To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for Tru64 > > > > > > Hi Voon > > > > Can you please mail me the final 1.3.0 source code > > along with the make files..or instruct me how to > > download them..i was not able to trace the 1.3.0 > > version on the CVS browser > > > > > > regards > > Hrishy > > > > > > --- "Voon, Ton" wrote: > Copying > > to nagiosplug-help mailing list > > > > > > There has been reported success on Tru64 (not sure > > > which versions) for the > > > final 1.3.0 release. Please can you try and compile > > > and confirm the Tru64 > > > versions. > > > > > > Also, check_nagios and check_swap do not currently > > > work so if you manage to > > > fix these, please let us know. > > > > > > Ton > > > > > > > -----Original Message----- > > > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > To: Nagios Users (E-mail) > > > > Subject: [Nagios-users] Compiling plugins for > > > Tru64 > > > > > > > > Guys, > > > > > > > > Anybody had any luck with compiling plugins on > > > Tru64 4.0 and 5.1 > > > > > > > > Regards > > > > > > > > Unix like TeePee no windows, no gates, Apache > > > inside. > > > > Paul Clayton > > > > > This private and confidential e-mail has been sent to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd (registered > no. 3319027) and Egg Investments Ltd (registered no. 3403963) which > carries out investment business on behalf of Egg and is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail and have > received it in error, please notify the sender by replying with > 'received in error' as the subject and then delete it from your > mailbox. > > > ************************************************************************** > ***************** > > > This e-mail and any attachments are confidential and may also be > privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised > recipient > of this email or have received it in error, please delete it immediately > and > notify the sender by e-mail. In such a case reading, reproducing, printing > or > further dissemination of this e-mail is strictly prohibited and may be > unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ************************************************************************** > **************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chr at gli-micram.de Wed Mar 19 10:46:49 2003 From: chr at gli-micram.de (Christian Malolepszy) Date: Wed, 19 Mar 2003 10:46:49 +0100 Subject: user view of web interface Message-ID: <04c101c2edfc$77dda0b0$e105000a@micram.de> Hello, I have been using Nagios and it is working fine. But I have one question:Is it possible to create an user who has only rights to see one Hostgroup and belong services? This user is not allowed to see the network structure, other hosts and services? Thanks Christian ----------------------------------------------------Christian Malolepszy GLI-MICRAM AGKonrad-Zuse-Strasse 10 44801 Bochum----------------- www.gli-micram.de ----------------- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From christian.loew at steyr-ssf.com Wed Mar 19 11:13:29 2003 From: christian.loew at steyr-ssf.com (=?iso-8859-1?Q?L=F6w_Christian?=) Date: Wed, 19 Mar 2003 11:13:29 +0100 Subject: Windows Eventlog monitoring Message-ID: <4982FE0E2170B348A52800D83BE55A8404C00D@SSFSRV06.steyr-ssf.local> Hi, Currently im am testing Nagios and i am very impressed. BUT: is there a solution to monitor Windows Event-Logs? (evntwin.exe - which translates Evenlog-entries to SNMP-Traps - is IMHO very ugly) Chris ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dadams at johncrowley.co.uk Wed Mar 19 11:23:49 2003 From: dadams at johncrowley.co.uk (David Adams) Date: Wed, 19 Mar 2003 10:23:49 -0000 Subject: Monitoring Cisco Routers Message-ID: Hi Everyone, Thanks for all the help so far. I am trying to run check_ifstatus and i'm getting the following error # ./check_ifstatus Can't locate Net/SNMP.pm in @INC (@INC contains: /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd /usr/libdata/perl5/site_perl/i386-openbsd /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. BEGIN failed--compilation aborted at ./check_ifstatus line 35. I installed net-snmp 5.0.8 after i installed nagios, could this be the problem? I also had trouble installing net-snmp on openbsd3.0 and had to use options to exclude some of the MIB's. Has anyone else using openbsd run in to these problems? thanks Dave -----Original Message----- From: Jon Lyons [mailto:jlyons30 at yahoo.com] Sent: 18 March 2003 15:39 To: David Adams; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Monitoring Cisco Routers Try the plugin check_ifstatus, work well for detecting link status. David Adams wrote: Greetings all, Is there a way to monitor link states, interface states, processor load etc on Cisco routers? I'm assuming this would have to be done using check_snmp. If that's how it's done, does anyone have any MIB's or link to a resource that could get me started? Of course, there is always the jackpot, has anyone made any plugins for Cisco kit ;-) Thanks Dave _____ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From chr at gli-micram.de Wed Mar 19 11:33:07 2003 From: chr at gli-micram.de (Christian Malolepszy) Date: Wed, 19 Mar 2003 11:33:07 +0100 Subject: user view of web interface References: <04c101c2edfc$77dda0b0$e105000a@micram.de> Message-ID: <04ee01c2ee02$ee4af3f0$e105000a@micram.de> Sorry, for my stupid question, i have just found a solution in the docs. Christian > Hello, > I have been using Nagios and it is working fine. > > But I have one question:Is it possible to create an user who has only rights > to see one Hostgroup and belong services? This user is not allowed to see > the network structure, other hosts and services? Thanks > Christian ----------------------------------------------------Christian > Malolepszy GLI-MICRAM AGKonrad-Zuse-Strasse 10 44801 > Bochum----------------- www.gli-micram.de ----------------- > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 19 11:38:18 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 19 Mar 2003 12:38:18 +0200 Subject: Compiling plugins for Tru64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69237@intecserver007.intec.co.za> NRPE compiled without any issues, and I have it working. I will try Tru64 5.1a later when I get chance. cheers -----Original Message----- From: hrishy [mailto:hrishys at yahoo.co.uk] Sent: Wednesday, March 19, 2003 10:48 AM To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) Cc: Nagiosplug-help at lists.sourceforge.net Subject: RE: [Nagios-users] Compiling plugins for Tru64 Hi Paul Did you also compile NRPE on digital Unix ? Thanks toon..i will try regards Hrishy --- "Voon, Ton" wrote: > Excellent news! I have started a thread on > http://sourceforge.net/forum/forum.php?forum_id=254122. > > Can you send a sample output from the df -Pk command > so I'll look into the > changes for the configure script to automatically > pick up the right one. > Presumably /sbin is normally in the PATH? > > Hrishy, the final 1.3.0 release can be found on > http://sourceforge.net/projects/nagiosplug > > Ton > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Wednesday, March 19, 2003 8:01 AM > > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > Got the nagios 1.30 plugins and nrpe to compile on > tru64 4.0g. > > > > The only change to configure I had to make was the > df command. > > > > ./configure --with-df-command="/sbin/df -Pk" > > make all > > make install > > > > Anybody interested mail me and I can send you a > zip compiled file. > > > > cheers > > > > -----Original Message----- > > From: hrishy [mailto:hrishys at yahoo.co.uk] > > Sent: Wednesday, March 19, 2003 9:07 AM > > To: Voon, Ton; 'Paul Clayton'; Nagios Users > (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > > > Hi Voon > > > > Can you please mail me the final 1.3.0 source code > > along with the make files..or instruct me how to > > download them..i was not able to trace the 1.3.0 > > version on the CVS browser > > > > > > regards > > Hrishy > > > > > > --- "Voon, Ton" wrote: > > Copying > > to nagiosplug-help mailing list > > > > > > There has been reported success on Tru64 (not > sure > > > which versions) for the > > > final 1.3.0 release. Please can you try and > compile > > > and confirm the Tru64 > > > versions. > > > > > > Also, check_nagios and check_swap do not > currently > > > work so if you manage to > > > fix these, please let us know. > > > > > > Ton > > > > > > > -----Original Message----- > > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > To: Nagios Users (E-mail) > > > > Subject: [Nagios-users] Compiling plugins for > > > Tru64 > > > > > > > > Guys, > > > > > > > > Anybody had any luck with compiling plugins on > > > Tru64 4.0 and 5.1 > > > > > > > > Regards > > > > > > > > Unix like TeePee no windows, no gates, Apache > > > inside. > > > > Paul Clayton > > > > > This private and confidential e-mail has been sent > to you by Egg. > The Egg group of companies includes Egg Banking plc > (registered no. 2999842), Egg Financial Products Ltd > (registered > no. 3319027) and Egg Investments Ltd (registered no. > 3403963) which > carries out investment business on behalf of Egg and > is regulated > by the Financial Services Authority. > Registered in England and Wales. Registered offices: > 1 Waterhouse Square, > 138-142 Holborn, London EC1N 2NA. > If you are not the intended recipient of this e-mail > and have > received it in error, please notify the sender by > replying with > 'received in error' as the subject and then delete > it from your > mailbox. > __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From twelsh at square-box.com Wed Mar 19 12:29:20 2003 From: twelsh at square-box.com (Tom Welsh) Date: Wed, 19 Mar 2003 11:29:20 -0000 Subject: (no subject) In-Reply-To: <63205.193.144.34.186.1048062554.squirrel@webmail.cesga.es> References: <63205.193.144.34.186.1048062554.squirrel@webmail.cesga.es> Message-ID: <000301c2ee0a$c8d856a0$0400a8c0@squarebox.com> Hi Casper, You'll find the config files for http://nagios.square-box.com at our config site http://demo.square-box.com Hope this helps Tom Welsh twelsh at square-box.com -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of casperez at cesga.es Sent: 19 March 2003 08:29 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] (no subject) Hello Can somebody send me the config files of the demo, please? Thank you. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Wed Mar 19 12:41:20 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Wed, 19 Mar 2003 22:41:20 +1100 Subject: Windows Eventlog monitoring In-Reply-To: <4982FE0E2170B348A52800D83BE55A8404C00D@SSFSRV06.steyr-ssf.local>; from christian.loew@steyr-ssf.com on Wed, Mar 19, 2003 at 11:13:29AM +0100 References: <4982FE0E2170B348A52800D83BE55A8404C00D@SSFSRV06.steyr-ssf.local> Message-ID: <20030319224115.B236@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Wed, Mar 19, 2003 at 11:13:29AM +0100, L?w Christian wrote: ... > > is there a solution to monitor Windows Event-Logs? > (evntwin.exe - which translates Evenlog-entries to SNMP-Traps - is IMHO > very ugly) > there are a number of ways including 1 Ugly but do-able Use the MS program whose name escapes me (ELDUMP ?) to periodically (scheduled by at) converts Event Logs to flat files (with fields delimited by spaces or commas) and write the file to a share that Nagios can access and check. 2 Less ugly and do-able Use a neat-o program like 'Backlog' or 'Snare' that runs on NT as a service and filters events being sent to the Event Log and writes them to a syslog server. I have used the BackLog version on NT4 SP6. GPL, easy to install and configure, hard to ask for more (Oh, and made in Australia). There are Nag standard and contributed plugins that can check the logs on the Syslog server. > > Chris > Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Wed Mar 19 13:04:41 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Wed, 19 Mar 2003 09:04:41 -0300 Subject: FW: 3D Status map Message-ID: Could anybody help me ? Thanks, Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo Rebello Sent: ter?a-feira, 18 de mar?o de 2003 12:19 To: 'Nagios Users (E-mail)' Subject: RE: [Nagios-users] 3D Status map When I click on the "3-D Status Map" link I dont see anything. I installed VRML client (Cosmo player), but the "3-D status map" doesn't work yet. I enable Java in my browser, also. Thank you. Regards, Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz (UOL) Sent: sexta-feira, 14 de mar?o de 2003 10:42 To: 'Paul Clayton'; 'Nagios Users (E-mail)' Subject: RES: [Nagios-users] 3D Status map Download a VRML client. It's in the FAQs. http://www.nagios.org/faqs/viewfaq.php?faq_id=52 -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul Clayton Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 Para: Nagios Users (E-mail) Assunto: [Nagios-users] 3D Status map Gurus, Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " box. The URL looks right, and the permissions are fine for the file. Any ideas why I don't get the display. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 **************************************************************************** *************** This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. **************************************************************************** ************** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tomas.hautala at adm.vxu.se Wed Mar 19 12:56:12 2003 From: tomas.hautala at adm.vxu.se (Tomas Hautala) Date: Wed, 19 Mar 2003 12:56:12 +0100 Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: <3E785ADC.9020802@adm.vxu.se> Looks like you are missing a perl module. Try the folowing. perl -MCPAN -e "install SNMP" hope this helps. ---------------------------------- Tomas Hautala University of V?xj?, It-department Phone:+46 (0)470 - 708515 Cell:+46 (0)708 - 901066 Mail:tomas.hautala at adm.vxu.se David Adams wrote: > Hi Everyone, > > Thanks for all the help so far. I am trying to run check_ifstatus and > i'm getting the following error > > # ./check_ifstatus > Can't locate Net/SNMP.pm in @INC (@INC contains: > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd > /usr/libdata/perl5/site_perl/i386-openbsd > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be the > problem? I also had trouble installing net-snmp on openbsd3.0 and had to > use options to exclude some of the MIB's. > > Has anyone else using openbsd run in to these problems? > > thanks > > Dave > > -----Original Message----- > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > *Sent:* 18 March 2003 15:39 > *To:* David Adams; nagios-users at lists.sourceforge.net > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > Try the plugin check_ifstatus, work well for detecting link status. > > */David Adams /* wrote: > > Greetings all, > > Is there a way to monitor link states, interface states, > processor load etc on Cisco routers? I'm assuming this would > have to be done using check_snmp. > If that's how it's done, does anyone have any MIB's or link to a > resource that could get me started? Of course, there is always > the jackpot, has anyone made any plugins for Cisco kit ;-) > > Thanks > > Dave > > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! Platinum > > - Watch CBS' NCAA March Madness, live on your desktop > ! ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Wed Mar 19 13:30:55 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 19 Mar 2003 07:30:55 -0500 Subject: [Nagiosplug-help] RE: Compiling plugins for Tru64 In-Reply-To: <20030319070706.2033.qmail@web12603.mail.yahoo.com> References: <20030319070706.2033.qmail@web12603.mail.yahoo.com> Message-ID: <1048077055.24546.7.camel@miles.debisschop.net> On Wed, 2003-03-19 at 02:07, hrishy wrote: > Hi Voon > > Can you please mail me the final 1.3.0 source code > along with the make files..or instruct me how to > download them..i was not able to trace the 1.3.0 > version on the CVS browser cvs co -r r1_3_0 > > regards > Hrishy > > > --- "Voon, Ton" wrote: > Copying > to nagiosplug-help mailing list > > > > There has been reported success on Tru64 (not sure > > which versions) for the > > final 1.3.0 release. Please can you try and compile > > and confirm the Tru64 > > versions. > > > > Also, check_nagios and check_swap do not currently > > work so if you manage to > > fix these, please let us know. > > > > Ton > > > > > -----Original Message----- > > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > To: Nagios Users (E-mail) > > > Subject: [Nagios-users] Compiling plugins for > > Tru64 > > > > > > Guys, > > > > > > Anybody had any luck with compiling plugins on > > Tru64 4.0 and 5.1 > > > > > > Regards > > > > > > Unix like TeePee no windows, no gates, Apache > > inside. > > > Paul Clayton > > > > > > > > > This private and confidential e-mail has been sent > > to you by Egg. > > The Egg group of companies includes Egg Banking plc > > (registered no. 2999842), Egg Financial Products Ltd > > (registered > > no. 3319027) and Egg Investments Ltd (registered no. > > 3403963) which > > carries out investment business on behalf of Egg and > > is regulated > > by the Financial Services Authority. > > Registered in England and Wales. Registered offices: > > 1 Waterhouse Square, > > 138-142 Holborn, London EC1N 2NA. > > If you are not the intended recipient of this e-mail > > and have > > received it in error, please notify the sender by > > replying with > > 'received in error' as the subject and then delete > > it from your > > mailbox. > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code > > think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat > > just for playing. > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version > > (-v) and OS when reporting any issue. > > ::: Messages without supporting info will risk being > > sent to /dev/null > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagiosplug-help mailing list > Nagiosplug-help at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagiosplug-help > ::: Please include plugins version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From philc at foundation-it.com Wed Mar 19 11:50:32 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Wed, 19 Mar 2003 10:50:32 -0000 Subject: nagios http_check ssl Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909EC96@netfinity-1.foundation-it.local> > From: Ben.Farris at key3media.com [mailto:Ben.Farris at key3media.com] > > For some reason I cant seem to compile ssl support into check_http. > > I configured the nagios plugins as follows: > > ./configure --prefix=/opt/nagios --with-nagios-user=nagios > --with-nagios-group=nagios --enable-SSL --with-SMCossl > --with-openssl=/usr/local/ssl > > and after installing the plugins I always get... > > Tue Mar 18 13:42:03 (/opt/nagios/libexec) > root at monitor# ./check_http --ssl > check_http: invalid option - SSL is not available > > Any ideas??? Is your installation of OpenSSL definitely in /usr/local/ssl? Is ssl.h (for example) in /usr/local/ssl/include/openssl? Can you run your configure command with "| grep -i ssl" on the end (without the quotes) and post the output? Phil ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 19 14:15:23 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 19 Mar 2003 08:15:23 -0500 (EST) Subject: Monitoring Cisco Routers In-Reply-To: <3E785ADC.9020802@adm.vxu.se> References: <3E785ADC.9020802@adm.vxu.se> Message-ID: Yes - missing a perl module... The correct one is Net::SNMP not SNMP perl -MCPAN -e'install Net::SNMP' There are some pre-req, but the install process should walk you through those.. -sg On Wed, 19 Mar 2003, Tomas Hautala wrote: > Looks like you are missing a perl module. > Try the folowing. > > perl -MCPAN -e "install SNMP" > > hope this helps. > > > > ---------------------------------- > Tomas Hautala > University of V?xj?, It-department > Phone:+46 (0)470 - 708515 > Cell:+46 (0)708 - 901066 > Mail:tomas.hautala at adm.vxu.se > > > > David Adams wrote: > > Hi Everyone, > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > i'm getting the following error > > > > # ./check_ifstatus > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd > > /usr/libdata/perl5/site_perl/i386-openbsd > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be the > > problem? I also had trouble installing net-snmp on openbsd3.0 and had to > > use options to exclude some of the MIB's. > > > > Has anyone else using openbsd run in to these problems? > > > > thanks > > > > Dave > > > > -----Original Message----- > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > *Sent:* 18 March 2003 15:39 > > *To:* David Adams; nagios-users at lists.sourceforge.net > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > Try the plugin check_ifstatus, work well for detecting link status. > > > > */David Adams /* wrote: > > > > Greetings all, > > > > Is there a way to monitor link states, interface states, > > processor load etc on Cisco routers? I'm assuming this would > > have to be done using check_snmp. > > If that's how it's done, does anyone have any MIB's or link to a > > resource that could get me started? Of course, there is always > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > Thanks > > > > Dave > > > > > > ------------------------------------------------------------------------ > > Do you Yahoo!? > > Yahoo! Platinum > > > > - Watch CBS' NCAA March Madness, live on your desktop > > ! > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chr at gli-micram.de Wed Mar 19 14:26:21 2003 From: chr at gli-micram.de (Christian Malolepszy) Date: Wed, 19 Mar 2003 14:26:21 +0100 Subject: 3D Status map References: Message-ID: <053901c2ee1b$21bd0a80$e105000a@micram.de> do you see the cosmo player ui in your browser ? what kind of browser you are using ? i use cosmo player with ie and phoenix/gozilla and it works fine only the dark vrml images are a problem ----- Original Message ----- From: "Hugo Rebello" To: "'Nagios Users (E-mail) '" Sent: Wednesday, March 19, 2003 1:04 PM Subject: FW: [Nagios-users] 3D Status map > Could anybody help me ? > > Thanks, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo > Rebello > Sent: ter?a-feira, 18 de mar?o de 2003 12:19 > To: 'Nagios Users (E-mail)' > Subject: RE: [Nagios-users] 3D Status map > > > When I click on the "3-D Status Map" link I dont see anything. > I installed VRML client (Cosmo player), but the "3-D status map" doesn't > work yet. > I enable Java in my browser, also. > > > Thank you. > > Regards, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz > (UOL) > Sent: sexta-feira, 14 de mar?o de 2003 10:42 > To: 'Paul Clayton'; 'Nagios Users (E-mail)' > Subject: RES: [Nagios-users] 3D Status map > > > Download a VRML client. It's in the FAQs. > > http://www.nagios.org/faqs/viewfaq.php?faq_id=52 > > -----Mensagem original----- > De: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul Clayton > Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 > Para: Nagios Users (E-mail) > Assunto: [Nagios-users] 3D Status map > > > Gurus, > > Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " > box. The URL looks right, and the permissions are fine for the file. Any > ideas why I don't get the display. > > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > > > > **************************************************************************** > *************** > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited (or its > affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > > notify the sender by e-mail. In such a case reading, reproducing, printing > or > further dissemination of this e-mail is strictly prohibited and may be > unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > **************************************************************************** > ************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > --- > Incoming mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Wed Mar 19 14:38:21 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Wed, 19 Mar 2003 08:38:21 -0500 Subject: nrpe not working References: Message-ID: <3E7872CD.9C9F5EC@algonquincollege.com> Exactly, after I sent the message, took a closely check, I got it. Sorry to bother you. Thanks, Emily "Carroll, Jim P [Contractor]" wrote: > In checkcommands.cfg, you're passing a "-H" switch to check_nrpe. However, > check_nrpe doesn't use the -H switch. > > Remove that and you should be fine. > > jc > > > -----Original Message----- > > From: emily zhou [mailto:Emily.Zhou at algonquincollege.com] > > Sent: Tuesday, March 18, 2003 4:46 PM > > To: Carroll, Jim P [Contractor] > > Cc: 'Jeff McKeon'; Nagios List > > Subject: Re: [Nagios-users] nrpe not working > > > > > > Hi JC, > > I guess you have experience with NRPE, could you give me some clue? > > I use command line working fine: (Both Server and Client > > are Solaris 8) > > ~libexec/check_nrpe -c check_disk1 > > DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] > > > > However, when I put in the nagios, it's not working, the > > status information is : > > Incorrect command line arguments supplied, my config file this: > > > > in checkcommands.cfg: > > # 'check_nrpe' command definition > > define command{ > > command_name check_nrpe > > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ > > } > > > > In services.cfg: > > define service{ > > use generic-service > > host_name netsrv > > service_description File System / Check > > is_volatile 0 > > check_period 24x7 > > max_check_attempts 3 > > normal_check_interval 5 > > retry_check_interval 1 > > contact_groups unix-admins > > notification_interval 120 > > notification_period 24x7 > > notification_options c,r > > check_command check_nrpe!check_disk1 > > name remotefstemp > > } > > > > In remote server's nrpe.cfg, the check_disk1 is defined, no > > doubt about that, as > > the command line is working. > > Any help would be appreciated. > > Thanks, > > Emily > > > > "Carroll, Jim P [Contractor]" wrote: > > > > > Try telnetting to port 5666 on the target host; see if you > > get a connection. > > > > > > Try installed check_nrpe on the target host and doing this command: > > > > > > ./check_nrpe localhost -c check_disk1 > > > > > > Let us know how that goes. > > > > > > jc > > > > > > > -----Original Message----- > > > > From: Jeff McKeon [mailto:jsm at inpro.net] > > > > Sent: Monday, November 25, 2002 2:32 PM > > > > To: Nagios List > > > > Subject: [Nagios-users] nrpe not working > > > > > > > > > > > > Hey guys/gals, > > > > > > > > Needed to set up linux disk monitoring of a remote host. > > downloaded > > > > nrpe (as suggested by mailing list) and installed the > > daemon on the > > > > remote host according to the directions. Also copied the > > check_disk > > > > plugin to that remote server. > > > > > > > > installed on the nagios host server and coped the > > check_nrpe to the > > > > /usr/local/nagios/libexec dir. > > > > > > > > confirmed that a check_disk command issued at the command > > prompt will > > > > work on the remote host. So at least I know that works... > > > > > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > > > > > below is the nrpe xinetd file I've modified. > > > > > > > > Problem:::: > > > > > > > > If on the nagios host machine I issue: > > > > > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ > > > > [jsm at rh80-jsm libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > > > CHECK_NRPE: Error receiving data from host. > > > > [jsm at rh80-jsm libexec]$ > > > > > > > > I get the error shown. > > > > > > > > If I look on the remote host in the var/log/messages file I get: > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > Any suggestions on what I'm doing wrong? > > > > > > > > # default: on > > > > # description: NRPE > > > > service nrpe > > > > { > > > > flags = REUSE > > > > socket_type = stream > > > > wait = no > > > > user = nagios > > > > server = /usr/local/nagios/libexec/nrpe > > > > server_args = -i /etc/nrpe.cfg > > > > log_on_failure += USERID > > > > disable = no > > > > only_from = 127.0.0.1 10.16.2.101 > > > > } > > > > > > > > > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > > handheld. Power & Color in a compact size! > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > > _______________________________________________ > > > > Nagios-users mailing list > > > > Nagios-users at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > handheld. Power & Color in a compact size! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeff at unixisgod.com Wed Mar 19 15:14:22 2003 From: jeff at unixisgod.com (Jeff Rodriguez) Date: Wed, 19 Mar 2003 07:14:22 -0700 Subject: Web-Based config Message-ID: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> Does anyone know if there is a web-based configuration tool for Nagios? I hope there is otherwise I need to make one ;) Thanks, Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From pascal.wessel at media-online.ch Wed Mar 19 15:35:01 2003 From: pascal.wessel at media-online.ch (Pascal Wessel) Date: Wed, 19 Mar 2003 15:35:01 +0100 Subject: Web-Based config In-Reply-To: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> References: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> Message-ID: <000701c2ee24$b984b2b0$bd28bb0a@mediaonline.ch> Yes: Nagat http://sourceforge.net/projects/nagat Best regards, Pascal -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jeff Rodriguez Sent: mercredi, 19. mars 2003 15:14 To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Web-Based config Does anyone know if there is a web-based configuration tool for Nagios? I hope there is otherwise I need to make one ;) Thanks, Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From jens.kruse at mobilcom.de Wed Mar 19 15:57:03 2003 From: jens.kruse at mobilcom.de (Jens Kruse) Date: Wed, 19 Mar 2003 15:57:03 +0100 Subject: Monitoring Cisco Routers References: Message-ID: <3E78853F.9050205@mobilcom.de> Hi David, David Adams wrote: > # ./check_ifstatus > Can't locate Net/SNMP.pm in @INC (@INC contains: > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd > /usr/libdata/perl5/site_perl/i386-openbsd > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > BEGIN failed--compilation aborted at ./check_ifstatus line 35. You have to install a Perl Module called Net::SNMP, it's either delivered through your distribution (i.e. SuSE - Perl-Net-SNMP) or you can get it here: http://search.cpan.org/author/DTOWN/Net-SNMP-4.0.3/ Read the INSTALL or mail me, if you further questions how to handle this module ... Regards, Jens > -----Original Message----- > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > *Sent:* 18 March 2003 15:39 > *To:* David Adams; nagios-users at lists.sourceforge.net > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > Try the plugin check_ifstatus, work well for detecting link status. > > */David Adams /* wrote: > > Greetings all, > > Is there a way to monitor link states, interface states, > processor load etc on Cisco routers? I'm assuming this would > have to be done using check_snmp. > If that's how it's done, does anyone have any MIB's or link to a > resource that could get me started? Of course, there is always > the jackpot, has anyone made any plugins for Cisco kit ;-) > > Thanks > > Dave > > > ------------------------------------------------------------------------ > Do you Yahoo!? > Yahoo! Platinum > > - Watch CBS' NCAA March Madness, live on your desktop > ! > -- Mit freundlichen Gr??en Jens Kruse Linux Systemadministration MobilCom AG Hollerstra?e 126 24782 B?delsdorf Telefon: +49 (0)4331/ 447 - 2168 Telefax: +49 (0)4331/ 434 - 4010 jens.kruse at mobilcom.de Besucher: Am Friedrichsbrunnen ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Aaron.Conaway at HOSystems.com Wed Mar 19 16:04:05 2003 From: Aaron.Conaway at HOSystems.com (Aaron Conaway) Date: Wed, 19 Mar 2003 10:04:05 -0500 Subject: Web-Based config Message-ID: <7D55A9A792CFA24C8918768B5F977A21C630BF@quigon.hosystems> I believe there is a tool called Nagat for that purpose. I've never used, but I'm sure someone in the list can comment on it. ---------- Aaron Conaway Network Engineer III Verisign, Inc. -- Telecom Services Division http://www.verisign.com Office: 912.527.4343 Fax: 912.527.4014 -----Original Message----- From: Jeff Rodriguez [mailto:jeff at unixisgod.com] Sent: Wednesday, March 19, 2003 9:14 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Web-Based config Does anyone know if there is a web-based configuration tool for Nagios? I hope there is otherwise I need to make one ;) Thanks, Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastian.schubert at sskm.de Wed Mar 19 15:53:57 2003 From: sebastian.schubert at sskm.de (Sebastian Schubert) Date: 19 Mar 2003 15:53:57 +0100 Subject: Web-Based config In-Reply-To: <000701c2ee24$b984b2b0$bd28bb0a@mediaonline.ch> References: <000701c2ee24$b984b2b0$bd28bb0a@mediaonline.ch> Message-ID: <1048085637.11684.8.camel@lnx024071100.vz.intra.sskm.de> Am Mit, 2003-03-19 um 15.35 schrieb Pascal Wessel: > > > Yes: Nagat > > http://sourceforge.net/projects/nagat > > Best regards, > Pascal one problem with nagat is, that the last changes were made nearly 10 month ago, and i can't see any work going on ... > Does anyone know if there is a web-based configuration tool > for Nagios? I hope there is otherwise I need to make one ;) > > Thanks, > > Jeff i've written one myself... you might want to have a look at: http://nagiosconf.sskm.net/ to see the webinterface http://nagiosconf.sskm.net/sql/ to get a view of the database lying behind the whole thing .. the frontend is written in php with some javascript addons for the checks, and the backend is written in perl by one of our trainees .. mysql takes care of the data ;) i've posted the link some time ago to the list, but the interface was only in german ... now it comes with some language templates (german and english *G*) bye basti -- "In god we trust, the Rest we Monitor" Sebastian Schubert - RHCE Stadtsparkasse Munich Network and Security Ungererstr. 75 80805 Munich - Germany -------------------------- sebastian.schubert at sskm.de Tel.+49 (89) 2167-6399 Fax.+49 (89) 2167-86399 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 248 bytes Desc: Dies ist ein digital signierter Nachrichtenteil URL: From Stanley.G.Martin at mail.sprint.com Wed Mar 19 16:16:36 2003 From: Stanley.G.Martin at mail.sprint.com (Stanley.G.Martin at mail.sprint.com) Date: Wed, 19 Mar 2003 09:16:36 -0600 Subject: Web-Based config Message-ID: There's one called Nagat. It's written in PHP.? However, there's no backend database support, it's all config file support.? The author has left it up to anyone bold enough to write the backend. ? Stanley G. Martin Sprint - ISS Enterprise App/Decision Support Services Stanley.G.Martin at mail.sprint.com -----Original Message----- From: jeff [mailto:jeff at unixisgod.com] Sent: Wednesday, March 19, 2003 8:14 AM To: nagios-users Subject: [Nagios-users] Web-Based config Does anyone know if there is a web-based configuration tool for Nagios? I hope there is otherwise I need to make one ;) ? Thanks, ? Jeff ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rlagazo at alterna.com Wed Mar 19 16:39:31 2003 From: rlagazo at alterna.com (Robert Lagazo) Date: Wed, 19 Mar 2003 08:39:31 -0700 Subject: Help with retention data error Message-ID: <3E788F33.7090603@alterna.com> Although Nagios starts up fine and the monitoring seems normal, I keep getting this error: Error: Failed to grab configuration information for retention data I've browsed through the archives and I can't seem to find anything referring to this. Hope any1 could help. =) -------------- next part -------------- An HTML attachment was scrubbed... URL: From David at feedroom.com Wed Mar 19 16:39:06 2003 From: David at feedroom.com (David Gitman) Date: Wed, 19 Mar 2003 10:39:06 -0500 Subject: Web-Based config Message-ID: Try NAGAT. I couldn't get it working. [-d] -----Original Message----- From: Jeff Rodriguez [mailto:jeff at unixisgod.com] Sent: Wednesday, March 19, 2003 9:14 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Web-Based config Does anyone know if there is a web-based configuration tool for Nagios? I hope there is otherwise I need to make one ;) Thanks, Jeff -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Wed Mar 19 17:03:07 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Wed, 19 Mar 2003 13:03:07 -0300 Subject: 3D Status map In-Reply-To: <053901c2ee1b$21bd0a80$e105000a@micram.de> References: <053901c2ee1b$21bd0a80$e105000a@micram.de> Message-ID: Where the cosmo player is in my browser ? I don't to get find. I use ie and when I select "3D status map" the see only dark . Thank you. -----Original Message----- From: Christian Malolepszy [mailto:chr at gli-micram.de] Sent: quarta-feira, 19 de mar?o de 2003 10:26 To: Hugo Rebello; 'Nagios Users (E-mail) ' Subject: Re: [Nagios-users] 3D Status map do you see the cosmo player ui in your browser ? what kind of browser you are using ? i use cosmo player with ie and phoenix/gozilla and it works fine only the dark vrml images are a problem ----- Original Message ----- From: "Hugo Rebello" To: "'Nagios Users (E-mail) '" Sent: Wednesday, March 19, 2003 1:04 PM Subject: FW: [Nagios-users] 3D Status map > Could anybody help me ? > > Thanks, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo > Rebello > Sent: ter?a-feira, 18 de mar?o de 2003 12:19 > To: 'Nagios Users (E-mail)' > Subject: RE: [Nagios-users] 3D Status map > > > When I click on the "3-D Status Map" link I dont see anything. > I installed VRML client (Cosmo player), but the "3-D status map" doesn't > work yet. > I enable Java in my browser, also. > > > Thank you. > > Regards, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz > (UOL) > Sent: sexta-feira, 14 de mar?o de 2003 10:42 > To: 'Paul Clayton'; 'Nagios Users (E-mail)' > Subject: RES: [Nagios-users] 3D Status map > > > Download a VRML client. It's in the FAQs. > > http://www.nagios.org/faqs/viewfaq.php?faq_id=52 > > -----Mensagem original----- > De: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul Clayton > Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 > Para: Nagios Users (E-mail) > Assunto: [Nagios-users] 3D Status map > > > Gurus, > > Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File Download " > box. The URL looks right, and the permissions are fine for the file. Any > ideas why I don't get the display. > > > Regards > > Unix like TeePee no windows, no gates, Apache inside. > Paul Clayton > Global Unix Co-ordinator > Intec Telecom Systems > Ph +27 (0) 21 4309000 > Fax +27 (0) 21 4309025 > Mobile +27(0) 832853403 > > > > > **************************************************************************** > *************** > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited (or its > affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > > notify the sender by e-mail. In such a case reading, reproducing, printing > or > further dissemination of this e-mail is strictly prohibited and may be > unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > **************************************************************************** > ************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > --- > Incoming mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Wed Mar 19 17:09:52 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Wed, 19 Mar 2003 13:09:52 -0300 Subject: RES: Web-Based config In-Reply-To: <1048085637.11684.8.camel@lnx024071100.vz.intra.sskm.de> References: <1048085637.11684.8.camel@lnx024071100.vz.intra.sskm.de> Message-ID: Pretty cool. Feel free to share it here in list... Att., Sandro Vaz -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Sebastian Schubert Enviada em: quarta-feira, 19 de mar?o de 2003 11:54 Para: Pascal Wessel Cc: 'Jeff Rodriguez'; nagios-users at lists.sourceforge.net Assunto: RE: [Nagios-users] Web-Based config Am Mit, 2003-03-19 um 15.35 schrieb Pascal Wessel: > > > Yes: Nagat > > http://sourceforge.net/projects/nagat > > Best regards, > Pascal one problem with nagat is, that the last changes were made nearly 10 month ago, and i can't see any work going on ... > Does anyone know if there is a web-based configuration tool > for Nagios? I hope there is otherwise I need to make one ;) > > Thanks, > > Jeff i've written one myself... you might want to have a look at: http://nagiosconf.sskm.net/ to see the webinterface http://nagiosconf.sskm.net/sql/ to get a view of the database lying behind the whole thing .. the frontend is written in php with some javascript addons for the checks, and the backend is written in perl by one of our trainees .. mysql takes care of the data ;) i've posted the link some time ago to the list, but the interface was only in german ... now it comes with some language templates (german and english *G*) bye basti -- "In god we trust, the Rest we Monitor" Sebastian Schubert - RHCE Stadtsparkasse Munich Network and Security Ungererstr. 75 80805 Munich - Germany -------------------------- sebastian.schubert at sskm.de Tel.+49 (89) 2167-6399 Fax.+49 (89) 2167-86399 --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.463 / Virus Database: 262 - Release Date: 17/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.463 / Virus Database: 262 - Release Date: 17/3/2003 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Wed Mar 19 16:42:37 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Wed, 19 Mar 2003 16:42:37 +0100 (CET) Subject: template config file Message-ID: <20030319154237.11719.qmail@web10908.mail.yahoo.com> Hello, I have a little question concerning Nagios config files. I'd like to seperate templates definitions from config files (services.cfg, hosts.cfg,...) Is it possible to do this ? Thanks, Steve ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Wed Mar 19 17:14:18 2003 From: mpowell at ena.com (Marc Powell) Date: Wed, 19 Mar 2003 10:14:18 -0600 Subject: 3D Status map Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED688@mismail.ena.com> http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=cosmo+player > -----Original Message----- > From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] > Sent: Wednesday, March 19, 2003 10:03 AM > To: Christian Malolepszy; 'Nagios Users (E-mail) ' > Subject: RE: [Nagios-users] 3D Status map > > Where the cosmo player is in my browser ? I don't to get find. > I use ie and when I select "3D status map" the see only dark . > > Thank you. > > -----Original Message----- > From: Christian Malolepszy [mailto:chr at gli-micram.de] > Sent: quarta-feira, 19 de mar?o de 2003 10:26 > To: Hugo Rebello; 'Nagios Users (E-mail) ' > Subject: Re: [Nagios-users] 3D Status map > > > do you see the cosmo player ui in your browser ? > what kind of browser you are using ? > i use cosmo player with ie and phoenix/gozilla and it works fine > only the dark vrml images are a problem > > ----- Original Message ----- > From: "Hugo Rebello" > To: "'Nagios Users (E-mail) '" > Sent: Wednesday, March 19, 2003 1:04 PM > Subject: FW: [Nagios-users] 3D Status map > > > > Could anybody help me ? > > > > Thanks, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo > > Rebello > > Sent: ter?a-feira, 18 de mar?o de 2003 12:19 > > To: 'Nagios Users (E-mail)' > > Subject: RE: [Nagios-users] 3D Status map > > > > > > When I click on the "3-D Status Map" link I dont see anything. > > I installed VRML client (Cosmo player), but the "3-D status map" doesn't > > work yet. > > I enable Java in my browser, also. > > > > > > Thank you. > > > > Regards, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz > > (UOL) > > Sent: sexta-feira, 14 de mar?o de 2003 10:42 > > To: 'Paul Clayton'; 'Nagios Users (E-mail)' > > Subject: RES: [Nagios-users] 3D Status map > > > > > > Download a VRML client. It's in the FAQs. > > > > http://www.nagios.org/faqs/viewfaq.php?faq_id=52 > > > > -----Mensagem original----- > > De: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul > Clayton > > Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 > > Para: Nagios Users (E-mail) > > Assunto: [Nagios-users] 3D Status map > > > > > > Gurus, > > > > Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File > Download > " > > box. The URL looks right, and the permissions are fine for the file. Any > > ideas why I don't get the display. > > > > > > Regards > > > > Unix like TeePee no windows, no gates, Apache inside. > > Paul Clayton > > Global Unix Co-ordinator > > Intec Telecom Systems > > Ph +27 (0) 21 4309000 > > Fax +27 (0) 21 4309025 > > Mobile +27(0) 832853403 > > > > > > > > > > > ************************************************************************** > ** > > *************** > > > > > > This e-mail and any attachments are confidential and may also be > privileged > > and/or copyright material of Independent Technology Systems Limited (or > its > > affiliated companies). If you are not the intended or authorised > recipient > > of this email or have received it in error, please delete it immediately > and > > > > notify the sender by e-mail. In such a case reading, reproducing, > printing > > or > > further dissemination of this e-mail is strictly prohibited and may be > > unlawful. > > > > Independent Technology Systems Limited does not represent or warrant > that > > an attachment hereto is free from computer viruses or other defects. > > > > The opinions expressed in this e-mail and any of the attachments may > > be those of the author and are not necessarily those of Independent > > Technology Systems Limited. > > > ************************************************************************** > ** > > ************** > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > --- > > Incoming mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > > --- > > Outgoing mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mmcclure at pneservices.com Wed Mar 19 17:40:14 2003 From: mmcclure at pneservices.com (Mike McClure) Date: Wed, 19 Mar 2003 10:40:14 -0600 (CST) Subject: Web-Based config In-Reply-To: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> References: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> Message-ID: <2083.192.168.1.9.1048092014.squirrel@xyzzy.homeip.net> I'd really like to see a Webmin module for this. Tim Neimueller made a module for Netsaint a long time ago, but it doesn't work with the template configs. I started to modify Tim's code to work w/ the templates, but lost interest. If someone wants to help me finish it, I would be willing to pick it back up. It's in Perl, of course. The main reason I lost interest is because I couldn't figure out an elegant way to deal with objects in different files. For instance, how do you deal with a template in one file, and it getting used with an object in a different file? I'd hate to force a 'single file' configuration on users. Any takers? - Mike > Does anyone know if there is a web-based configuration tool for Nagios? I hope there > is otherwise I need to make one ;) > > Thanks, > > Jeff > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 19 17:30:52 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 19 Mar 2003 10:30:52 -0600 Subject: R: spark rpm Message-ID: What about compiling it on a non-hardened machine, then moving/installing it on the target machine? jc > -----Original Message----- > From: Cristian DiMalio [mailto:cristian.dimalio at lisit.it] > Sent: Wednesday, March 19, 2003 1:18 AM > To: Andy Harrison > Cc: nagios-users at lists.sourceforge.net > Subject: Re: R: [Nagios-users] spark rpm > > > can't because that machine are harden > > Andy Harrison ha scritto: > > >-----BEGIN PGP SIGNED MESSAGE----- > > > > > >- ------------------------------------------------------------- > >On 18-Mar-2003, Cristian DiMalio wrote message "R: > [Nagios-users] spark rpm" > >- ------------------------------------------------------------- > > > > > >>Of corse > >>But I have a problem to compile on my sun, because cannot > install gcc to > >>compile, and I only need some plugins to use with nrpe, > like check_disk > >>check_load check_users and check_procs > >>Does anyone send me? > >>Tx > >> > >> > > > >Can't because you don't have root, or can't because you > don't know how? > > > >The gcc package is available on sunfreeware.com. > > > > > > > >- -- > >Andy Harrison > >ah##@httpsite.com > >ICQ: 123472 AIM/Y!: AHinMaine > >homepage: http://www.nachoz.com > > > >-----BEGIN PGP SIGNATURE----- > >Version: PGP 6.5.8 > > > >iQCVAwUBPnc6rVPEkLgodAWVAQHx8AP+Ja4SW+zui8bZQHsIAeyWzh1N1NBBZhW/ > >IIev23YWrJtgKcip1T8+9pGcf2KYOKtyN9nkBoEucvS3sjF2inPkAcyxx/J9fUHQ > >rZqqLobUZOekQNr5yK0n17ptnQK0vFVSEVcuLtnhD2V2lOtHCucbGbG28lmVotOY > >n55OPCl8WsQ= > >=WjJC > >-----END PGP SIGNATURE----- > > > > > >------------------------------------------------------- > >This SF.net email is sponsored by: Does your code think in ink? > >You could win a Tablet PC. Get a free Tablet PC hat just for > playing. > >What are you waiting for? > >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > >_______________________________________________ > >Nagios-users mailing list > >Nagios-users at lists.sourceforge.net > >https://lists.sourceforge.net/lists/listinfo/nagios-users > >::: Please include Nagios version, plugin version (-v) and > OS when reporting any issue. > >::: Messages without supporting info will risk being sent to > /dev/null > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 19 17:28:36 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 19 Mar 2003 10:28:36 -0600 Subject: nrpe not working Message-ID: $ ./check_nrpe -H gold -c some_test Incorrect command line arguments supplied NRPE Plugin for Nagios Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Version: 1.5 Last Modified: 06-03-2002 License: GPL Usage: ./check_nrpe [-p port] [-c command] [-wt warn_time] [-ct crit_time] [-to to_sec] Options: = The IP address of the host running the NRPE daemon [port] = The port on which the daemon is running - default is 5666 [command] = The name of the command that the remote daemon should run [to_sec] = Number of seconds before connection attempt times out. Default timeout is 10 seconds [snip] Mine doesn't seem to like the -H switch. Could be a difference in versions. *shrug* But the "Incorrect command line arguments supplied" does look strikingly similar to what Emily Zhou is experiencing. I stand by my suggestion. jc > -----Original Message----- > From: Paul Clayton [mailto:paul.clayton at intec.co.za] > Sent: Wednesday, March 19, 2003 12:00 AM > To: Carroll, Jim P [Contractor]; 'emily zhou' > Cc: Nagios List > Subject: RE: [Nagios-users] nrpe not working > > > Guys, > > this is my check_nrpe command in checkcommands.cfg and it works > > # 'check_nrpe' command definition > define command{ > command_name check_nrpe > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -p 5666 -c > $ARG1$ -to 60 > } > > I disagree with Jim, as the -H is required, otherwise how > does check-nrpe > know where to go. > > -----Original Message----- > From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] > Sent: Wednesday, March 19, 2003 2:16 AM > To: 'emily zhou' > Cc: Nagios List > Subject: RE: [Nagios-users] nrpe not working > > > In checkcommands.cfg, you're passing a "-H" switch to > check_nrpe. However, > check_nrpe doesn't use the -H switch. > > Remove that and you should be fine. > > jc > > > -----Original Message----- > > From: emily zhou [mailto:Emily.Zhou at algonquincollege.com] > > Sent: Tuesday, March 18, 2003 4:46 PM > > To: Carroll, Jim P [Contractor] > > Cc: 'Jeff McKeon'; Nagios List > > Subject: Re: [Nagios-users] nrpe not working > > > > > > Hi JC, > > I guess you have experience with NRPE, could you give me some clue? > > I use command line working fine: (Both Server and Client > > are Solaris 8) > > ~libexec/check_nrpe -c check_disk1 > > DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] > > > > However, when I put in the nagios, it's not working, the > > status information is : > > Incorrect command line arguments supplied, my config file this: > > > > in checkcommands.cfg: > > # 'check_nrpe' command definition > > define command{ > > command_name check_nrpe > > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ > > } > > > > In services.cfg: > > define service{ > > use generic-service > > host_name netsrv > > service_description File System / Check > > is_volatile 0 > > check_period 24x7 > > max_check_attempts 3 > > normal_check_interval 5 > > retry_check_interval 1 > > contact_groups unix-admins > > notification_interval 120 > > notification_period 24x7 > > notification_options c,r > > check_command check_nrpe!check_disk1 > > name remotefstemp > > } > > > > In remote server's nrpe.cfg, the check_disk1 is defined, no > > doubt about that, as > > the command line is working. > > Any help would be appreciated. > > Thanks, > > Emily > > > > "Carroll, Jim P [Contractor]" wrote: > > > > > Try telnetting to port 5666 on the target host; see if you > > get a connection. > > > > > > Try installed check_nrpe on the target host and doing > this command: > > > > > > ./check_nrpe localhost -c check_disk1 > > > > > > Let us know how that goes. > > > > > > jc > > > > > > > -----Original Message----- > > > > From: Jeff McKeon [mailto:jsm at inpro.net] > > > > Sent: Monday, November 25, 2002 2:32 PM > > > > To: Nagios List > > > > Subject: [Nagios-users] nrpe not working > > > > > > > > > > > > Hey guys/gals, > > > > > > > > Needed to set up linux disk monitoring of a remote host. > > downloaded > > > > nrpe (as suggested by mailing list) and installed the > > daemon on the > > > > remote host according to the directions. Also copied the > > check_disk > > > > plugin to that remote server. > > > > > > > > installed on the nagios host server and coped the > > check_nrpe to the > > > > /usr/local/nagios/libexec dir. > > > > > > > > confirmed that a check_disk command issued at the command > > prompt will > > > > work on the remote host. So at least I know that works... > > > > > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > > > > > below is the nrpe xinetd file I've modified. > > > > > > > > Problem:::: > > > > > > > > If on the nagios host machine I issue: > > > > > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ > > > > [jsm at rh80-jsm libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > > > CHECK_NRPE: Error receiving data from host. > > > > [jsm at rh80-jsm libexec]$ > > > > > > > > I get the error shown. > > > > > > > > If I look on the remote host in the var/log/messages file I get: > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied > (errno = 13) > > > > > > > > Any suggestions on what I'm doing wrong? > > > > > > > > # default: on > > > > # description: NRPE > > > > service nrpe > > > > { > > > > flags = REUSE > > > > socket_type = stream > > > > wait = no > > > > user = nagios > > > > server = /usr/local/nagios/libexec/nrpe > > > > server_args = -i /etc/nrpe.cfg > > > > log_on_failure += USERID > > > > disable = no > > > > only_from = 127.0.0.1 10.16.2.101 > > > > } > > > > > > > > > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied > (errno = 13) > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > > handheld. Power & Color in a compact size! > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > > _______________________________________________ > > > > Nagios-users mailing list > > > > Nagios-users at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > handheld. Power & Color in a compact size! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just > for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent > to /dev/null > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ************************************************************** > ***************************** > > > This e-mail and any attachments are confidential and may also > be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or > authorised recipient > of this email or have received it in error, please delete it > immediately and > notify the sender by e-mail. In such a case reading, > reproducing, printing or > further dissemination of this e-mail is strictly prohibited > and may be unlawful. > > Independent Technology Systems Limited does not represent or > warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ************************************************************** > **************************** > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fes at users.sourceforge.net Wed Mar 19 17:42:52 2003 From: fes at users.sourceforge.net (Frank Sweetser) Date: Wed, 19 Mar 2003 11:42:52 -0500 Subject: Target Types In-Reply-To: References: Message-ID: <20030319164252.GA17260@erwin.wpi.edu> On Wed, Mar 19, 2003 at 10:33:35AM -0600, Paul Hignutt wrote: > I have a network with about 1200 routers and switches. I am used to using > Cricket for performance trending, and I've installed Nagios for evaluation. > My question is, is there a way of doing hierarchal configurations like the > "target types" that Cricket uses, so that I don't have a hosts.cfg file > with about 2000 entries? You will still need to define a host entry for each host you have, but you can save a lot of work with templates, and by defining services for host groups instead of individual hosts. -- Frank Sweetser fs at wpi.edu WPI Network Engineer ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jwest at kwcorp.com Wed Mar 19 17:34:43 2003 From: jwest at kwcorp.com (Jay West) Date: Wed, 19 Mar 2003 10:34:43 -0600 Subject: Web-Based config References: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> Message-ID: <003a01c2ee35$7252c6a0$033310ac@kwcorp.com> I spent several days a few weeks ago working with nagat. I like the interface, seems like a well thought out package. However, I ran across some very severe bugs in the code, which rendered it all but useless. Then I decided to try the latest CVS version, and unfortunately I must say it was even buggier. Not usable in it's present form at all, so I had to just go and do all the nagios config by hand. I'll wait a month or two and then definitely try nagat again, it would be very sweet if it worked. I guess it's possible that the issues I ran into were FreeBSD-centric, but I doubt it. Many of the issues were things like it would read the config file, but nothing would show in the web interface. The data was there, because it would write it back out when you export it. This was only for one or two of the config files - the others seemed to work. Also, even though the web interface says you can import the files all at once, that won't work. You have to import each file one at a time. I recall there was some bugs more serious than this, but can't think exactly what they were. Yes, I tried the patches posted on the site, then went to the cvs version and things just got worse. I will definitely use it once it works right. Jay West -------------- next part -------------- An HTML attachment was scrubbed... URL: From jcarro10 at sprintspectrum.com Wed Mar 19 17:52:12 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 19 Mar 2003 10:52:12 -0600 Subject: template config file Message-ID: Yes. jc > -----Original Message----- > From: Steve Dussaux [mailto:stevox2000 at yahoo.com] > Sent: Wednesday, March 19, 2003 9:43 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] template config file > > > Hello, > > I have a little question concerning Nagios config files. > I'd like to seperate templates definitions from config files > (services.cfg, hosts.cfg,...) > > Is it possible to do this ? > > Thanks, > Steve > > ___________________________________________________________ > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! > Yahoo! Mail : http://fr.mail.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bernd.huber at us.datex-ohmeda.com Wed Mar 19 17:54:27 2003 From: bernd.huber at us.datex-ohmeda.com (bernd.huber at us.datex-ohmeda.com) Date: Wed, 19 Mar 2003 10:54:27 -0600 Subject: Bernd Huber/US/D-O is out of the office. Message-ID: I will be out of the office starting 03/19/2003 and will not return until 03/25/2003. I will respond to your message when I return. In case of an emergency please contact the helpdesk at ext. 3152. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From phignutt at hotmail.com Wed Mar 19 17:33:35 2003 From: phignutt at hotmail.com (Paul Hignutt) Date: Wed, 19 Mar 2003 10:33:35 -0600 Subject: Target Types Message-ID: I have a network with about 1200 routers and switches. I am used to using Cricket for performance trending, and I've installed Nagios for evaluation. My question is, is there a way of doing hierarchal configurations like the "target types" that Cricket uses, so that I don't have a hosts.cfg file with about 2000 entries? Thanks Paul _________________________________________________________________ Help STOP SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From johnmc at johnmc.org Wed Mar 19 17:46:51 2003 From: johnmc at johnmc.org (John McDonnell) Date: Wed, 19 Mar 2003 08:46:51 -0800 (PST) Subject: notify-by-email In-Reply-To: References: <20030314171129.C1385@hpce.nec.com> Message-ID: On the 14th day of March, I said to myself: > So, what happens when you're running Nagios as user nagios and the emails > all of a sudden change their from address from anonymous@ to > another user? You upgrade the kernel, requiring a reboot and the whole mess sorts itself out :-/ I'm currently placing the blame firmly at qmail's feet. We now return you to your regularly scheduled questions about statusmaps and such ;-> johnmc. -- . johnmc@ | bucketchild.net - +1-408-985-7992 (home) . . http:// | johnmc.org - +1-408-386-3549 (cell) . -- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Wed Mar 19 18:06:26 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Wed, 19 Mar 2003 18:06:26 +0100 Subject: Entering Service State Information In-Reply-To: <001c01c2edd6$e809dd20$3c00a8c0@DavidF>; from Dave.Font@Systime.co.nz on Wed, Mar 19, 2003 at 05:17:57PM +1200 References: <001c01c2edd6$e809dd20$3c00a8c0@DavidF> Message-ID: <20030319180626.B1397@hpce.nec.com> On Wed, Mar 19, 2003 at 05:17:57PM +1200, Dave Font wrote: > > However, I am trying to enter Service State Information to acknowledge a > particular service problem message. > > I type information into the "Entry into Comment:" field, then I [Commit] > > I get the message: Error: Could not stat () command file > '/usr/local/nagios/var/rw/nagios.cmd!' > > I have checked a FAQ and ensured the 'rw' directory is drwxrws--- and is > owned by 'nagios' and group-ownership is 'nagiocmd'. > > I had created a group call 'nagiocmd' > > I have created a user-name called 'nagiosadmin' using htpasswd > > Inside the 'rw' directory is the file nagios.cmd , owned by nagios with > group-ownership nagiocmd > The file is zero size and has permissions prw-rw---- Have another look at http://nagios.sourceforge.net/docs/1_0/commandfile.html especially the part referring to apache. Regards, Rasmus -- Rasmus Plewe NEC High Performance Computing Europe GmbH / DKRZ Bundesstr. 55, D-20146 Hamburg Tel. +49 40 41173281 http://www.hpce.nec.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From drich at employees.org Wed Mar 19 18:00:59 2003 From: drich at employees.org (Dan Rich) Date: Wed, 19 Mar 2003 09:00:59 -0800 (PST) Subject: Web-Based config In-Reply-To: <2083.192.168.1.9.1048092014.squirrel@xyzzy.homeip.net> References: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> <2083.192.168.1.9.1048092014.squirrel@xyzzy.homeip.net> Message-ID: <53091.63.237.201.12.1048093259.squirrel@www.lapseofthought.com> Mike McClure said: > I'd really like to see a Webmin module for this. Tim Neimueller made a module > for Netsaint a long time ago, but it doesn't work with the template configs. I really like the sound of this. > I started to modify Tim's code to work w/ the templates, but lost interest. > If someone wants to help me finish it, I would be willing to pick it back up. > It's in Perl, of course. Since one of my biggest user complaints is the lack of an administrative interface, I may be willing to give you a hand with this. I've already written some code to parse the config files, as I needed to be able to report on them (i.e. someone asked me "What services will I get paged for" and there is no way to generate that with the existing tools). > The main reason I lost interest is because I couldn't figure out an elegant > way to deal with objects in different files. For instance, how do you deal > with a template in one file, and it getting used with an object in a different > file? I'd hate to force a 'single file' configuration on users. When I was thinking of building my own configuration tool, I was going to collapse my multiple configuration files into a single file. The thing is, if you are only administering it via. a web interface, you shouldn't care what the back-end looks like. At least, that was my initial thinking.... -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 19 18:02:15 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 19 Mar 2003 11:02:15 -0600 Subject: template config file Message-ID: http://nagios.sourceforge.net/docs/1_0/configmain.html#cfg_dir Call the file anything you like. Make sure it ends in ".cfg". jc > -----Original Message----- > From: Steve Dussaux [mailto:stevox2000 at yahoo.com] > Sent: Wednesday, March 19, 2003 10:58 AM > To: Carroll, Jim P [Contractor] > Subject: RE: [Nagios-users] template config file > > > Then how can i do ? > I've searching the docs and have found nothing... > > Steve > > --- "Carroll, Jim P [Contractor]" > a ?crit?: > Yes. > > > > jc > > > > > > > -----Original Message----- > > > From: Steve Dussaux [mailto:stevox2000 at yahoo.com] > > > Sent: Wednesday, March 19, 2003 9:43 AM > > > To: nagios-users at lists.sourceforge.net > > > Subject: [Nagios-users] template config file > > > > > > > > > Hello, > > > > > > I have a little question concerning Nagios config files. > > > I'd like to seperate templates definitions from config files > > > (services.cfg, hosts.cfg,...) > > > > > > Is it possible to do this ? > > > > > > Thanks, > > > Steve > > > > > > ___________________________________________________________ > > > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! > > > Yahoo! Mail : http://fr.mail.yahoo.com > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Does your code think in ink? > > > You could win a Tablet PC. Get a free Tablet PC hat just > for playing. > > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin version (-v) and OS > > > when reporting any issue. > > > ::: Messages without supporting info will risk being sent > to /dev/null > > > > > ___________________________________________________________ > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! > Yahoo! Mail : http://fr.mail.yahoo.com > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 19 18:13:06 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 19 Mar 2003 11:13:06 -0600 Subject: Target Types Message-ID: Not all that familiar with Cricket (other than knowing it leverages RRDtool), but perhaps this is what you're looking for: http://nagios.sourceforge.net/docs/1_0/configmain.html#cfg_dir If that's not what you want, then perhaps this: http://nagios.sourceforge.net/docs/1_0/templatetricks.html jc > -----Original Message----- > From: Paul Hignutt [mailto:phignutt at hotmail.com] > Sent: Wednesday, March 19, 2003 10:34 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Target Types > > > I have a network with about 1200 routers and switches. I am > used to using > Cricket for performance trending, and I've installed Nagios > for evaluation. > My question is, is there a way of doing hierarchal > configurations like the > "target types" that Cricket uses, so that I don't have a > hosts.cfg file with > about 2000 entries? > > Thanks > Paul > > > > > > _________________________________________________________________ > Help STOP SPAM with the new MSN 8 and get 2 months FREE* > http://join.msn.com/?page=features/junkmail > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Wed Mar 19 19:05:57 2003 From: russell at quadrix.com (Russell Scibetti) Date: Wed, 19 Mar 2003 13:05:57 -0500 Subject: Config Management Message-ID: <3E78B185.8040808@quadrix.com> There seem to be a lot of people doing independent work on various ways of managing Nagios configuration files. There are people who have designed MySQL DB's to store them, PHP web tools to edit them, and more. I happened to like the MySQL db that someone made through phpMyAdmin, which I would like to add a little to to better reflect the relationships between objects and then submit for public view. With all this work being done by inidividuals, I'm sure that people are re-inventing things that others have already made and didn't know about. So, if you have done any work for handling Nagios configs that you think may be useful to someone else, please respond to this email and either include any relevent attachments or URLs that people can go to. I know that there was mention of a possible new project NATO (Nagios Administration TOol), so anything that we have done individually and share can hopefully be a help to this new project. For organization sake, I can keep track of these various contributions on a webpage until that project gets up and running. If you like this idea, please reply with the configuration management work you have done. Thanks! Russell Scibetti -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Wed Mar 19 18:40:49 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Wed, 19 Mar 2003 14:40:49 -0300 Subject: 3D Status map In-Reply-To: <5DB017510818EC468B05BD7BD9EACF83030ED688@mismail.ena.com> References: <5DB017510818EC468B05BD7BD9EACF83030ED688@mismail.ena.com> Message-ID: I installed Cosmo player, but the screen only stay black. My question is. I need to do anything in Nagios or this problem is VRML ? Thank you. Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quarta-feira, 19 de mar?o de 2003 13:14 To: Hugo Rebello; Christian Malolepszy; Nagios Users (E-mail) Subject: RE: [Nagios-users] 3D Status map http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=cosmo+player > -----Original Message----- > From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] > Sent: Wednesday, March 19, 2003 10:03 AM > To: Christian Malolepszy; 'Nagios Users (E-mail) ' > Subject: RE: [Nagios-users] 3D Status map > > Where the cosmo player is in my browser ? I don't to get find. > I use ie and when I select "3D status map" the see only dark . > > Thank you. > > -----Original Message----- > From: Christian Malolepszy [mailto:chr at gli-micram.de] > Sent: quarta-feira, 19 de mar?o de 2003 10:26 > To: Hugo Rebello; 'Nagios Users (E-mail) ' > Subject: Re: [Nagios-users] 3D Status map > > > do you see the cosmo player ui in your browser ? > what kind of browser you are using ? > i use cosmo player with ie and phoenix/gozilla and it works fine > only the dark vrml images are a problem > > ----- Original Message ----- > From: "Hugo Rebello" > To: "'Nagios Users (E-mail) '" > Sent: Wednesday, March 19, 2003 1:04 PM > Subject: FW: [Nagios-users] 3D Status map > > > > Could anybody help me ? > > > > Thanks, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo > > Rebello > > Sent: ter?a-feira, 18 de mar?o de 2003 12:19 > > To: 'Nagios Users (E-mail)' > > Subject: RE: [Nagios-users] 3D Status map > > > > > > When I click on the "3-D Status Map" link I dont see anything. > > I installed VRML client (Cosmo player), but the "3-D status map" doesn't > > work yet. > > I enable Java in my browser, also. > > > > > > Thank you. > > > > Regards, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz > > (UOL) > > Sent: sexta-feira, 14 de mar?o de 2003 10:42 > > To: 'Paul Clayton'; 'Nagios Users (E-mail)' > > Subject: RES: [Nagios-users] 3D Status map > > > > > > Download a VRML client. It's in the FAQs. > > > > http://www.nagios.org/faqs/viewfaq.php?faq_id=52 > > > > -----Mensagem original----- > > De: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul > Clayton > > Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 > > Para: Nagios Users (E-mail) > > Assunto: [Nagios-users] 3D Status map > > > > > > Gurus, > > > > Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File > Download > " > > box. The URL looks right, and the permissions are fine for the file. Any > > ideas why I don't get the display. > > > > > > Regards > > > > Unix like TeePee no windows, no gates, Apache inside. > > Paul Clayton > > Global Unix Co-ordinator > > Intec Telecom Systems > > Ph +27 (0) 21 4309000 > > Fax +27 (0) 21 4309025 > > Mobile +27(0) 832853403 > > > > > > > > > > > ************************************************************************** > ** > > *************** > > > > > > This e-mail and any attachments are confidential and may also be > privileged > > and/or copyright material of Independent Technology Systems Limited (or > its > > affiliated companies). If you are not the intended or authorised > recipient > > of this email or have received it in error, please delete it immediately > and > > > > notify the sender by e-mail. In such a case reading, reproducing, > printing > > or > > further dissemination of this e-mail is strictly prohibited and may be > > unlawful. > > > > Independent Technology Systems Limited does not represent or warrant > that > > an attachment hereto is free from computer viruses or other defects. > > > > The opinions expressed in this e-mail and any of the attachments may > > be those of the author and are not necessarily those of Independent > > Technology Systems Limited. > > > ************************************************************************** > ** > > ************** > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > --- > > Incoming mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > > --- > > Outgoing mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Wed Mar 19 19:01:31 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Wed, 19 Mar 2003 15:01:31 -0300 Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: My Nagios machine doesn't has access to internet. Can I install "Net::SNMP" of another way ? Thanks, Hugo -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu Ghosh Sent: quarta-feira, 19 de mar?o de 2003 10:15 To: David Adams; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Monitoring Cisco Routers Yes - missing a perl module... The correct one is Net::SNMP not SNMP perl -MCPAN -e'install Net::SNMP' There are some pre-req, but the install process should walk you through those.. -sg On Wed, 19 Mar 2003, Tomas Hautala wrote: > Looks like you are missing a perl module. > Try the folowing. > > perl -MCPAN -e "install SNMP" > > hope this helps. > > > > ---------------------------------- > Tomas Hautala > University of V?xj?, It-department > Phone:+46 (0)470 - 708515 > Cell:+46 (0)708 - 901066 > Mail:tomas.hautala at adm.vxu.se > > > > David Adams wrote: > > Hi Everyone, > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > i'm getting the following error > > > > # ./check_ifstatus > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd > > /usr/libdata/perl5/site_perl/i386-openbsd > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be the > > problem? I also had trouble installing net-snmp on openbsd3.0 and had to > > use options to exclude some of the MIB's. > > > > Has anyone else using openbsd run in to these problems? > > > > thanks > > > > Dave > > > > -----Original Message----- > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > *Sent:* 18 March 2003 15:39 > > *To:* David Adams; nagios-users at lists.sourceforge.net > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > Try the plugin check_ifstatus, work well for detecting link status. > > > > */David Adams /* wrote: > > > > Greetings all, > > > > Is there a way to monitor link states, interface states, > > processor load etc on Cisco routers? I'm assuming this would > > have to be done using check_snmp. > > If that's how it's done, does anyone have any MIB's or link to a > > resource that could get me started? Of course, there is always > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > Thanks > > > > Dave > > > > > ------------------------------------------------------------------------ > > Do you Yahoo!? > > Yahoo! Platinum > > > > - Watch CBS' NCAA March Madness, live on your desktop > > ! > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 19 18:25:38 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 19 Mar 2003 12:25:38 -0500 (EST) Subject: Target Types In-Reply-To: References: Message-ID: On Wed, 19 Mar 2003, Paul Hignutt wrote: > I have a network with about 1200 routers and switches. I am used to using > Cricket for performance trending, and I've installed Nagios for evaluation. > My question is, is there a way of doing hierarchal configurations like the > "target types" that Cricket uses, so that I don't have a hosts.cfg file with > about 2000 entries? > > Thanks > Paul > No but you can split up the hosts.cfg file into any manageable chunk you want and use the cfg_dir notation in nagios.cfg to specify inclusion of all config files in directory. -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Wed Mar 19 18:46:43 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Wed, 19 Mar 2003 14:46:43 -0300 Subject: RES: nrpe not working In-Reply-To: References: Message-ID: Version 1.7 requires -H option. I remember when I upgraded my check_nrpe, I had tons of problems. But I was just to adjust my checkcommands.cfg to solve the problem. Att., SMV -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Carroll, Jim P [Contractor] Enviada em: quarta-feira, 19 de mar?o de 2003 13:29 Para: 'Paul Clayton'; 'emily zhou' Cc: Nagios List Assunto: RE: [Nagios-users] nrpe not working $ ./check_nrpe -H gold -c some_test Incorrect command line arguments supplied NRPE Plugin for Nagios Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Version: 1.5 Last Modified: 06-03-2002 License: GPL Usage: ./check_nrpe [-p port] [-c command] [-wt warn_time] [-ct crit_time] [-to to_sec] Options: = The IP address of the host running the NRPE daemon [port] = The port on which the daemon is running - default is 5666 [command] = The name of the command that the remote daemon should run [to_sec] = Number of seconds before connection attempt times out. Default timeout is 10 seconds [snip] Mine doesn't seem to like the -H switch. Could be a difference in versions. *shrug* But the "Incorrect command line arguments supplied" does look strikingly similar to what Emily Zhou is experiencing. I stand by my suggestion. jc > -----Original Message----- > From: Paul Clayton [mailto:paul.clayton at intec.co.za] > Sent: Wednesday, March 19, 2003 12:00 AM > To: Carroll, Jim P [Contractor]; 'emily zhou' > Cc: Nagios List > Subject: RE: [Nagios-users] nrpe not working > > > Guys, > > this is my check_nrpe command in checkcommands.cfg and it works > > # 'check_nrpe' command definition > define command{ > command_name check_nrpe > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -p 5666 -c > $ARG1$ -to 60 > } > > I disagree with Jim, as the -H is required, otherwise how > does check-nrpe > know where to go. > > -----Original Message----- > From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] > Sent: Wednesday, March 19, 2003 2:16 AM > To: 'emily zhou' > Cc: Nagios List > Subject: RE: [Nagios-users] nrpe not working > > > In checkcommands.cfg, you're passing a "-H" switch to > check_nrpe. However, > check_nrpe doesn't use the -H switch. > > Remove that and you should be fine. > > jc > > > -----Original Message----- > > From: emily zhou [mailto:Emily.Zhou at algonquincollege.com] > > Sent: Tuesday, March 18, 2003 4:46 PM > > To: Carroll, Jim P [Contractor] > > Cc: 'Jeff McKeon'; Nagios List > > Subject: Re: [Nagios-users] nrpe not working > > > > > > Hi JC, > > I guess you have experience with NRPE, could you give me some clue? > > I use command line working fine: (Both Server and Client > > are Solaris 8) > > ~libexec/check_nrpe -c check_disk1 > > DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] > > > > However, when I put in the nagios, it's not working, the > > status information is : > > Incorrect command line arguments supplied, my config file this: > > > > in checkcommands.cfg: > > # 'check_nrpe' command definition > > define command{ > > command_name check_nrpe > > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ } > > > > In services.cfg: > > define service{ > > use generic-service > > host_name netsrv > > service_description File System / Check > > is_volatile 0 > > check_period 24x7 > > max_check_attempts 3 > > normal_check_interval 5 > > retry_check_interval 1 > > contact_groups unix-admins > > notification_interval 120 > > notification_period 24x7 > > notification_options c,r > > check_command check_nrpe!check_disk1 > > name remotefstemp > > } > > > > In remote server's nrpe.cfg, the check_disk1 is defined, no > > doubt about that, as > > the command line is working. > > Any help would be appreciated. > > Thanks, > > Emily > > > > "Carroll, Jim P [Contractor]" wrote: > > > > > Try telnetting to port 5666 on the target host; see if you > > get a connection. > > > > > > Try installed check_nrpe on the target host and doing > this command: > > > > > > ./check_nrpe localhost -c check_disk1 > > > > > > Let us know how that goes. > > > > > > jc > > > > > > > -----Original Message----- > > > > From: Jeff McKeon [mailto:jsm at inpro.net] > > > > Sent: Monday, November 25, 2002 2:32 PM > > > > To: Nagios List > > > > Subject: [Nagios-users] nrpe not working > > > > > > > > > > > > Hey guys/gals, > > > > > > > > Needed to set up linux disk monitoring of a remote host. > > downloaded > > > > nrpe (as suggested by mailing list) and installed the > > daemon on the > > > > remote host according to the directions. Also copied the > > check_disk > > > > plugin to that remote server. > > > > > > > > installed on the nagios host server and coped the > > check_nrpe to the > > > > /usr/local/nagios/libexec dir. > > > > > > > > confirmed that a check_disk command issued at the command > > prompt will > > > > work on the remote host. So at least I know that works... > > > > > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > > > > > below is the nrpe xinetd file I've modified. > > > > > > > > Problem:::: > > > > > > > > If on the nagios host machine I issue: > > > > > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ [jsm at rh80-jsm > > > > libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > > > CHECK_NRPE: Error receiving data from host. [jsm at rh80-jsm > > > > libexec]$ > > > > > > > > I get the error shown. > > > > > > > > If I look on the remote host in the var/log/messages file I get: > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied > (errno = 13) > > > > > > > > Any suggestions on what I'm doing wrong? > > > > > > > > # default: on > > > > # description: NRPE > > > > service nrpe > > > > { > > > > flags = REUSE > > > > socket_type = stream > > > > wait = no > > > > user = nagios > > > > server = /usr/local/nagios/libexec/nrpe > > > > server_args = -i /etc/nrpe.cfg > > > > log_on_failure += USERID > > > > disable = no > > > > only_from = 127.0.0.1 10.16.2.101 > > > > } > > > > > > > > > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied > (errno = 13) > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > > handheld. Power & Color in a compact size! > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > > _______________________________________________ > > > > Nagios-users mailing list Nagios-users at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > handheld. Power & Color in a compact size! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just > for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent > to /dev/null > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ************************************************************** > ***************************** > > > This e-mail and any attachments are confidential and may also > be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or > authorised recipient > of this email or have received it in error, please delete it > immediately and > notify the sender by e-mail. In such a case reading, > reproducing, printing or > further dissemination of this e-mail is strictly prohibited > and may be unlawful. > > Independent Technology Systems Limited does not represent or > warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ************************************************************** > **************************** > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.462 / Virus Database: 261 - Release Date: 13/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.462 / Virus Database: 261 - Release Date: 13/3/2003 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chbaker at powersystems.rockwell.com Wed Mar 19 20:02:28 2003 From: chbaker at powersystems.rockwell.com (chbaker at powersystems.rockwell.com) Date: Wed, 19 Mar 2003 14:02:28 -0500 Subject: Reporting Message-ID: I have been skimming back and forth through the docs and I cannot quite figure out the Reporting features. I've got nagios running on my debian-unstable linux box. Right now it's only monitoring a handful of solaris and linux boxes with PING, SSH and HTTP services, no notifications yet. I'm using MySql support. Can someone give me a hint as to what docs I can read, if there are some, on the Reports function? About what tables the report data comes from? For example, if I set retain_state_information=1 and I'm using MySql do I still need to set the state_retention_file? I'll reread the Nagios docs and FAQ in the meantime. Charles H. Baker chbaker at powersystems dot rockwell dot com work: 864.281.2409 fax: 864.281.2487 cell: 864.363.5302 BOFH excuse #40: Not enough memory, go get system upgrade. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lambert at lambertfam.org Wed Mar 19 20:40:25 2003 From: lambert at lambertfam.org (Scott Lambert) Date: Wed, 19 Mar 2003 14:40:25 -0500 Subject: [Nagiosplug-help] RE: Compiling plugins for Tru64 In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69234@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69234@intecserver007.intec.co.za> Message-ID: <20030319194025.GC47230@laptop.lambertfam.org> Why listname in the subject is evil: 21 N L 03/19 Paul Clayton (5.0K) [Nagiosplug-help] RE: [Nagios-users] Compi 22 N L 03/19 Paul Clayton (5.0K) m=>RE: [Nagios-users] Compiling plugins fo 23 N L 03/19 Paul Clayton (5.4K) [Nagiosplug-help] RE: [Nagios-users] Compi 24 N L 03/19 Paul Clayton (5.4K) m=>RE: [Nagios-users] Compiling plugins fo 25 N L 03/19 Voon, Ton (5.7K) [Nagiosplug-help] RE: [Nagios-users] Compi 26 N L 03/19 Voon, Ton (5.7K) m=>RE: [Nagios-users] Compiling plugins fo -- Scott Lambert KC5MLE Unix SysAdmin lambert at lambertfam.org ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Wed Mar 19 20:53:23 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 19 Mar 2003 14:53:23 -0500 Subject: listname in subject (was: Compiling plugins for Tru64) In-Reply-To: <20030319194025.GC47230@laptop.lambertfam.org> References: <9290BC9741D67F43BDAAC84144FF870DB69234@intecserver007.intec.co.za> <20030319194025.GC47230@laptop.lambertfam.org> Message-ID: <1048103602.20944.5.camel@localhost.localdomain> On Wed, 2003-03-19 at 14:40, Scott Lambert wrote: > Why listname in the subject is evil: > > 21 N L 03/19 Paul Clayton (5.0K) [Nagiosplug-help] RE: [Nagios-users] Compi > 22 N L 03/19 Paul Clayton (5.0K) m=>RE: [Nagios-users] Compiling plugins fo > 23 N L 03/19 Paul Clayton (5.4K) [Nagiosplug-help] RE: [Nagios-users] Compi > 24 N L 03/19 Paul Clayton (5.4K) m=>RE: [Nagios-users] Compiling plugins fo > 25 N L 03/19 Voon, Ton (5.7K) [Nagiosplug-help] RE: [Nagios-users] Compi > 26 N L 03/19 Voon, Ton (5.7K) m=>RE: [Nagios-users] Compiling plugins fo > > Or was it why cross-posting is evil ;-) -- Karl ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Wed Mar 19 21:08:51 2003 From: lists at bauchi.de (bauchi) Date: Wed, 19 Mar 2003 21:08:51 +0100 Subject: RES: Web-Based config In-Reply-To: References: Message-ID: <155984264918.20030319210851@bauchi.de> Guten Tag Sandro Vaz (UOL), Am Mittwoch, 19. M?rz 2003 um 17:09 schrieben Sie: SVU> Pretty cool. SVU> Feel free to share it here in list... SVU> Att., SVU> Sandro Vaz well... i'll create a download with all the needed files, and an instructions to install the whole shit ;) i'll also remove the specific things we needed for our project and add some documentation to the whole thing ... the webconfig tool was born out of some *special* needs for some *dorks* at my company as you might have noticed but right now im fucked up with too much mai-tai drinks .. ;-) just gimme 2 or 3 days and i'll implement the whole nagios feature range like escalations and dependencies ;) by the way... any idea for improving this web frontend is welcome ;) if anyone likes to install the current version he/she should try this link: http://nagiosconf.sskm.net/releases/index.html and look for the latest one .. but no guarantee for anything at all.. as soon as i'm no longer drunk, i'll set up a cvs server where anyone can check out the latest developement branch and so on .. bla bla . cheers sebastian -- "In god we trust, the Rest we Monitor" Sebastian Schubert - RHCE Stadtsparkasse Munich Network and Security Ungererstr. 75 80805 Munich - Germany -------------------------- sebastian.schubert at sskm.de Tel.+49 (89) 2167-6399 Fax.+49 (89) 2167-86399 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 19 21:54:58 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 19 Mar 2003 14:54:58 -0600 Subject: check_dns Message-ID: Sorry for the delay. I take it the hostnames aurumit-domain and ns1 can be resolved, either from definitions within hosts.cfg or through the local monitoring host's resolver library? Assuming you're relying on the resolver (and haven't defined the names in hosts.cfg), what happens when you do the following command: ./check_dns -H mail.aurumit.com -s aurumit-domain or this: ./check_dns -H mail.aurumit.com -s ns1 jc > -----Original Message----- > From: mark [mailto:mark at woodstream.net] > Sent: Thursday, March 13, 2003 9:05 PM > To: Carroll, Jim P [Contractor] > Subject: RE: [Nagios-users] check_dns > > > Here is the information. As you guessed, I am NOT running dnscachex, > just tinydns. It should be noted that the dns servers I'm > monitoring are > external DNS servers located in our DMZ. The monitor is on > the internal > network but has full "vision" of the DMZ servers. I've included a dig > output, an nslookup output, /etc/resolv.conf (which points to > our internal > dns but you can see the queries point to the DMZ dns server, > my check_dns > command definition, and the service definition for dns. In > the service > definition ns1 is the DMZ server and aurumit-domain is the > internal dns > server. They both have ping services defined that are working > correctly. > Let me know if you need further info. > > The DMZ external dns server is 172.16.1.2. > > mon1# dig @172.16.1.2 mail.aurumit.com > > ; <<>> DiG 8.3 <<>> @172.16.1.2 mail.aurumit.com > ; (1 server found) > ;; res options: init recurs defnam dnsrch > ;; got answer: > ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 4 > ;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2 > ;; QUERY SECTION: > ;; mail.aurumit.com, type = A, class = IN > > ;; ANSWER SECTION: > mail.aurumit.com. 1D IN A 206.183.235.131 > > ;; AUTHORITY SECTION: > aurumit.com. 3D IN NS ns1.aurumit.com. > aurumit.com. 3D IN NS ns2.aurumit.com. > > ;; ADDITIONAL SECTION: > ns1.aurumit.com. 3D IN A 206.183.235.134 > ns2.aurumit.com. 3D IN A 206.183.235.135 > > ;; Total query time: 6 msec > ;; FROM: mon1.aurumit.com to SERVER: 172.16.1.2 172.16.1.2 > ;; WHEN: Thu Mar 13 21:59:03 2003 > ;; MSG SIZE sent: 34 rcvd: 118 > > mon1# nslookup > Default Server: aurumit-domain.aurumit.com > Address: 10.1.2.133 > > > server 172.16.1.2 > Default Server: [172.16.1.2] > Address: 172.16.1.2 > > > mail.aurumit.com > Server: [172.16.1.2] > Address: 172.16.1.2 > > Name: mail.aurumit.com > Address: 206.183.235.131 > > > exit > > mon1# cat /etc/resolv.conf > domain aurumit.com > nameserver 10.1.2.133 > > mon1# more /usr/local/nagios/etc/checkcommands.cfg > > # 'check_dns' command definition > define command{ > command_name check_dns > command_line $USER1$/check_dns -H $ARG1$ -s $HOSTADDRESS$ > } > > mon1# more /usr/local/nagios/etc/services.cfg > > # Generic service definition template > define service{ > name active-service ;template name > passive_checks_enabled 1 ; Passive > service checks > are ena > active_checks_enabled 1 ; Enable active checks > parallelize_check 1 ; Active > service checks > should b > obsess_over_service 1 ; We should > obsess over > this ser > check_freshness 0 ; Default is > to NOT check > servic > notifications_enabled 1 ; Service > notifications > are enab > event_handler_enabled 1 ; Service > event handler is > enabl > flap_detection_enabled 0 ; Flap detection is > enabled > process_perf_data 0 ; Process > performance data > retain_status_information 1 ; Retain status > information acro > retain_nonstatus_information 1 ; Retain non-status > information > register 0 ; DONT REGISTER THIS > DEFINITION > } > # Service definition > define service{ > use active-service > ; template > host_name aurumit-domain,ns1 > service_description DNS > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups unix-admins > notification_interval 120 > notification_period 24x7 > notification_options w,u,c,r > check_command check_dns!mail.aurumit.com > } > mon1# > > On Thu, 13 Mar 2003, Carroll, Jim P [Contractor] wrote: > > > We're running tinydns here, and dnscachex as well. I'll > assume for this > > discussion that you're not running dnscachex. > > > > AFAIK, check_dns does *not* require tcp port 53 to be open. > > > > Please provide the following: > > > > - cut-and-paste output of your nslookup query > > - cut-and-paste output of your dig query > > - cut-and-paste of your /etc/resolv.conf > > - the IP address(es) of your DNS server(s) > > > > Please do NOT hand-edit anything in an attempt to obfuscate > details to the > > general public. One typo is all that I'll need in order to > mis-diagnose > > your situation. > > > > jc > > > > > > > -----Original Message----- > > > From: mark [mailto:mark at woodstream.net] > > > Sent: Thursday, March 13, 2003 2:37 PM > > > To: nagios-users at lists.sourceforge.net > > > Subject: [Nagios-users] check_dns > > > > > > > > > > > > After reading the docs and the check_dns -help info I have a > > > question. > > > We run tinydns which listens to port 53 udp only. When I > > > check the dns > > > service with check_dns, the plugin always times out even > > > though I can do a > > > dig or nslookup successfully from my monitoring server. Does > > > anyonw know > > > if check_dns requires port 53 "tcp" to be open? If not, any > > > ideas why my > > > check_dns is timing out when other tools are successful? Thanks! > > > > > > Mark > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by:Crypto Challenge is now open! > > > Get cracking and register here for some mind boggling fun and > > > the chance of winning an Apple iPod: > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin version (-v) and OS > > > when reporting any issue. > > > ::: Messages without supporting info will risk being sent > to /dev/null > > > > > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ric at nkn.net Wed Mar 19 21:50:10 2003 From: ric at nkn.net (Ric Moseley) Date: Wed, 19 Mar 2003 14:50:10 -0600 Subject: Web-Based config In-Reply-To: <53091.63.237.201.12.1048093259.squirrel@www.lapseofthought.com> References: <53091.63.237.201.12.1048093259.squirrel@www.lapseofthought.com> Message-ID: <009e01c2ee59$2a08e040$1bd010ac@theplanet.com> I use NSA for Nagios but it uses the old style configuration with everything on one file (hosts.cfg). If you are interested in it I will package it up. It uses mySQL for its backend and is highly modified to fit a hosting provider's point of view with lots of hosts/services. Thanks. Ric. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Dan Rich Sent: Wednesday, March 19, 2003 11:01 AM To: Mike McClure Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Web-Based config Mike McClure said: > I'd really like to see a Webmin module for this. Tim Neimueller made a module > for Netsaint a long time ago, but it doesn't work with the template configs. I really like the sound of this. > I started to modify Tim's code to work w/ the templates, but lost interest. > If someone wants to help me finish it, I would be willing to pick it back up. > It's in Perl, of course. Since one of my biggest user complaints is the lack of an administrative interface, I may be willing to give you a hand with this. I've already written some code to parse the config files, as I needed to be able to report on them (i.e. someone asked me "What services will I get paged for" and there is no way to generate that with the existing tools). > The main reason I lost interest is because I couldn't figure out an elegant > way to deal with objects in different files. For instance, how do you deal > with a template in one file, and it getting used with an object in a different > file? I'd hate to force a 'single file' configuration on users. When I was thinking of building my own configuration tool, I was going to collapse my multiple configuration files into a single file. The thing is, if you are only administering it via. a web interface, you shouldn't care what the back-end looks like. At least, that was my initial thinking.... -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Wed Mar 19 21:57:25 2003 From: David at feedroom.com (David Gitman) Date: Wed, 19 Mar 2003 15:57:25 -0500 Subject: RES: Web-Based config Message-ID: Looking good! [-d] -----Original Message----- From: bauchi [mailto:lists at bauchi.de] Sent: Wednesday, March 19, 2003 3:09 PM To: Sandro Vaz (UOL) Cc: nagios-users at lists.sourceforge.net Subject: Re: RES: [Nagios-users] Web-Based config Guten Tag Sandro Vaz (UOL), Am Mittwoch, 19. M?rz 2003 um 17:09 schrieben Sie: SVU> Pretty cool. SVU> Feel free to share it here in list... SVU> Att., SVU> Sandro Vaz well... i'll create a download with all the needed files, and an instructions to install the whole shit ;) i'll also remove the specific things we needed for our project and add some documentation to the whole thing ... the webconfig tool was born out of some *special* needs for some *dorks* at my company as you might have noticed but right now im fucked up with too much mai-tai drinks .. ;-) just gimme 2 or 3 days and i'll implement the whole nagios feature range like escalations and dependencies ;) by the way... any idea for improving this web frontend is welcome ;) if anyone likes to install the current version he/she should try this link: http://nagiosconf.sskm.net/releases/index.html and look for the latest one .. but no guarantee for anything at all.. as soon as i'm no longer drunk, i'll set up a cvs server where anyone can check out the latest developement branch and so on .. bla bla . cheers sebastian -- "In god we trust, the Rest we Monitor" Sebastian Schubert - RHCE Stadtsparkasse Munich Network and Security Ungererstr. 75 80805 Munich - Germany -------------------------- sebastian.schubert at sskm.de Tel.+49 (89) 2167-6399 Fax.+49 (89) 2167-86399 ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rrichards at fairtrading.nsw.gov.au Wed Mar 19 23:41:34 2003 From: rrichards at fairtrading.nsw.gov.au (RICHARDS Rebecca) Date: Thu, 20 Mar 2003 09:41:34 +1100 Subject: SNMP (monitoring Check Point firewalls) Message-ID: <77F7F4C8C02F9B48891A6FF598639B4E0145A762@par-ntx02.dept.fairtrading.nsw.gov.au> Yew, As far as I know, there are no nagios plugins capable of monitoring Check Point firewalls "out of the box". It technically is possible to do it through the SNMP plugin, but I would not recommend that you enable SNMP on the firewall, due to SNMP's well-known weaknesses and insecurities. Even read-only access is harmful - heaps of information about the firewall and protected networks could be gathered by doing an SNMP-walk. Telnet should also be avoided at all costs. All is not lost, however, as Check Point provide a command "cpstat", which is run from the firewall management server, and can query the remote firewalls for all sorts of useful information: # cpstat Usage: cpstat [-h host][-p port][-f flavour][-d] application_flag -h A resolvable hostname, or a dot-notation address. Default is localhost. -p Port number of the AMON server. Default is the standard AMON port (18192). -f The flavour of the output (as appears in the configuration file). Default is to use the first flavour found in the configuration file. -d Debug mode Available application_flags: -------------------------------------------------------------- |Flag |Flavours | -------------------------------------------------------------- |os |default, routing, memory, cpu, disk, perf, all | -------------------------------------------------------------- |ha |default, all | -------------------------------------------------------------- |fw |default, policy, perf, hmem, kmem, inspect, | | |cookies, chains, fragments, totals, ufp, http, ftp, | | |telnet, rlogin, smtp, all | -------------------------------------------------------------- |vpn |product, general, IKE, ipsec, fwz, accelerator, | | |nic, all | -------------------------------------------------------------- |polsrv |default, all | -------------------------------------------------------------- |mg |default | -------------------------------------------------------------- You will need to write a script to parse the output, but that's pretty easy to do. The beauty of this method is that you shouldn't have to punch new holes through the firewall to allow monitoring - the firewalls should already accept these connections (fw1-amon) from the management server, they're SSL encrypted, and they're authenticated. Bonus! Other idea is to utilise passive service checks, running plugins on the firewalls, send the results back to the firewall management server through NSCA (appropriately configured for encryption), and on-forward them from the management server to the Nagios server through NSCA (also appropriately configured for encryption). Cheers, -- Rebecca A. Richards ph: +61 2 9895 0742 Infrastructure Support Officer mob: +61 412 823 206 Dept of Fair Trading mail: rrichards at fairtrading.nsw.gov.au http: www.fairtrading.nsw.gov.au ************************************************************************ This message is intended for the addressee named and may contain confidential information. If you are not the intended recipient, please delete it and notify the sender. Views expressed in this message are those of the individual sender, and are not necessarily the views of the Department of Fair Trading. ************************************************************************ ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jamie.baddeley at bclnz.com Thu Mar 20 00:29:59 2003 From: jamie.baddeley at bclnz.com (Jamie Baddeley) Date: Thu, 20 Mar 2003 11:29:59 +1200 Subject: user view of web interface Message-ID: by being clever with the way that you allocate notification contacts, hostgroups, and hosts, and by reading this: http://nagios.sourceforge.net/docs/1_0/cgiauth.html#default_rights (clue:notification contact=login name=partitioned view) you should be able to do what you want to do. jamie >>> "Christian Malolepszy" 03/19 9:46 PM >>> Hello, I have been using Nagios and it is working fine. But I have one question:Is it possible to create an user who has only rights to see one Hostgroup and belong services? This user is not allowed to see the network structure, other hosts and services? Thanks Christian ----------------------------------------------------Christian Malolepszy GLI-MICRAM AGKonrad-Zuse-Strasse 10 44801 Bochum----------------- www.gli-micram.de ----------------- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From marcos.dias at intelignet.com.br Thu Mar 20 02:02:33 2003 From: marcos.dias at intelignet.com.br (Marcos Dias) Date: Wed, 19 Mar 2003 22:02:33 -0300 Subject: problem with Alert History and Event Log Message-ID: <01c501c2ee7c$643d4e90$03000000@wksssph20155> Hello, I have a Nagios Box running on a solaris 8 compiled with database support, I used all options that have database support in the compilation... And Now I have the following problem: When a service is down nagios alerts me with mail, pager, but when I'll see the alert history anything is logged there, becasue that I can't generate some statistics correctly. What I could be wrong ? If someone need to see my config files just ask that I put here the specified file ! []'s Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Stanley.Hopcroft at IPAustralia.Gov.AU Thu Mar 20 03:18:43 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Thu, 20 Mar 2003 13:18:43 +1100 Subject: AS400 In-Reply-To: <12b201c2ed37$e377f930$8000a8c0@wheeljd>; from johannes.dagemark@wheelnetworks.com on Tue, Mar 18, 2003 at 11:19:41AM +0100 References: <000601c2ecf5$38a97ed0$5601010a@YEWKWEE> <1047974614.11353.22.camel@aten.fqdn.no> <12b201c2ed37$e377f930$8000a8c0@wheeljd> Message-ID: <20030320131838.I72586@IPAustralia.Gov.AU> Dear Sir, Not exactly OS/400 but close (OS/390). We monitor TCP applications with the standard plugins and 3270 (do you use tn5250 ?) applications over any link with 'expect-like' (started with TCl/Expect but am much happier without the TCL in Perl/Expect) home-grown plugins. Works a treat. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at ipaustralia.gov.au Thu Mar 20 03:09:19 2003 From: Stanley.Hopcroft at ipaustralia.gov.au (Stanley Hopcroft) Date: Thu, 20 Mar 2003 13:09:19 +1100 Subject: Reporting In-Reply-To: ; from chbaker@powersystems.rockwell.com on Wed, Mar 19, 2003 at 02:02:28PM -0500 References: Message-ID: <20030320130911.H72586@IPAustralia.Gov.AU> Dear Sir, The availability report (avail.cgi) comes from a thorough analysis of the nagios.log files and or archived log files. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cjs at cjs226.com Thu Mar 20 03:53:54 2003 From: cjs at cjs226.com (Clif J. Smith) Date: Wed, 19 Mar 2003 20:53:54 -0600 Subject: Problem with authentication using PAM/NIS Message-ID: <3E792D42.7090604@cjs226.com> Of course, when I open up permissions on I'm running Nagios using an existing Apache install which uses mod_auth_pam to authenticate via NIS accounts. The webserver authenticates just fine, however I have problem when trying to use Service Commands, I always get "Error: Could not open command file '/tmp/nagios.cmd' for update!" I've set all of the auth settings in cgi.cfg, which function correctly for viewing Nagios, just not for Commands. Of course, if I open up permissions on /tmp/nagios.cmd, it works, just a little too much. Thanks, Clif ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Brad at pretzel.com.au Thu Mar 20 04:10:33 2003 From: Brad at pretzel.com.au (Brad Dunn) Date: Thu, 20 Mar 2003 11:10:33 +0800 Subject: nagios http_check ssl Message-ID: <131A385F21AAD311BD6400902763781D01DB25E6@Z8> I had this very same problem with SSL And OpenSSL was definatly installed into /usr/local/ssl However one thing I did notice was that when it was looking for all the SSL related files in the configure of the plugin's. it kept saying "NO" it didn't find them, (I forget the filenames, blahssl.h or something similar, there were about 4 or 5. b r a d d u n n s y s t e m s a d m i n i s t r a t o r . . . pretzelLogic Ph: +61 8 9218 8588 Fax: +61 8 9218 8599 Lvl 9 256 adelaide tce perth wa 6000 http://www.pretzel.com.au -----Original Message----- From: Phil Costelloe [mailto:philc at foundation-it.com] Sent: Wednesday, 19 March 2003 6:51 PM To: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] nagios http_check ssl > From: Ben.Farris at key3media.com [mailto:Ben.Farris at key3media.com] > > For some reason I cant seem to compile ssl support into check_http. > > I configured the nagios plugins as follows: > > ./configure --prefix=/opt/nagios --with-nagios-user=nagios > --with-nagios-group=nagios --enable-SSL --with-SMCossl > --with-openssl=/usr/local/ssl > > and after installing the plugins I always get... > > Tue Mar 18 13:42:03 (/opt/nagios/libexec) > root at monitor# ./check_http --ssl > check_http: invalid option - SSL is not available > > Any ideas??? Is your installation of OpenSSL definitely in /usr/local/ssl? Is ssl.h (for example) in /usr/local/ssl/include/openssl? Can you run your configure command with "| grep -i ssl" on the end (without the quotes) and post the output? Phil ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 20 06:55:03 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 20 Mar 2003 05:55:03 +0000 (GMT) Subject: [Nagiosplug-help] RE: Compiling plugins for Tru64 In-Reply-To: <1048077055.24546.7.camel@miles.debisschop.net> References: <1048077055.24546.7.camel@miles.debisschop.net> Message-ID: <20030320055503.81015.qmail@web12605.mail.yahoo.com> Hi All Today i managed to compile nagios on Tru 64..now do we share the binaries on the sourceforge site ? i used the following commands to compile it.. sample output of df -pk command.. ./configure --with-df-command="/sbin/df -Pk" df -Pk Filesystem 1024-blocks Used Available Capacity Mounted n root_domain#root 768000 435440 324696 58% / /proc 0 0 0 100% /proc usr_domain#usr 2621440 798548 1684520 33% /usr usr_domain#var 2621440 118556 1684520 7% /var oracle_domain#oracle 7536640 5611320 1901992 75% /usr/appe appusers_domain#appusers 8192000 1730473 6437720 22% /appusers scr_domain#scr 4443136 546542 3889576 13% /scr asiadevl_domain#asia 15303112 12921394 2367552 85% /asiatest eurodevl_domain#euro 16358272 15225028 1126952 94% /eurodevl data_domain#data 19620520 18806408 794216 96% /data Hi Toon i am willing to share anything else you require regards Hrishy --- Karl DeBisschop wrote: > On Wed, 2003-03-19 at 02:07, hrishy wrote: > > Hi Voon > > > > Can you please mail me the final 1.3.0 source code > > along with the make files..or instruct me how to > > download them..i was not able to trace the 1.3.0 > > version on the CVS browser > > cvs co -r r1_3_0 > > > > > regards > > Hrishy > > > > > > --- "Voon, Ton" wrote: > > Copying > > to nagiosplug-help mailing list > > > > > > There has been reported success on Tru64 (not > sure > > > which versions) for the > > > final 1.3.0 release. Please can you try and > compile > > > and confirm the Tru64 > > > versions. > > > > > > Also, check_nagios and check_swap do not > currently > > > work so if you manage to > > > fix these, please let us know. > > > > > > Ton > > > > > > > -----Original Message----- > > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > To: Nagios Users (E-mail) > > > > Subject: [Nagios-users] Compiling plugins for > > > Tru64 > > > > > > > > Guys, > > > > > > > > Anybody had any luck with compiling plugins on > > > Tru64 4.0 and 5.1 > > > > > > > > Regards > > > > > > > > Unix like TeePee no windows, no gates, Apache > > > inside. > > > > Paul Clayton > > > > > > > > > > > > > This private and confidential e-mail has been > sent > > > to you by Egg. > > > The Egg group of companies includes Egg Banking > plc > > > (registered no. 2999842), Egg Financial Products > Ltd > > > (registered > > > no. 3319027) and Egg Investments Ltd (registered > no. > > > 3403963) which > > > carries out investment business on behalf of Egg > and > > > is regulated > > > by the Financial Services Authority. > > > Registered in England and Wales. Registered > offices: > > > 1 Waterhouse Square, > > > 138-142 Holborn, London EC1N 2NA. > > > If you are not the intended recipient of this > e-mail > > > and have > > > received it in error, please notify the sender > by > > > replying with > > > 'received in error' as the subject and then > delete > > > it from your > > > mailbox. > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Does your > code > > > think in ink? > > > You could win a Tablet PC. Get a free Tablet PC > hat > > > just for playing. > > > What are you waiting for? > > > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin > version > > > (-v) and OS when reporting any issue. > > > ::: Messages without supporting info will risk > being > > > sent to /dev/null > > > > __________________________________________________ > > Do You Yahoo!? > > Everything you'll ever need on one web page > > from News and Sport to Email and Music Charts > > http://uk.my.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code > think in ink? > > You could win a Tablet PC. Get a free Tablet PC > hat just for playing. > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagiosplug-help mailing list > > Nagiosplug-help at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagiosplug-help > > ::: Please include plugins version (-v) and OS > when reporting any issue. > > ::: Messages without supporting info will risk > being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code > think in ink? > You could win a Tablet PC. Get a free Tablet PC hat > just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 20 06:57:17 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 20 Mar 2003 05:57:17 +0000 (GMT) Subject: Compiling plugins for Tru64 In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69237@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69237@intecserver007.intec.co.za> Message-ID: <20030320055717.20070.qmail@web12601.mail.yahoo.com> Hi Paul Yep i compiled NRPE as well as nagios now :)..how do we share the binaries now ? regards Hrishy --- Paul Clayton wrote: > NRPE compiled without any issues, and I have it > working. > > I will try Tru64 5.1a later when I get chance. > > cheers > > -----Original Message----- > From: hrishy [mailto:hrishys at yahoo.co.uk] > Sent: Wednesday, March 19, 2003 10:48 AM > To: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail) > Cc: Nagiosplug-help at lists.sourceforge.net > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > Hi Paul > > Did you also compile NRPE on digital Unix ? > Thanks toon..i will try > > regards > Hrishy > > --- "Voon, Ton" wrote: > > Excellent > news! I have started a thread on > > > http://sourceforge.net/forum/forum.php?forum_id=254122. > > > > Can you send a sample output from the df -Pk > command > > so I'll look into the > > changes for the configure script to automatically > > pick up the right one. > > Presumably /sbin is normally in the PATH? > > > > Hrishy, the final 1.3.0 release can be found on > > http://sourceforge.net/projects/nagiosplug > > > > Ton > > > > > -----Original Message----- > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > Sent: Wednesday, March 19, 2003 8:01 AM > > > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > > > Cc: Nagiosplug-help at lists.sourceforge.net > > > Subject: RE: [Nagios-users] Compiling plugins > for > > Tru64 > > > > > > Got the nagios 1.30 plugins and nrpe to compile > on > > tru64 4.0g. > > > > > > The only change to configure I had to make was > the > > df command. > > > > > > ./configure --with-df-command="/sbin/df -Pk" > > > make all > > > make install > > > > > > Anybody interested mail me and I can send you a > > zip compiled file. > > > > > > cheers > > > > > > -----Original Message----- > > > From: hrishy [mailto:hrishys at yahoo.co.uk] > > > Sent: Wednesday, March 19, 2003 9:07 AM > > > To: Voon, Ton; 'Paul Clayton'; Nagios Users > > (E-mail) > > > Cc: Nagiosplug-help at lists.sourceforge.net > > > Subject: RE: [Nagios-users] Compiling plugins > for > > Tru64 > > > > > > > > > Hi Voon > > > > > > Can you please mail me the final 1.3.0 source > code > > > along with the make files..or instruct me how to > > > download them..i was not able to trace the 1.3.0 > > > version on the CVS browser > > > > > > > > > regards > > > Hrishy > > > > > > > > > --- "Voon, Ton" wrote: > > > Copying > > > to nagiosplug-help mailing list > > > > > > > > There has been reported success on Tru64 (not > > sure > > > > which versions) for the > > > > final 1.3.0 release. Please can you try and > > compile > > > > and confirm the Tru64 > > > > versions. > > > > > > > > Also, check_nagios and check_swap do not > > currently > > > > work so if you manage to > > > > fix these, please let us know. > > > > > > > > Ton > > > > > > > > > -----Original Message----- > > > > > From: Paul Clayton > > [SMTP:paul.clayton at intec.co.za] > > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > > To: Nagios Users (E-mail) > > > > > Subject: [Nagios-users] Compiling plugins > for > > > > Tru64 > > > > > > > > > > Guys, > > > > > > > > > > Anybody had any luck with compiling plugins > on > > > > Tru64 4.0 and 5.1 > > > > > > > > > > Regards > > > > > > > > > > Unix like TeePee no windows, no gates, > Apache > > > > inside. > > > > > Paul Clayton > > > > > > > > > This private and confidential e-mail has been sent > > to you by Egg. > > The Egg group of companies includes Egg Banking > plc > > (registered no. 2999842), Egg Financial Products > Ltd > > (registered > > no. 3319027) and Egg Investments Ltd (registered > no. > > 3403963) which > > carries out investment business on behalf of Egg > and > > is regulated > > by the Financial Services Authority. > > Registered in England and Wales. Registered > offices: > > 1 Waterhouse Square, > > 138-142 Holborn, London EC1N 2NA. > > If you are not the intended recipient of this > e-mail > > and have > > received it in error, please notify the sender by > > replying with > > 'received in error' as the subject and then delete > > it from your > > mailbox. > > > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code > think in ink? > You could win a Tablet PC. Get a free Tablet PC hat > just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being > sent to /dev/null > > > ******************************************************************************************* > > > This e-mail and any attachments are confidential and > may also be privileged > and/or copyright material of Independent Technology > Systems Limited > (or its affiliated companies). If you are not the > intended or authorised recipient > of this email or have received it in error, please > delete it immediately and > notify the sender by e-mail. In such a case reading, > reproducing, === message truncated === __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 20 07:05:38 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 20 Mar 2003 06:05:38 +0000 (GMT) Subject: Compiling plugins for Tru64 In-Reply-To: <53104E20A25CD411B556009027E50636064D5488@pnnemp02.pn.egg.com> References: <53104E20A25CD411B556009027E50636064D5488@pnnemp02.pn.egg.com> Message-ID: <20030320060538.7924.qmail@web12604.mail.yahoo.com> Hi Voon Here is the df -pk output from my tru64 box..i have attched it as a file regards Hrishy --- "Voon, Ton" wrote: > Sorry, should have explained better. Can you send > the entire df -Pk output? > The configure script looks at the header to work out > if the syntax is > supported. > > > -----Original Message----- > > From: Paul Clayton [SMTP:paul.clayton at intec.co.za] > > Sent: Wednesday, March 19, 2003 8:41 AM > > To: 'Voon, Ton'; 'hrishy'; Nagios Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > Sbin is in the path, but I had a failure unless I > pathed it in the > > configure > > script. > > > > Here is the df -Pk output sample > > > > root_domain#root 2080368 > 359876 1691088 > > 18% / > > > > cheers > > > > -----Original Message----- > > From: Voon, Ton [mailto:Ton.Voon at egg.com] > > Sent: Wednesday, March 19, 2003 10:26 AM > > To: 'Paul Clayton'; 'hrishy'; Voon, Ton; Nagios > Users (E-mail) > > Cc: Nagiosplug-help at lists.sourceforge.net > > Subject: RE: [Nagios-users] Compiling plugins for > Tru64 > > > > > > Excellent news! I have started a thread on > > > http://sourceforge.net/forum/forum.php?forum_id=254122. > > > > Can you send a sample output from the df -Pk > command so I'll look into the > > changes for the configure script to automatically > pick up the right one. > > Presumably /sbin is normally in the PATH? > > > > Hrishy, the final 1.3.0 release can be found on > > http://sourceforge.net/projects/nagiosplug > > > > Ton > > > > > -----Original Message----- > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > Sent: Wednesday, March 19, 2003 8:01 AM > > > To: 'hrishy'; Voon, Ton; Nagios Users (E-mail) > > > Cc: Nagiosplug-help at lists.sourceforge.net > > > Subject: RE: [Nagios-users] Compiling plugins > for Tru64 > > > > > > Got the nagios 1.30 plugins and nrpe to compile > on tru64 4.0g. > > > > > > The only change to configure I had to make was > the df command. > > > > > > ./configure --with-df-command="/sbin/df -Pk" > > > make all > > > make install > > > > > > Anybody interested mail me and I can send you a > zip compiled file. > > > > > > cheers > > > > > > -----Original Message----- > > > From: hrishy [mailto:hrishys at yahoo.co.uk] > > > Sent: Wednesday, March 19, 2003 9:07 AM > > > To: Voon, Ton; 'Paul Clayton'; Nagios Users > (E-mail) > > > Cc: Nagiosplug-help at lists.sourceforge.net > > > Subject: RE: [Nagios-users] Compiling plugins > for Tru64 > > > > > > > > > Hi Voon > > > > > > Can you please mail me the final 1.3.0 source > code > > > along with the make files..or instruct me how to > > > download them..i was not able to trace the 1.3.0 > > > version on the CVS browser > > > > > > > > > regards > > > Hrishy > > > > > > > > > --- "Voon, Ton" wrote: > > Copying > > > to nagiosplug-help mailing list > > > > > > > > There has been reported success on Tru64 (not > sure > > > > which versions) for the > > > > final 1.3.0 release. Please can you try and > compile > > > > and confirm the Tru64 > > > > versions. > > > > > > > > Also, check_nagios and check_swap do not > currently > > > > work so if you manage to > > > > fix these, please let us know. > > > > > > > > Ton > > > > > > > > > -----Original Message----- > > > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > > To: Nagios Users (E-mail) > > > > > Subject: [Nagios-users] Compiling plugins > for > > > > Tru64 > > > > > > > > > > Guys, > > > > > > > > > > Anybody had any luck with compiling plugins > on > > > > Tru64 4.0 and 5.1 > > > > > > > > > > Regards > > > > > > > > > > Unix like TeePee no windows, no gates, > Apache > > > > inside. > > > > > Paul Clayton > > > > > > > > > This private and confidential e-mail has been sent > to you by Egg. > > The Egg group of companies includes Egg Banking > plc > > (registered no. 2999842), Egg Financial Products > Ltd (registered > > no. 3319027) and Egg Investments Ltd (registered > no. 3403963) which > > carries out investment business on behalf of Egg > and is regulated > > by the Financial Services Authority. > > Registered in England and Wales. Registered > offices: 1 Waterhouse Square, > > 138-142 Holborn, London EC1N 2NA. > > If you are not the intended recipient of this > e-mail and have > > received it in error, please notify the sender by > replying with > > 'received in error' as the subject and then delete > it from your > > mailbox. > > > > > > > ************************************************************************** > > ***************** > > > > > > This e-mail and any attachments are confidential > and may also be > > privileged > > and/or copyright material of Independent > Technology Systems Limited > > (or its affiliated companies). If you are not the > intended or authorised > > recipient > > of this email or have received it in error, please > delete it immediately > > and > > notify the sender by e-mail. In such a case > reading, reproducing, printing > > or > > further dissemination of this e-mail is strictly > prohibited and may be > > unlawful. > > > > Independent Technology Systems Limited does not > represent or warrant that > > an attachment hereto is free from computer viruses > or other defects. > > > > The opinions expressed in this e-mail and any of > the attachments may > > be those of the author and are not necessarily > those of Independent > > Technology Systems Limited. > > > ************************************************************************** > > **************** > === message truncated === __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: nagios-help.txt URL: From bliwanag at yahoo.com Thu Mar 20 07:07:38 2003 From: bliwanag at yahoo.com (bernie liwanag) Date: Wed, 19 Mar 2003 22:07:38 -0800 (PST) Subject: oracle plugins In-Reply-To: <85256CE6.004BA69E.00@mailhost.planalytics.com> References: <85256CE6.004BA69E.00@mailhost.planalytics.com> Message-ID: <20030320060738.48047.qmail@web40611.mail.yahoo.com> I am using Windows NT4 server in our Oracle Application and Database. And Red Hat linux 6.2 for my nagios monitoring. Do I have to install any oracle plugins in Windows NT server just to monitor it in my nagios machine? Where can I get the complete proper procedure on how to monitor the Oracle server in my nagios machine. Thanks a lot! Bernie --- jmarquart at planalytics.com wrote: > > > The pre-reqs for check_oracle are an installation of > the oracle client (if you > want to use the tnsping functionality) > > if you just want to check for an instance (--db > option) - you can fake it by > setting the ORACLE_* env vars. All it does is a ps > -ef | grpe pmon (more or > less) > > the check_ora_table_space.pl and > check_oracle_instance.pl are later perl scripts > that check tablespace availabilities and check the > "upness" of an instance. > > Depending on what you want to check any/all will > work for you. The latest CVS > of the check_oracle script also has the ability to > check cache hit ratios and > individual tablespace utilizations. > > -j > > > > > > > bernie liwanag on 03/11/2003 > 06:16:14 AM > > > > > To: nagios-users at lists.sourceforge.net > cc: (bcc: John J. der Schalla > Marquart/Planalytics) > > Subject: [Nagios-users] oracle plugins > > > > > Anyone can help me on how to check oracle server > status? > > What are the pre-requisites for using check_oracle > plugins? > > What is check_ora_table_space.pl and > check_oracle_instance.pl? > > Thanks a lot! > Bernie > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Web Hosting - establish your business online > http://webhosting.yahoo.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any > issue. > ::: Messages without supporting info will risk being > sent to /dev/null > > > __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Thu Mar 20 08:19:37 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Thu, 20 Mar 2003 08:19:37 +0100 Subject: Config Management References: <3E78B185.8040808@quadrix.com> Message-ID: <3E796B89.9080105@datavis.se> I am working on this NATO-project, and I think I will have something for the open-source community in maybe a week. /FredrikW Russell Scibetti wrote: > There seem to be a lot of people doing independent work on various > ways of managing Nagios configuration files. There are people who > have designed MySQL DB's to store them, PHP web tools to edit them, > and more. I happened to like the MySQL db that someone made through > phpMyAdmin, which I would like to add a little to to better reflect > the relationships between objects and then submit for public view. > > With all this work being done by inidividuals, I'm sure that people > are re-inventing things that others have already made and didn't know > about. > > So, if you have done any work for handling Nagios configs that you > think may be useful to someone else, please respond to this email and > either include any relevent attachments or URLs that people can go > to. I know that there was mention of a possible new project NATO > (Nagios Administration TOol), so anything that we have done > individually and share can hopefully be a help to this new project. > For organization sake, I can keep track of these various contributions > on a webpage until that project gets up and running. > If you like this idea, please reply with the configuration management > work you have done. Thanks! > > Russell Scibetti > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Thu Mar 20 08:16:51 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Thu, 20 Mar 2003 08:16:51 +0100 Subject: Web-Based config References: <000701c2ee24$b984b2b0$bd28bb0a@mediaonline.ch> <1048085637.11684.8.camel@lnx024071100.vz.intra.sskm.de> Message-ID: <3E796AE3.8080102@datavis.se> I am working in a MySQL-backend with a config-tool for all config-file in Nagios. The project is called NATO, give me a week or so and I will drop it on the web. /FredrikW Sebastian Schubert wrote: >Am Mit, 2003-03-19 um 15.35 schrieb Pascal Wessel: > > >> >> >>Yes: Nagat >> >>http://sourceforge.net/projects/nagat >> >>Best regards, >>Pascal >> >> >one problem with nagat is, that the last changes were made nearly 10 >month ago, and i can't see any work going on ... > > > >> Does anyone know if there is a web-based configuration tool >> for Nagios? I hope there is otherwise I need to make one ;) >> >> Thanks, >> >> Jeff >> >> > >i've written one myself... >you might want to have a look at: >http://nagiosconf.sskm.net/ to see the webinterface >http://nagiosconf.sskm.net/sql/ to get a view of the database lying >behind the whole thing .. > >the frontend is written in php with some javascript addons for the >checks, and the backend is written in perl by one of our trainees .. >mysql takes care of the data ;) > >i've posted the link some time ago to the list, but the interface was >only in german ... now it comes with some language templates (german and >english *G*) > >bye >basti > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Thu Mar 20 08:28:42 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Thu, 20 Mar 2003 08:28:42 +0100 Subject: R: spark rpm In-Reply-To: References: Message-ID: <3E796DAA.5010903@lisit.it> Have 2 Sun, both hardened :( -cd Carroll, Jim P [Contractor] ha scritto: >What about compiling it on a non-hardened machine, then moving/installing it >on the target machine? > >jc > > > > >>-----Original Message----- >>From: Cristian DiMalio [mailto:cristian.dimalio at lisit.it] >>Sent: Wednesday, March 19, 2003 1:18 AM >>To: Andy Harrison >>Cc: nagios-users at lists.sourceforge.net >>Subject: Re: R: [Nagios-users] spark rpm >> >> >>can't because that machine are harden >> >>Andy Harrison ha scritto: >> >> >> >>>-----BEGIN PGP SIGNED MESSAGE----- >>> >>> >>>- ------------------------------------------------------------- >>>On 18-Mar-2003, Cristian DiMalio wrote message "R: >>> >>> >>[Nagios-users] spark rpm" >> >> >>>- ------------------------------------------------------------- >>> >>> >>> >>> >>>>Of corse >>>>But I have a problem to compile on my sun, because cannot >>>> >>>> >>install gcc to >> >> >>>>compile, and I only need some plugins to use with nrpe, >>>> >>>> >>like check_disk >> >> >>>>check_load check_users and check_procs >>>>Does anyone send me? >>>>Tx >>>> >>>> >>>> >>>> >>>Can't because you don't have root, or can't because you >>> >>> >>don't know how? >> >> >>>The gcc package is available on sunfreeware.com. >>> >>> >>> >>>- -- >>>Andy Harrison >>>ah##@httpsite.com >>>ICQ: 123472 AIM/Y!: AHinMaine >>>homepage: http://www.nachoz.com >>> >>>-----BEGIN PGP SIGNATURE----- >>>Version: PGP 6.5.8 >>> >>>iQCVAwUBPnc6rVPEkLgodAWVAQHx8AP+Ja4SW+zui8bZQHsIAeyWzh1N1NBBZhW/ >>>IIev23YWrJtgKcip1T8+9pGcf2KYOKtyN9nkBoEucvS3sjF2inPkAcyxx/J9fUHQ >>>rZqqLobUZOekQNr5yK0n17ptnQK0vFVSEVcuLtnhD2V2lOtHCucbGbG28lmVotOY >>>n55OPCl8WsQ= >>>=WjJC >>>-----END PGP SIGNATURE----- >>> >>> >>>------------------------------------------------------- >>>This SF.net email is sponsored by: Does your code think in ink? >>>You could win a Tablet PC. Get a free Tablet PC hat just for >>> >>> >>playing. >> >> >>>What are you waiting for? >>>http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >>>_______________________________________________ >>>Nagios-users mailing list >>>Nagios-users at lists.sourceforge.net >>>https://lists.sourceforge.net/lists/listinfo/nagios-users >>>::: Please include Nagios version, plugin version (-v) and >>> >>> >>OS when reporting any issue. >> >> >>>::: Messages without supporting info will risk being sent to >>> >>> >>/dev/null >> >> >>> >>> >>> >>> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: Does your code think in ink? >>You could win a Tablet PC. Get a free Tablet PC hat just for playing. >>What are you waiting for? >>http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS >>when reporting any issue. >>::: Messages without supporting info will risk being sent to /dev/null >> >> >> > > >------------------------------------------------------- >This SF.net email is sponsored by: Does your code think in ink? >You could win a Tablet PC. Get a free Tablet PC hat just for playing. >What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rauno.lind at mfa.ee Thu Mar 20 08:27:12 2003 From: rauno.lind at mfa.ee (Rauno Lind) Date: Thu, 20 Mar 2003 09:27:12 +0200 Subject: 3D Status map Message-ID: I had the same problem. But after I upgraded Nagios from version 1.0b5 to 1.00 , it started working. I use Cosmo player with ie. -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: Wednesday, March 19, 2003 7:41 PM To: Nagios Users (E-mail) Subject: RE: [Nagios-users] 3D Status map I installed Cosmo player, but the screen only stay black. My question is. I need to do anything in Nagios or this problem is VRML ? Thank you. Hugo -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: quarta-feira, 19 de mar?o de 2003 13:14 To: Hugo Rebello; Christian Malolepszy; Nagios Users (E-mail) Subject: RE: [Nagios-users] 3D Status map http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=cosmo+player > -----Original Message----- > From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] > Sent: Wednesday, March 19, 2003 10:03 AM > To: Christian Malolepszy; 'Nagios Users (E-mail) ' > Subject: RE: [Nagios-users] 3D Status map > > Where the cosmo player is in my browser ? I don't to get find. > I use ie and when I select "3D status map" the see only dark . > > Thank you. > > -----Original Message----- > From: Christian Malolepszy [mailto:chr at gli-micram.de] > Sent: quarta-feira, 19 de mar?o de 2003 10:26 > To: Hugo Rebello; 'Nagios Users (E-mail) ' > Subject: Re: [Nagios-users] 3D Status map > > > do you see the cosmo player ui in your browser ? > what kind of browser you are using ? > i use cosmo player with ie and phoenix/gozilla and it works fine > only the dark vrml images are a problem > > ----- Original Message ----- > From: "Hugo Rebello" > To: "'Nagios Users (E-mail) '" > Sent: Wednesday, March 19, 2003 1:04 PM > Subject: FW: [Nagios-users] 3D Status map > > > > Could anybody help me ? > > > > Thanks, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo > > Rebello > > Sent: ter?a-feira, 18 de mar?o de 2003 12:19 > > To: 'Nagios Users (E-mail)' > > Subject: RE: [Nagios-users] 3D Status map > > > > > > When I click on the "3-D Status Map" link I dont see anything. > > I installed VRML client (Cosmo player), but the "3-D status map" doesn't > > work yet. > > I enable Java in my browser, also. > > > > > > Thank you. > > > > Regards, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Sandro Vaz > > (UOL) > > Sent: sexta-feira, 14 de mar?o de 2003 10:42 > > To: 'Paul Clayton'; 'Nagios Users (E-mail)' > > Subject: RES: [Nagios-users] 3D Status map > > > > > > Download a VRML client. It's in the FAQs. > > > > http://www.nagios.org/faqs/viewfaq.php?faq_id=52 > > > > -----Mensagem original----- > > De: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Paul > Clayton > > Enviada em: sexta-feira, 14 de mar?o de 2003 08:59 > > Para: Nagios Users (E-mail) > > Assunto: [Nagios-users] 3D Status map > > > > > > Gurus, > > > > Attempting to run the 3D-Status Map(statuswrl.cgi), I get a "File > Download > " > > box. The URL looks right, and the permissions are fine for the file. Any > > ideas why I don't get the display. > > > > > > Regards > > > > Unix like TeePee no windows, no gates, Apache inside. > > Paul Clayton > > Global Unix Co-ordinator > > Intec Telecom Systems > > Ph +27 (0) 21 4309000 > > Fax +27 (0) 21 4309025 > > Mobile +27(0) 832853403 > > > > > > > > > > > ************************************************************************** > ** > > *************** > > > > > > This e-mail and any attachments are confidential and may also be > privileged > > and/or copyright material of Independent Technology Systems Limited (or > its > > affiliated companies). If you are not the intended or authorised > recipient > > of this email or have received it in error, please delete it immediately > and > > > > notify the sender by e-mail. In such a case reading, reproducing, > printing > > or > > further dissemination of this e-mail is strictly prohibited and may be > > unlawful. > > > > Independent Technology Systems Limited does not represent or warrant > that > > an attachment hereto is free from computer viruses or other defects. > > > > The opinions expressed in this e-mail and any of the attachments may > > be those of the author and are not necessarily those of Independent > > Technology Systems Limited. > > > ************************************************************************** > ** > > ************** > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > --- > > Incoming mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > > --- > > Outgoing mail is certified Virus Free. > > Checked by AVG anti-virus system (http://www.grisoft.com). > > Version: 6.0.461 / Virus Database: 260 - Release Date: 10/3/2003 > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by:Crypto Challenge is now open! > > Get cracking and register here for some mind boggling fun and > > the chance of winning an Apple iPod: > > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jens.kruse at mobilcom.de Thu Mar 20 08:34:01 2003 From: jens.kruse at mobilcom.de (Jens Kruse) Date: Thu, 20 Mar 2003 08:34:01 +0100 Subject: Monitoring Cisco Routers References: Message-ID: <3E796EE9.1040501@mobilcom.de> I'll send you the Module via mail. Rgds, Jens Hugo Rebello wrote: > My Nagios machine doesn't has access to internet. > Can I install "Net::SNMP" of another way ? > > Thanks, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu > Ghosh > Sent: quarta-feira, 19 de mar?o de 2003 10:15 > To: David Adams; nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Monitoring Cisco Routers > > > > Yes - missing a perl module... > > The correct one is Net::SNMP not SNMP > > perl -MCPAN -e'install Net::SNMP' > > There are some pre-req, but the install process should walk you through > those.. > > -sg > > On Wed, 19 Mar 2003, Tomas Hautala wrote: > > >>Looks like you are missing a perl module. >>Try the folowing. >> >>perl -MCPAN -e "install SNMP" >> >>hope this helps. >> >> >> >>---------------------------------- >>Tomas Hautala >>University of V?xj?, It-department >>Phone:+46 (0)470 - 708515 >>Cell:+46 (0)708 - 901066 >>Mail:tomas.hautala at adm.vxu.se >> >> >> >>David Adams wrote: >> >>>Hi Everyone, >>> >>>Thanks for all the help so far. I am trying to run check_ifstatus and >>>i'm getting the following error >>> >>># ./check_ifstatus >>>Can't locate Net/SNMP.pm in @INC (@INC contains: >>>/usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 >>>/usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 >>>/usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd >>>/usr/libdata/perl5/site_perl/i386-openbsd >>>/usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl >>>/usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. >>>BEGIN failed--compilation aborted at ./check_ifstatus line 35. >>> >>>I installed net-snmp 5.0.8 *after *i installed nagios, could this be the >>>problem? I also had trouble installing net-snmp on openbsd3.0 and had to >>>use options to exclude some of the MIB's. >>> >>>Has anyone else using openbsd run in to these problems? >>> >>>thanks >>> >>>Dave >>> >>> -----Original Message----- >>> *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] >>> *Sent:* 18 March 2003 15:39 >>> *To:* David Adams; nagios-users at lists.sourceforge.net >>> *Subject:* Re: [Nagios-users] Monitoring Cisco Routers >>> >>> Try the plugin check_ifstatus, work well for detecting link status. >>> >>> */David Adams /* wrote: >>> >>> Greetings all, >>> >>> Is there a way to monitor link states, interface states, >>> processor load etc on Cisco routers? I'm assuming this would >>> have to be done using check_snmp. >>> If that's how it's done, does anyone have any MIB's or link to a >>> resource that could get me started? Of course, there is always >>> the jackpot, has anyone made any plugins for Cisco kit ;-) >>> >>> Thanks >>> >>> Dave >>> >>> >> > ------------------------------------------------------------------------ > >>> Do you Yahoo!? >>> Yahoo! Platinum >>> >> > l> > >>> - Watch CBS' NCAA March Madness, live on your desktop >>> >> > l>! > >> >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: Does your code think in ink? >>You could win a Tablet PC. Get a free Tablet PC hat just for playing. >>What are you waiting for? >>http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > >>::: Messages without supporting info will risk being sent to /dev/null >> > > > -- > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -- Mit freundlichen Gr??en Jens Kruse Linux Systemadministration MobilCom AG Hollerstra?e 126 24782 B?delsdorf Telefon: +49 (0)4331/ 447 - 2168 Telefax: +49 (0)4331/ 434 - 4010 jens.kruse at mobilcom.de Besucher: Am Friedrichsbrunnen ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cristian.dimalio at lisit.it Thu Mar 20 08:40:58 2003 From: cristian.dimalio at lisit.it (Cristian DiMalio) Date: Thu, 20 Mar 2003 08:40:58 +0100 Subject: problem with new kernel In-Reply-To: References: Message-ID: <3E79708A.9040903@lisit.it> Help ME Cristian DiMalio ha scritto: >I upgrade on my linux server, th kernel version with Red Hat Linux >(2.4.18-27.8.0), from Red Hat Linux (2.4.18-26.8.0) All work fine, the >only problem are qith nagios process, because grep > >[root at consolefw nagios]# ps -aef |grep nag >nagios 1241 1 0 11:05 ? 00:00:00 [nagios] > >check_nagios said >[root at consolefw root]# /usr/local/nagios/libexec/check_nagios >/usr/local/nagios/var/status.log 5 /usr/local/nagios/bin/nagios >Could not locate a running Nagios process! > And log >[1047981881] Lockfile '/usr/local/nagios/var/nagios.lock' is held by PID >0. Bailing out... > >whats append? Does anyone have same problem? > >I rollback on previous kernel and all return ok > >[root at consolefw root]# ps -aef|grep nagi >nagios 783 1 0 11:11 ? 00:00:00 >/usr/local/nagios/bin/nagios -d > > > >-cd >--- > > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Does your code think in ink? >You could win a Tablet PC. Get a free Tablet PC hat just for playing. >What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From michaelcheung at arnhold.com.hk Thu Mar 20 08:48:20 2003 From: michaelcheung at arnhold.com.hk (it kid) Date: 20 Mar 2003 07:48:20 -0000 Subject: Cant mail notification, anyone can help? Message-ID: <20030320074820.28079.qmail@pod-163.dolphin-server.co.uk> I have search over the form and have try manytimes but still fail, I wonder is any wrong of my setting but one interesting is the sendmail have success contact the company Lotus Domino server but with no notification is received just the following. 03/20/2003 03:10:27 PM SMTP Server: 192.168.1.241 connected 03/20/2003 03:10:27 PM SMTP Server: 192.168.1.241 disconnected. 0 message[s] received Please give me some hints and I post my relevant config file here. Contactgroups.cfg # 'nt-admins' contact group definition define contactgroup{ contactgroup_name server-admin alias Server Administrators members nagios, admin } Contacts.cfg # 'nagios' contact definition define contact{ contact_name admin alias Administrator service_notification_period workhours host_notification_period workhours service_notification_options c,r host_notification_options d,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email root } define contact{ contact_name nagios alias nagios admin service_notification_period workhours host_notification_period workhours service_notification_options c,r host_notification_options d,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email myname at mycomputer.com } Services.cfg define service{ use generic-service ; Name of service template to use host_name test service_description PING is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups server-admin notification_interval 120 notification_period 24x7 notification_options c,r check_command check_ping!100.0,20%!500.0,60% } Misccommands.cfgdefine command{ command_name notify-by-email command_line /usr/bin/echo -e "*****Nagios1.0*****nnNotificationType: $NOTIFICATIONTYPE$nnService: $SERVICEDESC$nHost: $HOSTALIAS$nAddress: $HOSTADDRESS$nState: $SERVICESTATE$nnDate/Time: $DATETIME$nnAdditional Info:nn$OUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ # 'host-notify-by-email' command definition define command{ command_name host-notify-by-email command_line /usr/bin/echo -e "***** Nagios1.0*****nnNotification Type: $NOTIFICATIONTYPE$nHost: $HOSTNAME$nState: $HOSTSTATE$nAddress: $HOSTADDRESS$nInfo: $OUTPUT$nnDate/Time: $DATETIME$n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ } I have change misccommands.cfg of command_line parts as mentions in other mail, and can using "mail myemailaddress" in command line to send mail to the Lotus Domino mail server. The notification have been generated but my mail server have never receive it.I think Nagios is excellent, but this part is confused me. Sendmail version is 8.11.6-15 and the only things changes of sendmail.mc is the line of and I have not change other sendmail config. dnl define(`SMART_HOST',`192.168.1.2') -- point to the lotus domino server DAEMON_OPTIONS(`Port=smtp,Addr=192.168.1.241, Name=MTA') -- point to the nagios server (with sendmail) Anyone please help me, thanks a lot. ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Thu Mar 20 08:57:18 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Thu, 20 Mar 2003 09:57:18 +0200 Subject: [Nagiosplug-help] RE: Compiling plugins for Tr u64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69240@intecserver007.intec.co.za> Hrishy, What release of Tru64 did you compile on? Mine was Tru64 4.0g. If you have an earlier version, I could zip mine and post them to the sourceforge site. cheers -----Original Message----- From: hrishy [mailto:hrishys at yahoo.co.uk] Sent: Thursday, March 20, 2003 7:55 AM To: Karl DeBisschop Cc: Voon, Ton; 'Paul Clayton'; Nagios Users (E-mail); Nagiosplug-help at lists.sourceforge.net Subject: Re: [Nagiosplug-help] RE: [Nagios-users] Compiling plugins for Tru64 Hi All Today i managed to compile nagios on Tru 64..now do we share the binaries on the sourceforge site ? i used the following commands to compile it.. sample output of df -pk command.. ./configure --with-df-command="/sbin/df -Pk" df -Pk Filesystem 1024-blocks Used Available Capacity Mounted n root_domain#root 768000 435440 324696 58% / /proc 0 0 0 100% /proc usr_domain#usr 2621440 798548 1684520 33% /usr usr_domain#var 2621440 118556 1684520 7% /var oracle_domain#oracle 7536640 5611320 1901992 75% /usr/appe appusers_domain#appusers 8192000 1730473 6437720 22% /appusers scr_domain#scr 4443136 546542 3889576 13% /scr asiadevl_domain#asia 15303112 12921394 2367552 85% /asiatest eurodevl_domain#euro 16358272 15225028 1126952 94% /eurodevl data_domain#data 19620520 18806408 794216 96% /data Hi Toon i am willing to share anything else you require regards Hrishy --- Karl DeBisschop wrote: > On Wed, 2003-03-19 at 02:07, hrishy wrote: > > Hi Voon > > > > Can you please mail me the final 1.3.0 source code > > along with the make files..or instruct me how to > > download them..i was not able to trace the 1.3.0 > > version on the CVS browser > > cvs co -r r1_3_0 > > > > > regards > > Hrishy > > > > > > --- "Voon, Ton" wrote: > > Copying > > to nagiosplug-help mailing list > > > > > > There has been reported success on Tru64 (not > sure > > > which versions) for the > > > final 1.3.0 release. Please can you try and > compile > > > and confirm the Tru64 > > > versions. > > > > > > Also, check_nagios and check_swap do not > currently > > > work so if you manage to > > > fix these, please let us know. > > > > > > Ton > > > > > > > -----Original Message----- > > > > From: Paul Clayton > [SMTP:paul.clayton at intec.co.za] > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > To: Nagios Users (E-mail) > > > > Subject: [Nagios-users] Compiling plugins for > > > Tru64 > > > > > > > > Guys, > > > > > > > > Anybody had any luck with compiling plugins on > > > Tru64 4.0 and 5.1 > > > > > > > > Regards > > > > > > > > Unix like TeePee no windows, no gates, Apache > > > inside. > > > > Paul Clayton > > > > > > > > > > > > > This private and confidential e-mail has been > sent > > > to you by Egg. > > > The Egg group of companies includes Egg Banking > plc > > > (registered no. 2999842), Egg Financial Products > Ltd > > > (registered > > > no. 3319027) and Egg Investments Ltd (registered > no. > > > 3403963) which > > > carries out investment business on behalf of Egg > and > > > is regulated > > > by the Financial Services Authority. > > > Registered in England and Wales. Registered > offices: > > > 1 Waterhouse Square, > > > 138-142 Holborn, London EC1N 2NA. > > > If you are not the intended recipient of this > e-mail > > > and have > > > received it in error, please notify the sender > by > > > replying with > > > 'received in error' as the subject and then > delete > > > it from your > > > mailbox. > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Does your > code > > > think in ink? > > > You could win a Tablet PC. Get a free Tablet PC > hat > > > just for playing. > > > What are you waiting for? > > > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin > version > > > (-v) and OS when reporting any issue. > > > ::: Messages without supporting info will risk > being > > > sent to /dev/null > > > > __________________________________________________ > > Do You Yahoo!? > > Everything you'll ever need on one web page > > from News and Sport to Email and Music Charts > > http://uk.my.yahoo.com > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code > think in ink? > > You could win a Tablet PC. Get a free Tablet PC > hat just for playing. > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagiosplug-help mailing list > > Nagiosplug-help at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagiosplug-help > > ::: Please include plugins version (-v) and OS > when reporting any issue. > > ::: Messages without supporting info will risk > being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code > think in ink? > You could win a Tablet PC. Get a free Tablet PC hat > just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 20 09:01:36 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 20 Mar 2003 09:01:36 +0100 Subject: Web-Based config References: <000701c2ee24$b984b2b0$bd28bb0a@mediaonline.ch> <1048085637.11684.8.camel@lnx024071100.vz.intra.sskm.de> <3E796AE3.8080102@datavis.se> Message-ID: <3E797560.8D00608B@gcc.dhl.com> Fredrik W?nglund wrote: > The project is called NATO, give me a week or so and I will drop it on > the web. NATO? How appropriate... ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 20 09:06:54 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 20 Mar 2003 08:06:54 +0000 (GMT) Subject: [Nagiosplug-help] RE: Compiling plugins for Tr u64 In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69240@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69240@intecserver007.intec.co.za> Message-ID: <20030320080654.61351.qmail@web12603.mail.yahoo.com> Hi Paul My version is uname -a OSF1 zblrdv23 V5.1 732 alpha so i was just wndering wheather we can both post the binaries on to sourceforge site..but dunno whom to ask regards Hrishy --- Paul Clayton wrote: > Hrishy, > > What release of Tru64 did you compile on? Mine was > Tru64 4.0g. If you have > an earlier version, I could zip mine and post them > to the sourceforge site. > > cheers > > -----Original Message----- > From: hrishy [mailto:hrishys at yahoo.co.uk] > Sent: Thursday, March 20, 2003 7:55 AM > To: Karl DeBisschop > Cc: Voon, Ton; 'Paul Clayton'; Nagios Users > (E-mail); > Nagiosplug-help at lists.sourceforge.net > Subject: Re: [Nagiosplug-help] RE: [Nagios-users] > Compiling plugins for > Tru64 > > > Hi All > > Today i managed to compile nagios on Tru 64..now do > we > share the binaries on the sourceforge site ? > > i used the following commands to compile it.. > > > sample output of df -pk command.. > > ./configure --with-df-command="/sbin/df -Pk" > > df -Pk > Filesystem 1024-blocks Used > Available Capacity Mounted n > root_domain#root 768000 435440 > > 324696 58% / > /proc 0 0 > > 0 100% /proc > usr_domain#usr 2621440 798548 > 1684520 33% /usr > usr_domain#var 2621440 118556 > 1684520 7% /var > oracle_domain#oracle 7536640 5611320 > 1901992 75% /usr/appe > appusers_domain#appusers 8192000 1730473 > 6437720 22% /appusers > scr_domain#scr 4443136 546542 > 3889576 13% /scr > asiadevl_domain#asia 15303112 12921394 > 2367552 85% /asiatest > eurodevl_domain#euro 16358272 15225028 > 1126952 94% /eurodevl > data_domain#data 19620520 18806408 > > 794216 96% /data > > > Hi Toon i am willing to share anything else you > require > > regards > Hrishy > > --- Karl DeBisschop wrote: > > On > Wed, 2003-03-19 at 02:07, hrishy wrote: > > > Hi Voon > > > > > > Can you please mail me the final 1.3.0 source > code > > > along with the make files..or instruct me how to > > > download them..i was not able to trace the 1.3.0 > > > version on the CVS browser > > > > cvs co -r r1_3_0 > > > > > > > > regards > > > Hrishy > > > > > > > > > --- "Voon, Ton" wrote: > > > Copying > > > to nagiosplug-help mailing list > > > > > > > > There has been reported success on Tru64 (not > > sure > > > > which versions) for the > > > > final 1.3.0 release. Please can you try and > > compile > > > > and confirm the Tru64 > > > > versions. > > > > > > > > Also, check_nagios and check_swap do not > > currently > > > > work so if you manage to > > > > fix these, please let us know. > > > > > > > > Ton > > > > > > > > > -----Original Message----- > > > > > From: Paul Clayton > > [SMTP:paul.clayton at intec.co.za] > > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > > To: Nagios Users (E-mail) > > > > > Subject: [Nagios-users] Compiling plugins > for > > > > Tru64 > > > > > > > > > > Guys, > > > > > > > > > > Anybody had any luck with compiling plugins > on > > > > Tru64 4.0 and 5.1 > > > > > > > > > > Regards > > > > > > > > > > Unix like TeePee no windows, no gates, > Apache > > > > inside. > > > > > Paul Clayton > > > > > > > > > > > > > > > > > This private and confidential e-mail has been > > sent > > > > to you by Egg. > > > > The Egg group of companies includes Egg > Banking > > plc > > > > (registered no. 2999842), Egg Financial > Products > > Ltd > > > > (registered > > > > no. 3319027) and Egg Investments Ltd > (registered > > no. > > > > 3403963) which > > > > carries out investment business on behalf of > Egg > > and > > > > is regulated > > > > by the Financial Services Authority. > > > > Registered in England and Wales. Registered > > offices: > > > > 1 Waterhouse Square, > > > > 138-142 Holborn, London EC1N 2NA. > > > > If you are not the intended recipient of this > > e-mail > > > > and have > > > > received it in error, please notify the sender > > by > > > > replying with > > > > 'received in error' as the subject and then > > delete > > > > it from your > > > > mailbox. > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Does your > > code > > > > think in ink? > > > > You could win a Tablet PC. Get a free Tablet > PC > > hat > > > > just for playing. > > > > What are you waiting for? > > > > > > > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > > > _______________________________________________ > > > > Nagios-users mailing list > > > > Nagios-users at lists.sourceforge.net > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ::: Please include Nagios version, plugin > > version > > > > (-v) and OS when reporting any issue. > > > > ::: Messages without supporting info will risk > > being > > > > sent to /dev/null > > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Everything you'll ever need on one web page > > > from News and Sport to Email and Music Charts > === message truncated === __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Thu Mar 20 09:10:40 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Thu, 20 Mar 2003 10:10:40 +0200 Subject: [Nagiosplug-help] RE: Compiling plugins for Tr u64 Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69241@intecserver007.intec.co.za> Hrishy, Would save having to reinvent the wheel. cheers -----Original Message----- From: hrishy [mailto:hrishys at yahoo.co.uk] Sent: Thursday, March 20, 2003 10:07 AM To: Paul Clayton; Karl DeBisschop Cc: Voon, Ton; Nagios Users (E-mail); Nagiosplug-help at lists.sourceforge.net Subject: RE: [Nagiosplug-help] RE: [Nagios-users] Compiling plugins for Tr u64 Hi Paul My version is uname -a OSF1 zblrdv23 V5.1 732 alpha so i was just wndering wheather we can both post the binaries on to sourceforge site..but dunno whom to ask regards Hrishy --- Paul Clayton wrote: > Hrishy, > > What release of Tru64 did you compile on? Mine was > Tru64 4.0g. If you have > an earlier version, I could zip mine and post them > to the sourceforge site. > > cheers > > -----Original Message----- > From: hrishy [mailto:hrishys at yahoo.co.uk] > Sent: Thursday, March 20, 2003 7:55 AM > To: Karl DeBisschop > Cc: Voon, Ton; 'Paul Clayton'; Nagios Users > (E-mail); > Nagiosplug-help at lists.sourceforge.net > Subject: Re: [Nagiosplug-help] RE: [Nagios-users] > Compiling plugins for > Tru64 > > > Hi All > > Today i managed to compile nagios on Tru 64..now do > we > share the binaries on the sourceforge site ? > > i used the following commands to compile it.. > > > sample output of df -pk command.. > > ./configure --with-df-command="/sbin/df -Pk" > > df -Pk > Filesystem 1024-blocks Used > Available Capacity Mounted n > root_domain#root 768000 435440 > > 324696 58% / > /proc 0 0 > > 0 100% /proc > usr_domain#usr 2621440 798548 > 1684520 33% /usr > usr_domain#var 2621440 118556 > 1684520 7% /var > oracle_domain#oracle 7536640 5611320 > 1901992 75% /usr/appe > appusers_domain#appusers 8192000 1730473 > 6437720 22% /appusers > scr_domain#scr 4443136 546542 > 3889576 13% /scr > asiadevl_domain#asia 15303112 12921394 > 2367552 85% /asiatest > eurodevl_domain#euro 16358272 15225028 > 1126952 94% /eurodevl > data_domain#data 19620520 18806408 > > 794216 96% /data > > > Hi Toon i am willing to share anything else you > require > > regards > Hrishy > > --- Karl DeBisschop wrote: > > On > Wed, 2003-03-19 at 02:07, hrishy wrote: > > > Hi Voon > > > > > > Can you please mail me the final 1.3.0 source > code > > > along with the make files..or instruct me how to > > > download them..i was not able to trace the 1.3.0 > > > version on the CVS browser > > > > cvs co -r r1_3_0 > > > > > > > > regards > > > Hrishy > > > > > > > > > --- "Voon, Ton" wrote: > > > Copying > > > to nagiosplug-help mailing list > > > > > > > > There has been reported success on Tru64 (not > > sure > > > > which versions) for the > > > > final 1.3.0 release. Please can you try and > > compile > > > > and confirm the Tru64 > > > > versions. > > > > > > > > Also, check_nagios and check_swap do not > > currently > > > > work so if you manage to > > > > fix these, please let us know. > > > > > > > > Ton > > > > > > > > > -----Original Message----- > > > > > From: Paul Clayton > > [SMTP:paul.clayton at intec.co.za] > > > > > Sent: Tuesday, March 18, 2003 1:23 PM > > > > > To: Nagios Users (E-mail) > > > > > Subject: [Nagios-users] Compiling plugins > for > > > > Tru64 > > > > > > > > > > Guys, > > > > > > > > > > Anybody had any luck with compiling plugins > on > > > > Tru64 4.0 and 5.1 > > > > > > > > > > Regards > > > > > > > > > > Unix like TeePee no windows, no gates, > Apache > > > > inside. > > > > > Paul Clayton > > > > > > > > > > > > > > > > > This private and confidential e-mail has been > > sent > > > > to you by Egg. > > > > The Egg group of companies includes Egg > Banking > > plc > > > > (registered no. 2999842), Egg Financial > Products > > Ltd > > > > (registered > > > > no. 3319027) and Egg Investments Ltd > (registered > > no. > > > > 3403963) which > > > > carries out investment business on behalf of > Egg > > and > > > > is regulated > > > > by the Financial Services Authority. > > > > Registered in England and Wales. Registered > > offices: > > > > 1 Waterhouse Square, > > > > 138-142 Holborn, London EC1N 2NA. > > > > If you are not the intended recipient of this > > e-mail > > > > and have > > > > received it in error, please notify the sender > > by > > > > replying with > > > > 'received in error' as the subject and then > > delete > > > > it from your > > > > mailbox. > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Does your > > code > > > > think in ink? > > > > You could win a Tablet PC. Get a free Tablet > PC > > hat > > > > just for playing. > > > > What are you waiting for? > > > > > > > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > > > _______________________________________________ > > > > Nagios-users mailing list > > > > Nagios-users at lists.sourceforge.net > > > > > > > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ::: Please include Nagios version, plugin > > version > > > > (-v) and OS when reporting any issue. > > > > ::: Messages without supporting info will risk > > being > > > > sent to /dev/null > > > > > > > __________________________________________________ > > > Do You Yahoo!? > > > Everything you'll ever need on one web page > > > from News and Sport to Email and Music Charts > === message truncated === __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 20 09:38:06 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 20 Mar 2003 08:38:06 +0000 (GMT) Subject: syslog scanning In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69241@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69241@intecserver007.intec.co.za> Message-ID: <20030320083806.99629.qmail@web12605.mail.yahoo.com> Hi Does anybody here monitor their syslog ..or /var/log/messages files if yes..how exactly do you do that through nagios ? regards Hrishy __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From czwecker at sysctl.de Thu Mar 20 10:11:37 2003 From: czwecker at sysctl.de (Christophe Zwecker) Date: 20 Mar 2003 10:11:37 +0100 Subject: How to enable WAP interface Message-ID: <1048151497.5339.62.camel@fry.mw.his-online.de> Hi, I wonder if I have to to somthing for that. I surfed the default page with my mobile, course not readable. thx -- Christophe Zwecker :Sysctl Susannenstr. 26-28 20357 Hamburg phon/fax: +49 40 43099296/7 mail: czwecker at sysctl.de ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Thu Mar 20 10:30:14 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-1?q?H=FCttig?=) Date: Thu, 20 Mar 2003 10:30:14 +0100 Subject: template config file In-Reply-To: <20030319154237.11719.qmail@web10908.mail.yahoo.com> References: <20030319154237.11719.qmail@web10908.mail.yahoo.com> Message-ID: <200303201030.14821.Michael.Huettig@Medien-Systempartner.de> Am Mittwoch, 19. M?rz 2003 16:42 schrieb Steve Dussaux: > Hello, > > I have a little question concerning Nagios config files. > I'd like to seperate templates definitions from config files (services.cfg, > hosts.cfg,...) > > Is it possible to do this ? Yes, no problem with different cfg like service-templates.cfg, host-templates.cfg and so on, you only have to configure the cfg's in nagios.cfg with ... cfg_file=/usr/local/nagios/etc/servicetemplates.cfg cfg_file=/usr/local/nagios/etc/hosttemplates.cfg ... or cfg_dir=/usr/local/nagios/etc/templates > > Thanks, > Steve > > ___________________________________________________________ > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! > Yahoo! Mail : http://fr.mail.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null -- Michael ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 20 10:37:16 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 20 Mar 2003 10:37:16 +0100 Subject: How to enable WAP interface References: <1048151497.5339.62.camel@fry.mw.his-online.de> Message-ID: <3E798BCC.9EEC32AA@gcc.dhl.com> http://www.nagios.org/faqs/viewfaq.php?faq_id=45 Christophe Zwecker wrote: > > Hi, > > I wonder if I have to to somthing for that. I surfed the default page > with my mobile, course not readable. > > thx > -- > Christophe Zwecker > :Sysctl > Susannenstr. 26-28 > 20357 Hamburg > phon/fax: +49 40 43099296/7 > mail: czwecker at sysctl.de > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jens.kruse at mobilcom.de Thu Mar 20 10:41:27 2003 From: jens.kruse at mobilcom.de (Jens Kruse) Date: Thu, 20 Mar 2003 10:41:27 +0100 Subject: Monitoring Cisco Routers References: Message-ID: <3E798CC7.7060201@mobilcom.de> Hi -sg, hi *, Subhendu Ghosh wrote: >> Is there a way to monitor link states, interface states, processor load >>etc on Cisco routers? I'm assuming this would have to be done using >>check_snmp. If that's how it's done, does anyone have any MIB's or link >>to a resource that could get me started? Of course, there is always the >>jackpot, has anyone made any plugins for Cisco kit ;-) > ... > check_ifstatus for monitoring individual interfaces > check_ifoperstatus for monitoring all interfaces > contrib/checkciscotemp for monitoring cisco temp.. Has anyone already realiszed other plugins for Cisco devices, i.e. Cisco Pix? Or plugins which already handle load and other/more details on Cisco Machines? I have to monitor a big nummer of Cisco Machnies in the future, but don't know much about SNMP. Does anyone have a hint or some examples how to monitor such things with check_snmp? Any cooking recipe is welcome! Thanks, Jens ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jakscht at vit.de Thu Mar 20 11:12:02 2003 From: jakscht at vit.de (Michael Jakscht) Date: Thu, 20 Mar 2003 11:12:02 +0100 Subject: including external files through services.cfg Message-ID: Hi, is it possible to include external files with an ".include" statement (or sth equal) in the services.cfg ? When you have to much services to observe, the services.cfg is such a mess ... I think you know what I'm talking about... So I think about splitting the services.cfg in many files (host-based most likely??) and to include these files then in the services.cfg. Hope this is possible with Nagios 1.0b4. Thanx, Michael ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From philc at foundation-it.com Thu Mar 20 11:15:30 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Thu, 20 Mar 2003 10:15:30 -0000 Subject: nagios http_check ssl Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909E7E2@netfinity-1.foundation-it.local> > From: Brad Dunn [mailto:Brad at pretzel.com.au] > > I had this very same problem with SSL > > And OpenSSL was definatly installed into /usr/local/ssl > > However one thing I did notice was that when it was looking > for all the SSL related files in the configure of the > plugin's. it kept saying "NO" it didn't find them, (I forget > the filenames, blahssl.h or something similar, there were > about 4 or 5. If you specify /usr/local/ssl in the --with-openssl parameter to configure, configure will look in /usr/local/ssl/include/openssl and then /usr/local/ssl/include for the header files. If they're not in either of those, SSL support won't be compiled into the plugins. Phil ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasmine.chua at securecirt.com Thu Mar 20 11:58:02 2003 From: jasmine.chua at securecirt.com (Jasmine) Date: Thu, 20 Mar 2003 18:58:02 +0800 Subject: service availability report Message-ID: <200303201858.06992.jasmine.chua@securecirt.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Nagios-gurus, Just a quick question regarding service availability reports generated by Nagios. The services are returned with event start time, event end time, event duration, Event/State Type and Event/State Information. After that one can see the different states like Unknown, OK , Down, Downtime, Critical, Warning.. The issue here -> Am I right to say that event end time is supposed to match the next event start time? But, the reports generated from one of my host service doesnt seem to do that for a few events. Event start time Event end time Event Duration Event State Type 2003-02-24 07:25:38 2003-02-24 08:06:44 0d 0h 41m 6s SERVICE OK 2003-02-24 08:34:48 2003-02-24 08:57:11 0d 0h 22m 23s SERVICE UNKNOWN Btw 8:06:44 - 08:34:48 ==> What is happening to the service of my host? - -- Jasmine Chua Security Engineer SecureCiRT Pte Ltd Blk 750C Chai Chee Road #04-01 Technopark at ChaiChee Singapore 469003 Tel: 6243 6800 DID: 6243 6802 Fax: 6441 5119 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+eZ69NgvTa7Hj2AURAuOzAJ95tiRNqvBRUToRpCpArBaI7NxylwCgn/w0 j0/oVk2M/qnguiUHdU7jtI8= =87Ja -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From m.kauer at corag.de Thu Mar 20 12:43:00 2003 From: m.kauer at corag.de (m.kauer at corag.de) Date: Thu, 20 Mar 2003 12:43:00 +0100 Subject: check_citrix Message-ID: Hello list, does anybody know where to get the check_citrix plugin? I use plugins v1.3.0 from sourceforge but there is no citrix-check included. I tried to compile the newest CVS tarball (nagios-plugins-200303201000.tar.gz) but this fails (I have no experience in using CVS). Thanks, Marcus ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Thu Mar 20 13:23:04 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Thu, 20 Mar 2003 13:23:04 +0100 Subject: including external files through services.cfg References: Message-ID: <3E79B2A8.20505@datavis.se> You can split it in how many files you want as long as you define the files in nagios.cfg (The cfg_file and cfg_dir directives) /FredrikW Michael Jakscht wrote: >Hi, > >is it possible to include external files with an ".include" statement (or >sth equal) in the services.cfg ? >When you have to much services to observe, the services.cfg is such a mess >... I think you know what I'm talking about... >So I think about splitting the services.cfg in many files (host-based most >likely??) and to include these files then in the services.cfg. >Hope this is possible with Nagios 1.0b4. > >Thanx, > >Michael > > > > > >------------------------------------------------------- >This SF.net email is sponsored by: Tablet PC. >Does your code think in ink? You could win a Tablet PC. >Get a free Tablet PC hat just for playing. What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Thu Mar 20 13:15:48 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-1?q?H=FCttig?=) Date: Thu, 20 Mar 2003 13:15:48 +0100 Subject: service availability report In-Reply-To: <200303201858.06992.jasmine.chua@securecirt.com> References: <200303201858.06992.jasmine.chua@securecirt.com> Message-ID: <200303201315.48672.Michael.Huettig@Medien-Systempartner.de> Am Donnerstag, 20. M?rz 2003 11:58 schrieb Jasmine: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi Nagios-gurus, > > Just a quick question regarding service availability reports generated by > Nagios. The services are returned with event start time, event end time, > event duration, Event/State Type and Event/State Information. After that > one can see the different states like Unknown, OK , Down, Downtime, > Critical, Warning.. > The issue here -> Am I right to say that event end time is supposed to > match the next event start time? But, the reports generated from one of my > host service doesnt seem to do that for a few events. > > Event start time Event end time Event Duration Event State Type > 2003-02-24 07:25:38 2003-02-24 08:06:44 0d 0h 41m 6s SERVICE OK > 2003-02-24 08:34:48 2003-02-24 08:57:11 0d 0h 22m 23s SERVICE UNKNOWN > > Btw 8:06:44 - 08:34:48 ==> What is happening to the service of my host? > > Hi Jasmine, we have the same SERVICE UNKNOWN when i tried to get some information with check_snmp. SNMP is UDP, so the host i'm looking at doesn't have to answer, because there is no session SYN, SYN-ACK,FIN. In our environment this happend a lot time of the day, i tried with 20 checks an retry-checks. Your Question, what happens between 8:06 and 8:34, does nagios schedule a service-check between this time? You can find out in the service-detailed information where you can find Last Check Time: 20-03-2003 13:05:53 Status Data Age: 0d 0h 5m 13s Next Scheduled Active Check: 20-03-2003 13:10:53 Latency: < 1 second Check Duration: 4 seconds Last State Change: 20-03-2003 11:21:10 Current State Duration: 0d 1h 49m 56s Hope this helps > Jasmine Chua > Security Engineer > > SecureCiRT Pte Ltd > Blk 750C Chai Chee Road > #04-01 Technopark at ChaiChee > Singapore 469003 > Tel: 6243 6800 DID: 6243 6802 > Fax: 6441 5119 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.1 (GNU/Linux) > > iD8DBQE+eZ69NgvTa7Hj2AURAuOzAJ95tiRNqvBRUToRpCpArBaI7NxylwCgn/w0 > j0/oVk2M/qnguiUHdU7jtI8= > =87Ja > -----END PGP SIGNATURE----- > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null -- Michael ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Thu Mar 20 14:20:00 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Thu, 20 Mar 2003 14:20:00 +0100 (CET) Subject: pb with service notification Message-ID: <20030320132000.54028.qmail@web10903.mail.yahoo.com> Hello, Many users should have ask for this but since research in sourceforge mailing list archives doesn't work, I haven't found answer to my question. I have my hosts notifications working but not the services notifications. Here is my configs : ######contactgroups.cfg######### define contactgroup { contactgroup_name nagios-admins alias Nagios Administrators members nagios } ######contacts.cfg######### define contact { contact_name nagios alias nagios admin service_notification_period 24x7 host_notification_period 24x7 host_notification_options d,u,r service_notifications_options w,u,c,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email nagios at ... } ######miscommands.cfg######## define command { command_name notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ } define command { command_name host-notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $DATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ } And finally one the service (my service is actually in an UNKNOWN STATE and i got no notifications) ######services.cfg####### define service { hostgroup_name serveurs-applicatifs service_description Proc_usage_as400 check_command apan!snmpget_processor!9000!9800 check_period 24x7 normal_check_interval 5 max_check_attempts 3 retry_check_interval 1 contact_groups nagios-admins notification_interval 120 notification_period 24x7 } Thanks, Steve ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 14:12:46 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 08:12:46 -0500 (EST) Subject: Monitoring Cisco Routers In-Reply-To: <3E798CC7.7060201@mobilcom.de> References: <3E798CC7.7060201@mobilcom.de> Message-ID: On Thu, 20 Mar 2003, Jens Kruse wrote: > Hi -sg, hi *, > > Subhendu Ghosh wrote: > >> Is there a way to monitor link states, interface states, processor load > >>etc on Cisco routers? I'm assuming this would have to be done using > >>check_snmp. If that's how it's done, does anyone have any MIB's or link > >>to a resource that could get me started? Of course, there is always the > >>jackpot, has anyone made any plugins for Cisco kit ;-) > > ... > > check_ifstatus for monitoring individual interfaces > > check_ifoperstatus for monitoring all interfaces > > contrib/checkciscotemp for monitoring cisco temp.. > > Has anyone already realiszed other plugins for Cisco devices, i.e. Cisco > Pix? > Or plugins which already handle load and other/more details on Cisco > Machines? > > I have to monitor a big nummer of Cisco Machnies in the future, but > don't know much about SNMP. > > Does anyone have a hint or some examples how to monitor such things with > check_snmp? > > Any cooking recipe is welcome! > > Thanks, Jens > Attached is check_cisco_env (from Guy) to monitor temp,voltage,fan,cpu. Plans are to merge this with a similar plugin for Juniper that Guy also wrote. We could probably add a memory utilization relatively easily. Are there any particular thigs that you want to see monitored (or see if it possible to monitor)? -- -sg -------------- next part -------------- #!/usr/bin/perl -wT # # check_xinterface - nagios plugin # # largely based upon check_ifoperstatus.pl plugin by Christoph Kron # # # # # Copyright (C) 2002 Guy Van Den Bergh # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either version 2 # of the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # # Report bugs to: guy at belnet.be # # design of the plugin: # check admin status: if down, then warning; exit # check operational status: if down, then critical; exit # check last change, if within 'tolerance' (-l or --last-change option), # then warning # get performance data: bits in/out, etc... (implementation to be scheduled later) # performance data could be checked against older values (bw drops e.g.) use strict; use Net::SNMP; use Getopt::Long; &Getopt::Long::config('auto_abbrev'); my $status; my $TIMEOUT = 60; my %ERRORS = ('UNKNOWN' , '-1', 'OK' , '0', 'WARNING', '1', 'CRITICAL', '2'); my %ciscoEnvMonState = ('1','normal(1)', '2','warning(2)', '3','critical(3)', '4','shutdown(4)', '5','notPresent(5)', '6','notFunctioning(6)'); my $state = "UNKNOWN"; my $answer = ""; my $snmpkey = 1; my $community = "public"; my $port = 161; my $t_oid; my @snmpoids; my %error_oids; my $snmpCiscoVoltageStatus; my $snmpCiscoTemperatureStatus; my $snmpCiscoFanStatus; my $snmpCiscoSupplyStatus; my $hostname; my $session; my $error; my $response; my $value; my $oid; my @voltage_errors; my @temperature_errors; my @fan_errors; my @supply_errors; sub usage { printf "\nMissing arguments!\n"; printf "\n"; printf "Perl Check Cisco Environment plugin for Nagios\n"; printf "checks status of temperature, fans, ...\n"; printf "usage: \n"; printf "check_cisco_env -c -p "; printf "\nCopyright (C) 2002 Guy Van Den Bergh\n"; printf "check_cisco_env comes with ABSOLUTELY NO WARRANTY\n"; printf "This programm is licensed under the terms of the "; printf "GNU General Public License\n(check source code for details)\n"; printf "\n\n"; exit $ERRORS{"UNKNOWN"}; } # Just in case of problems, let's not hang Nagios $SIG{'ALRM'} = sub { print ("ERROR: No snmp response from $hostname (alarm)\n"); exit $ERRORS{"UNKNOWN"}; }; alarm($TIMEOUT); $status = GetOptions("community=s",\$community, "port=i",\$port); if ($status == 0) { &usage; } #shift; $hostname = shift || &usage; ($session, $error) = Net::SNMP->session( -hostname => $hostname, -community => $community, -port => $port ); if (!defined($session)) { $state='UNKNOWN'; $answer=$error; print ("$state: $answer"); exit $ERRORS{$state}; } $snmpCiscoVoltageStatus = '.1.3.6.1.4.1.9.9.13.1.2.1.7'; $snmpCiscoTemperatureStatus = '.1.3.6.1.4.1.9.9.13.1.3.1.6'; $snmpCiscoFanStatus = '.1.3.6.1.4.1.9.9.13.1.4.1.3'; $snmpCiscoSupplyStatus = '.1.3.6.1.4.1.9.9.13.1.5.1.3'; push(@snmpoids,$snmpCiscoVoltageStatus); push(@snmpoids,$snmpCiscoTemperatureStatus); push(@snmpoids,$snmpCiscoFanStatus); push(@snmpoids,$snmpCiscoSupplyStatus); # # These four oids all have the same syntax, # which makes it easy for scripting all four oids at the same time! # $answer = "No data returned (Environment MIB not supported)"; # This will be overwritten when there IS data returned! TABLE: foreach $t_oid (@snmpoids) { # # Now get all relevant oids, and set the plugin output status accordingly. # if (!defined($response = $session->get_table($t_oid))) { $error_oids{$t_oid} = $session->error; next TABLE; } while ( ($oid, $value) = each %$response ) { if ($value == 1 || $value == 5 || $value == 6) { # normal, notPresent or notFunctioning $state = 'OK' if $state =~ /UNKNOWN/; $answer = "All environment variables normal." if $state eq 'OK'; } elsif ($value == 2) { # warning $error_oids{$oid} = $ciscoEnvMonState{$value}; $state = 'WARNING' unless $state =~ /CRITICAL/; } elsif ($value == 3 || $value == 4) { # critical or shutdown $error_oids{$oid} = $ciscoEnvMonState{$value}; $state = 'CRITICAL' } } } $session->close; ## Here is the place for introducing artificial errors (for debugging). # # Now parse all erroneous responses: # unless ($state eq 'OK' or $state eq 'UNKNOWN') { while ( ($oid, $value) = each %error_oids ) { $value =~ s/\(\d\)//; if ($oid =~ /$snmpCiscoVoltageStatus\./) { $oid =~ s/$snmpCiscoVoltageStatus\.//; push(@voltage_errors, "$value (instance $oid)"); } elsif($oid =~ /$snmpCiscoTemperatureStatus\./) { $oid =~ s/$snmpCiscoTemperatureStatus\.//; push(@temperature_errors, "$value (instance $oid)"); } elsif ($oid =~ /$snmpCiscoFanStatus\./) { $oid =~ s/$snmpCiscoFanStatus\.//; push(@fan_errors, "$value (fan $oid)"); } elsif ($oid =~ /$snmpCiscoSupplyStatus\./) { $oid =~ s/$snmpCiscoSupplyStatus\.//; push(@supply_errors, "$value (PS $oid)"); } } # # And now the final formatting of the output: # my $voltage_errors_s = join ";", @voltage_errors if defined $voltage_errors[0]; my $temperature_errors_s = join ";", @temperature_errors if defined $temperature_errors[0]; my $fan_errors_s = join ";", @fan_errors if defined $fan_errors[0]; my $supply_errors_s = join ";", @supply_errors if defined $supply_errors[0]; $answer = "Problems with:
"; $answer .= "Voltage: " . $voltage_errors_s . "
" if defined $voltage_errors_s; $answer .= "Temperature: " . $temperature_errors_s . "
" if defined $temperature_errors_s; $answer .= "Fans: " . $fan_errors_s . "
" if defined $fan_errors_s; $answer .= "Power Supply: " . $supply_errors_s ."
" if defined $supply_errors_s; } print ("$answer\n"); exit $ERRORS{$state}; From trevor.reynolds at talkingnets.com Thu Mar 20 15:19:26 2003 From: trevor.reynolds at talkingnets.com (Trevor Reynolds) Date: Thu, 20 Mar 2003 09:19:26 -0500 Subject: Service / Host dependencies Message-ID: <6EC8FEE33925FB44A08CD9B427361363EEE57D@TNETS_MAIL01.talkingnets.com> Is there any way to make a host dependent on a service? Essentially here is what I am looking to do.... I monitor my customer T1's from the CPE end via ping. (the hosts). I have a 7200 router, multiple DS3's, with cust T1's hanging off them. Using check SNMP plugin, I am monitoring the OperStatus of the DS3's. These are monitored as a service. What I'd like to do, is have the cust T1's dependent on the 7200's DS3 service. Therefore, if a DS3 goes out, we don't get notified for 28 T1's being out of service. Any ideas out there? Trevor Reynolds TalkingNets **************************************************************************** CONFIDENTIALITY NOTE: The information contained in this message may be privileged and confidential and protected from disclosure. No confidentiality or privilege is waived or lost by any mistransmission. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. Please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. Thank you. ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pascal.renaut at electricite-strasbourg.fr Thu Mar 20 15:24:51 2003 From: pascal.renaut at electricite-strasbourg.fr (Pascal RENAUT/GROUPE-ES) Date: Thu, 20 Mar 2003 15:24:51 +0100 Subject: plugins under AIX Message-ID: Hi, I would like to know disk space and other informations on my remote hosts (servers under AIX) by using the nrpe daemon but I've got some problems when running check_nrpe on my Linux (Mandrake 9.0) nagios box which get "Connection refused by host". I think there is a problem whith the compile nrpe source under AIX 4.3.3. Thanks for your help PS : I've seen a message posted on 2002-09-10 on this list from 'jpp' but I can't gain his adress ..................................................................................................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rghf at fsck.me.uk Thu Mar 20 15:53:01 2003 From: rghf at fsck.me.uk (Rus Foster) Date: Thu, 20 Mar 2003 14:53:01 +0000 (GMT) Subject: Allowing all people to view hosts status Message-ID: <20030320145117.N6512@thor.65535.net> Hi All, I'm trying to setup a site which will allow our users to see our systems status. I've got nagios running at monitor.65535.net but am having trouble allowing it so the default view is so that people can see all the status. I don't want to switch off authentication but would like to loosen it a bit. Is this possible to do? Rgds Rus Foster -- http://www.65535.net | MSN: support at 65535.net | e: rghf at 65535.net "More bits for your bite" Lifetime FreeBSD + Linux Hosting and Shell Accounts Please respect RFC1855 and don't top post ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Kurzer at c-bs.de Thu Mar 20 16:05:00 2003 From: Kurzer at c-bs.de (Matthias Kurzer) Date: Thu, 20 Mar 2003 16:05:00 +0100 Subject: service check intervall In-Reply-To: <20030320132000.54028.qmail@web10903.mail.yahoo.com> References: <20030320132000.54028.qmail@web10903.mail.yahoo.com> Message-ID: <3E79D89C.4010908@c-bs.de> Somthing is wrong with my configuration. Some of my services were last checked two hours ago. But in services.cfg every service has a normal_check_interval 3 or 5. There is nothing in nagios log. What ist wrong? Here is my nagios.cfg: log_file=/var/log/nagios/nagios.log cfg_file=/etc/nagios/checkcommands.cfg cfg_file=/etc/nagios/misccommands.cfg cfg_file=/etc/nagios/contactgroups.cfg cfg_file=/etc/nagios/contacts.cfg cfg_file=/etc/nagios/dependencies.cfg cfg_file=/etc/nagios/escalations.cfg cfg_file=/etc/nagios/hostgroups.cfg cfg_file=/etc/nagios/hosts.cfg cfg_file=/etc/nagios/services.cfg cfg_file=/etc/nagios/timeperiods.cfg resource_file=/etc/nagios/resource.cfg status_file=/var/log/nagios/status.log nagios_user=daemon nagios_group=daemon check_external_commands=1 command_check_interval=1 command_file=/var/spool/nagios/nagios.cmd comment_file=/var/log/nagios/comment.log downtime_file=/var/log/nagios/downtime.log lock_file=/var/run/nagios.pid temp_file=/var/log/nagios/nagios.tmp log_rotation_method=w log_archive_path=/var/log/nagios/archives use_syslog=0 log_notifications=1 log_service_retries=1 log_host_retries=1 log_event_handlers=1 log_initial_states=0 log_external_commands=1 log_passive_service_checks=1 inter_check_delay_method=s service_interleave_factor=s max_concurrent_checks=0 service_reaper_frequency=10 sleep_time=1 service_check_timeout=60 host_check_timeout=30 event_handler_timeout=30 notification_timeout=30 ocsp_timeout=5 perfdata_timeout=5 retain_state_information=1 state_retention_file=/var/log/nagios/status.sav retention_update_interval=60 use_retained_program_state=0 interval_length=60 use_agressive_host_checking=0 execute_service_checks=1 accept_passive_service_checks=1 enable_notifications=1 enable_event_handlers=1 process_performance_data=0 obsess_over_services=0 check_for_orphaned_services=0 check_service_freshness=1 freshness_check_interval=60 aggregate_status_updates=1 status_update_interval=15 enable_flap_detection=0 low_service_flap_threshold=5.0 high_service_flap_threshold=20.0 low_host_flap_threshold=5.0 high_host_flap_threshold=20.0 date_format=euro illegal_object_name_chars=`~!$%^&*|'"<>?,()= illegal_macro_output_chars=`~$&|'"<> admin_email=it at c-bs.de admin_pager=pagedaemon # EOF (End of file) -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jason at neospire.net Thu Mar 20 16:10:07 2003 From: jason at neospire.net (Jason Burnett) Date: Thu, 20 Mar 2003 09:10:07 -0600 Subject: graphs && restarts Message-ID: <20030320151007.GA25629@neospire.net> I have not been able to find anything in the mailing list archive or the documentation, a URL would be greatly appreciated. When I restart Nagios, after adding hosts or services, it causes a gap in the trend reports. This has become an annoyance to a few customers and I was wondering if there was a way to have nagios assume and auto fill-in that gap with the state of the host/service before the restart. -- Jason Burnett Senior Engineer http://www.neospire.net voice 214-720-1442 jason at neospire.net fax 214-720-1836 ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 20 16:23:28 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 20 Mar 2003 12:23:28 -0300 Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: Please, How to alter snmp version ? I executed (./check_ifstatus -H "ip" -C "community") command and received the follow error: Use of uninitialized value in concatenation (.) or string at /usr/lib/perl5/site_perl/5.8.0/Net/SNMP/Security/USM.pm line 88. CRITICAL: No response from remote host '10.144.20.5' for 1.3.6.1.2.1.2.2.1.8 with snmp version 1 Thank you. Hugo -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: quarta-feira, 19 de mar?o de 2003 15:23 To: Hugo Rebello Cc: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Monitoring Cisco Routers You can download the tar balls from your local CPAN mirror http://www.perl.com/CPAN/modules/by-authors/id/D/DT/DTOWN/ The pre-req are: Crypt::DES Digest::MD5 Digest::SHA1 Digest::HMAC These can also be found on CPAN /CPAN/modules/by-category/14_Security_and_Encryption/Crypt /CPAN/modules/by-category/14_Security_and_Encryption/Digest -sg On Wed, 19 Mar 2003, Hugo Rebello wrote: > My Nagios machine doesn't has access to internet. > Can I install "Net::SNMP" of another way ? > > Thanks, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu > Ghosh > Sent: quarta-feira, 19 de mar?o de 2003 10:15 > To: David Adams; nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Monitoring Cisco Routers > > > > Yes - missing a perl module... > > The correct one is Net::SNMP not SNMP > > perl -MCPAN -e'install Net::SNMP' > > There are some pre-req, but the install process should walk you through > those.. > > -sg > > On Wed, 19 Mar 2003, Tomas Hautala wrote: > > > Looks like you are missing a perl module. > > Try the folowing. > > > > perl -MCPAN -e "install SNMP" > > > > hope this helps. > > > > > > > > ---------------------------------- > > Tomas Hautala > > University of V?xj?, It-department > > Phone:+46 (0)470 - 708515 > > Cell:+46 (0)708 - 901066 > > Mail:tomas.hautala at adm.vxu.se > > > > > > > > David Adams wrote: > > > Hi Everyone, > > > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > > i'm getting the following error > > > > > > # ./check_ifstatus > > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > > /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd > > > /usr/libdata/perl5/site_perl/i386-openbsd > > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be the > > > problem? I also had trouble installing net-snmp on openbsd3.0 and had to > > > use options to exclude some of the MIB's. > > > > > > Has anyone else using openbsd run in to these problems? > > > > > > thanks > > > > > > Dave > > > > > > -----Original Message----- > > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > > *Sent:* 18 March 2003 15:39 > > > *To:* David Adams; nagios-users at lists.sourceforge.net > > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > > > Try the plugin check_ifstatus, work well for detecting link status. > > > > > > */David Adams /* wrote: > > > > > > Greetings all, > > > > > > Is there a way to monitor link states, interface states, > > > processor load etc on Cisco routers? I'm assuming this would > > > have to be done using check_snmp. > > > If that's how it's done, does anyone have any MIB's or link to a > > > resource that could get me started? Of course, there is always > > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > > > Thanks > > > > > > Dave > > > > > > > > > ------------------------------------------------------------------------ > > > Do you Yahoo!? > > > Yahoo! Platinum > > > > l> > > > - Watch CBS' NCAA March Madness, live on your desktop > > > > l>! > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > -- > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 17:12:26 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 11:12:26 -0500 (EST) Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: Looks like the pre-req for Net::SNMP were not installed.. (see attached) Standard plugin way "-h" [sghosh at slabgs plugins-scripts]$ ./check_ifstatus -h check_ifstatus plugin for Nagios monitors operational status of each network interface (except PPP interfaces) on the target host Usage: -H (--hostname) Hostname to query - (required) -C (--community) SNMP read community (defaults to public, used with SNMP v1 and v2c -v (--snmp_version) 1 for SNMP v1 (default) 2 for SNMP v2c SNMP v2c will use get_bulk for less overhead -p (--port) SNMP port (default 161) -I (--ifmib) Agent supports IFMIB ifXTable. Do not use if you don't know what this is. -V (--version) Plugin version -h (--help) usage help On Thu, 20 Mar 2003, Hugo Rebello wrote: > Please, > > How to alter snmp version ? > I executed (./check_ifstatus -H "ip" -C "community") command and received > the follow error: > > Use of uninitialized value in concatenation (.) or string at > /usr/lib/perl5/site_perl/5.8.0/Net/SNMP/Security/USM.pm line 88. > CRITICAL: No response from remote host '10.144.20.5' for 1.3.6.1.2.1.2.2.1.8 > with snmp version 1 > > Thank you. > Hugo > > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: quarta-feira, 19 de mar?o de 2003 15:23 > To: Hugo Rebello > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Monitoring Cisco Routers > > > You can download the tar balls from your local CPAN mirror > > http://www.perl.com/CPAN/modules/by-authors/id/D/DT/DTOWN/ > > The pre-req are: > Crypt::DES > Digest::MD5 > Digest::SHA1 > Digest::HMAC > > These can also be found on CPAN > > /CPAN/modules/by-category/14_Security_and_Encryption/Crypt > /CPAN/modules/by-category/14_Security_and_Encryption/Digest > > -sg > > On Wed, 19 Mar 2003, Hugo Rebello wrote: > > > My Nagios machine doesn't has access to internet. > > Can I install "Net::SNMP" of another way ? > > > > Thanks, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu > > Ghosh > > Sent: quarta-feira, 19 de mar?o de 2003 10:15 > > To: David Adams; nagios-users at lists.sourceforge.net > > Subject: Re: [Nagios-users] Monitoring Cisco Routers > > > > > > > > Yes - missing a perl module... > > > > The correct one is Net::SNMP not SNMP > > > > perl -MCPAN -e'install Net::SNMP' > > > > There are some pre-req, but the install process should walk you through > > those.. > > > > -sg > > > > On Wed, 19 Mar 2003, Tomas Hautala wrote: > > > > > Looks like you are missing a perl module. > > > Try the folowing. > > > > > > perl -MCPAN -e "install SNMP" > > > > > > hope this helps. > > > > > > > > > > > > ---------------------------------- > > > Tomas Hautala > > > University of V?xj?, It-department > > > Phone:+46 (0)470 - 708515 > > > Cell:+46 (0)708 - 901066 > > > Mail:tomas.hautala at adm.vxu.se > > > > > > > > > > > > David Adams wrote: > > > > Hi Everyone, > > > > > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > > > i'm getting the following error > > > > > > > > # ./check_ifstatus > > > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > > > /usr/local/libdata/perl5 > /usr/local/libdata/perl5/site_perl/i386-openbsd > > > > /usr/libdata/perl5/site_perl/i386-openbsd > > > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be > the > > > > problem? I also had trouble installing net-snmp on openbsd3.0 and had > to > > > > use options to exclude some of the MIB's. > > > > > > > > Has anyone else using openbsd run in to these problems? > > > > > > > > thanks > > > > > > > > Dave > > > > > > > > -----Original Message----- > > > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > > > *Sent:* 18 March 2003 15:39 > > > > *To:* David Adams; nagios-users at lists.sourceforge.net > > > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > > > > > Try the plugin check_ifstatus, work well for detecting link > status. > > > > > > > > */David Adams /* wrote: > > > > > > > > Greetings all, > > > > > > > > Is there a way to monitor link states, interface states, > > > > processor load etc on Cisco routers? I'm assuming this would > > > > have to be done using check_snmp. > > > > If that's how it's done, does anyone have any MIB's or link to > a > > > > resource that could get me started? Of course, there is always > > > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > > > > > Thanks > > > > > > > > Dave > > > > > > > > > > > > > ------------------------------------------------------------------------ > > > > Do you Yahoo!? > > > > Yahoo! Platinum > > > > > > > > l> > > > > - Watch CBS' NCAA March Madness, live on your desktop > > > > > > > > l>! > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Does your code think in ink? > > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > -- > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > -- > > > -- -------------- next part -------------- A non-text attachment was scrubbed... Name: Crypt-DES-2.03.tar.gz Type: application/x-gzip Size: 15274 bytes Desc: URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Digest-MD5-2.24.tar.gz Type: application/x-gzip Size: 42303 bytes Desc: URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Digest-SHA1-2.02.tar.gz Type: application/x-gzip Size: 35241 bytes Desc: URL: From DPope at bcdi.com Thu Mar 20 17:34:32 2003 From: DPope at bcdi.com (Pope, David) Date: Thu, 20 Mar 2003 11:34:32 -0500 Subject: pb with service notification Message-ID: <37797F68D3E8D2118BE6006008C7FE1D02573836@mercury> Are you not missing the notification_options [w,u,c,r] from your services.cfg? -----Original Message----- From: Steve Dussaux [mailto:stevox2000 at yahoo.com] Sent: Thursday, March 20, 2003 8:20 AM To: nagios-users at sourceforge.net Subject: [Nagios-users] pb with service notification Hello, Many users should have ask for this but since research in sourceforge mailing list archives doesn't work, I haven't found answer to my question. I have my hosts notifications working but not the services notifications. Here is my configs : ######contactgroups.cfg######### define contactgroup { contactgroup_name nagios-admins alias Nagios Administrators members nagios } ######contacts.cfg######### define contact { contact_name nagios alias nagios admin service_notification_period 24x7 host_notification_period 24x7 host_notification_options d,u,r service_notifications_options w,u,c,r service_notification_commands notify-by-email host_notification_commands host-notify-by-email email nagios at ... } ######miscommands.cfg######## define command { command_name notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$" | /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ } define command { command_name host-notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $OUTPUT$\n\nDate/Time: $DATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert for $HOSTNAME$!" $CONTACTEMAIL$ } And finally one the service (my service is actually in an UNKNOWN STATE and i got no notifications) ######services.cfg####### define service { hostgroup_name serveurs-applicatifs service_description Proc_usage_as400 check_command apan!snmpget_processor!9000!9800 check_period 24x7 normal_check_interval 5 max_check_attempts 3 retry_check_interval 1 contact_groups nagios-admins notification_interval 120 notification_period 24x7 } Thanks, Steve ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Thu Mar 20 17:53:02 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Thu, 20 Mar 2003 08:53:02 -0800 (PST) Subject: Monitoring Cisco Routers errors? In-Reply-To: References: Message-ID: <20030320165302.80835.qmail@web21503.mail.yahoo.com> Hi, Is there a plugin that currently checks for interface errors? CRC, OverRuns, Collisions,etc,etc? THanks. Subhendu Ghosh wrote: Looks like the pre-req for Net::SNMP were not installed.. (see attached) Standard plugin way "-h" [sghosh at slabgs plugins-scripts]$ ./check_ifstatus -h check_ifstatus plugin for Nagios monitors operational status of each network interface (except PPP interfaces) on the target host Usage: -H (--hostname) Hostname to query - (required) -C (--community) SNMP read community (defaults to public, used with SNMP v1 and v2c -v (--snmp_version) 1 for SNMP v1 (default) 2 for SNMP v2c SNMP v2c will use get_bulk for less overhead -p (--port) SNMP port (default 161) -I (--ifmib) Agent supports IFMIB ifXTable. Do not use if you don't know what this is. -V (--version) Plugin version -h (--help) usage help On Thu, 20 Mar 2003, Hugo Rebello wrote: > Please, > > How to alter snmp version ? > I executed (./check_ifstatus -H "ip" -C "community") command and received > the follow error: > > Use of uninitialized value in concatenation (.) or string at > /usr/lib/perl5/site_perl/5.8.0/Net/SNMP/Security/USM.pm line 88. > CRITICAL: No response from remote host '10.144.20.5' for 1.3.6.1.2.1.2.2.1.8 > with snmp version 1 > > Thank you. > Hugo > > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: quarta-feira, 19 de mar?o de 2003 15:23 > To: Hugo Rebello > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Monitoring Cisco Routers > > > You can download the tar balls from your local CPAN mirror > > http://www.perl.com/CPAN/modules/by-authors/id/D/DT/DTOWN/ > > The pre-req are: > Crypt::DES > Digest::MD5 > Digest::SHA1 > Digest::HMAC > > These can also be found on CPAN > > /CPAN/modules/by-category/14_Security_and_Encryption/Crypt > /CPAN/modules/by-category/14_Security_and_Encryption/Digest > > -sg > > On Wed, 19 Mar 2003, Hugo Rebello wrote: > > > My Nagios machine doesn't has access to internet. > > Can I install "Net::SNMP" of another way ? > > > > Thanks, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu > > Ghosh > > Sent: quarta-feira, 19 de mar?o de 2003 10:15 > > To: David Adams; nagios-users at lists.sourceforge.net > > Subject: Re: [Nagios-users] Monitoring Cisco Routers > > > > > > > > Yes - missing a perl module... > > > > The correct one is Net::SNMP not SNMP > > > > perl -MCPAN -e'install Net::SNMP' > > > > There are some pre-req, but the install process should walk you through > > those.. > > > > -sg > > > > On Wed, 19 Mar 2003, Tomas Hautala wrote: > > > > > Looks like you are missing a perl module. > > > Try the folowing. > > > > > > perl -MCPAN -e "install SNMP" > > > > > > hope this helps. > > > > > > > > > > > > ---------------------------------- > > > Tomas Hautala > > > University of V?xj?, It-department > > > Phone:+46 (0)470 - 708515 > > > Cell:+46 (0)708 - 901066 > > > Mail:tomas.hautala at adm.vxu.se > > > > > > > > > > > > David Adams wrote: > > > > Hi Everyone, > > > > > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > > > i'm getting the following error > > > > > > > > # ./check_ifstatus > > > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > > > /usr/local/libdata/perl5 > /usr/local/libdata/perl5/site_perl/i386-openbsd > > > > /usr/libdata/perl5/site_perl/i386-openbsd > > > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be > the > > > > problem? I also had trouble installing net-snmp on openbsd3.0 and had > to > > > > use options to exclude some of the MIB's. > > > > > > > > Has anyone else using openbsd run in to these problems? > > > > > > > > thanks > > > > > > > > Dave > > > > > > > > -----Original Message----- > > > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > > > *Sent:* 18 March 2003 15:39 > > > > *To:* David Adams; nagios-users at lists.sourceforge.net > > > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > > > > > Try the plugin check_ifstatus, work well for detecting link > status. > > > > > > > > */David Adams /* wrote: > > > > > > > > Greetings all, > > > > > > > > Is there a way to monitor link states, interface states, > > > > processor load etc on Cisco routers? I'm assuming this would > > > > have to be done using check_snmp. > > > > If that's how it's done, does anyone have any MIB's or link to > a > > > > resource that could get me started? Of course, there is always > > > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > > > > > Thanks > > > > > > > > Dave > > > > > > > > > > > > > ------------------------------------------------------------------------ > > > > Do you Yahoo!? > > > > Yahoo! Platinum > > > > > > > > > l> > > > > - Watch CBS' NCAA March Madness, live on your desktop > > > > > > > > > l>! > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Does your code think in ink? > > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > -- > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > -- > > > -- > ATTACHMENT part 2 application/x-gzip name=Crypt-DES-2.03.tar.gz > ATTACHMENT part 3 application/x-gzip name=Digest-MD5-2.24.tar.gz > ATTACHMENT part 4 application/x-gzip name=Digest-SHA1-2.02.tar.gz --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From stevox2000 at yahoo.com Thu Mar 20 17:30:43 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Thu, 20 Mar 2003 17:30:43 +0100 (CET) Subject: pb with service notification In-Reply-To: <37797F68D3E8D2118BE6006008C7FE1D02573836@mercury> References: <37797F68D3E8D2118BE6006008C7FE1D02573836@mercury> Message-ID: <20030320163043.96713.qmail@web10904.mail.yahoo.com> Yes exactly i have just noticed too :) It works now. Thanks David --- "Pope, David" a ?crit?: > Are you not missing the notification_options [w,u,c,r] from your > services.cfg? > > -----Original Message----- > From: Steve Dussaux [mailto:stevox2000 at yahoo.com] > Sent: Thursday, March 20, 2003 8:20 AM > To: nagios-users at sourceforge.net > Subject: [Nagios-users] pb with service notification > > > Hello, > > Many users should have ask for this but since research in sourceforge > mailing list archives doesn't work, I haven't found answer to my question. > > I have my hosts notifications working but not the services notifications. > Here is my configs : > > ######contactgroups.cfg######### > define contactgroup { > contactgroup_name nagios-admins > alias Nagios Administrators > members nagios > } > > ######contacts.cfg######### > define contact { > contact_name nagios > alias nagios admin > service_notification_period 24x7 > host_notification_period 24x7 > host_notification_options d,u,r > service_notifications_options w,u,c,r > service_notification_commands notify-by-email > host_notification_commands host-notify-by-email > email nagios at ... > } > > > ######miscommands.cfg######## > define command { > command_name notify-by-email > command_line /usr/bin/printf "%b" "***** Nagios 1.0 > *****\n\nNotification Type: > $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: > $HOSTADDRESS$\nState: > $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$" | > /bin/mail -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is > $SERVICESTATE$ **" $CONTACTEMAIL$ } > > > define command { > command_name host-notify-by-email > command_line /usr/bin/printf "%b" "***** Nagios 1.0 > *****\n\nNotification Type: > $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: > $HOSTADDRESS$\nInfo: > $OUTPUT$\n\nDate/Time: $DATETIME$\n" | /bin/mail -s "Host $HOSTSTATE$ alert > for $HOSTNAME$!" $CONTACTEMAIL$ } > > And finally one the service (my service is actually in an UNKNOWN STATE and > i got no > notifications) > ######services.cfg####### > define service { > hostgroup_name serveurs-applicatifs > service_description Proc_usage_as400 > check_command apan!snmpget_processor!9000!9800 > check_period 24x7 > normal_check_interval 5 > max_check_attempts 3 > retry_check_interval 1 > contact_groups nagios-admins > notification_interval 120 > notification_period 24x7 > } > > Thanks, > Steve > > ___________________________________________________________ > Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! > Mail : http://fr.mail.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 20 18:36:33 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 20 Mar 2003 14:36:33 -0300 Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: I installed the pre-req for Net::SNMP, but when running "./check_ifstatus -h " command, show me : **************************************************************************** ********************************************** [root at monitor libexec]# ./check_ifstatus -h Use of uninitialized value in concatenation (.) or string at /usr/lib/perl5/site_perl/5.8.0/Net/SNMP/Security/USM.pm line 88. check_ifstatus plugin for Nagios monitors operational status of each network interface (except PPP interfaces) on the target host Usage: -H (--hostname) Hostname to query - (required) -C (--community) SNMP read community (defaults to public, used with SNMP v1 and v2c -v (--snmp_version) 1 for SNMP v1 (default) 2 for SNMP v2c SNMP v2c will use get_bulk for less overhead -p (--port) SNMP port (default 161) -I (--ifmib) Agent supports IFMIB ifXTable. Do not use if you don't know what this is. -V (--version) Plugin version -h (--help) usage help check_ifstatus (nagios-plugins 1.3.0-beta3) 1.3 The nagios plugins come with ABSOLUTELY NO WARRANTY. You may redistribute copies of the plugins under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING. **************************************************************************** *********************************************** Why seem the message "Use of uninitialized value in concatenation (.) or string at /usr/lib/perl5/site_perl/5.8.0/Net/SNMP/Security/USM.pm line 88." ? Thank you. Hugo -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: quinta-feira, 20 de mar?o de 2003 13:12 To: Hugo Rebello Cc: 'Nagios Users (E-mail) ' Subject: RE: [Nagios-users] Monitoring Cisco Routers Looks like the pre-req for Net::SNMP were not installed.. (see attached) Standard plugin way "-h" [sghosh at slabgs plugins-scripts]$ ./check_ifstatus -h check_ifstatus plugin for Nagios monitors operational status of each network interface (except PPP interfaces) on the target host Usage: -H (--hostname) Hostname to query - (required) -C (--community) SNMP read community (defaults to public, used with SNMP v1 and v2c -v (--snmp_version) 1 for SNMP v1 (default) 2 for SNMP v2c SNMP v2c will use get_bulk for less overhead -p (--port) SNMP port (default 161) -I (--ifmib) Agent supports IFMIB ifXTable. Do not use if you don't know what this is. -V (--version) Plugin version -h (--help) usage help On Thu, 20 Mar 2003, Hugo Rebello wrote: > Please, > > How to alter snmp version ? > I executed (./check_ifstatus -H "ip" -C "community") command and received > the follow error: > > Use of uninitialized value in concatenation (.) or string at > /usr/lib/perl5/site_perl/5.8.0/Net/SNMP/Security/USM.pm line 88. > CRITICAL: No response from remote host '10.144.20.5' for 1.3.6.1.2.1.2.2.1.8 > with snmp version 1 > > Thank you. > Hugo > > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: quarta-feira, 19 de mar?o de 2003 15:23 > To: Hugo Rebello > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Monitoring Cisco Routers > > > You can download the tar balls from your local CPAN mirror > > http://www.perl.com/CPAN/modules/by-authors/id/D/DT/DTOWN/ > > The pre-req are: > Crypt::DES > Digest::MD5 > Digest::SHA1 > Digest::HMAC > > These can also be found on CPAN > > /CPAN/modules/by-category/14_Security_and_Encryption/Crypt > /CPAN/modules/by-category/14_Security_and_Encryption/Digest > > -sg > > On Wed, 19 Mar 2003, Hugo Rebello wrote: > > > My Nagios machine doesn't has access to internet. > > Can I install "Net::SNMP" of another way ? > > > > Thanks, > > Hugo > > > > -----Original Message----- > > From: nagios-users-admin at lists.sourceforge.net > > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu > > Ghosh > > Sent: quarta-feira, 19 de mar?o de 2003 10:15 > > To: David Adams; nagios-users at lists.sourceforge.net > > Subject: Re: [Nagios-users] Monitoring Cisco Routers > > > > > > > > Yes - missing a perl module... > > > > The correct one is Net::SNMP not SNMP > > > > perl -MCPAN -e'install Net::SNMP' > > > > There are some pre-req, but the install process should walk you through > > those.. > > > > -sg > > > > On Wed, 19 Mar 2003, Tomas Hautala wrote: > > > > > Looks like you are missing a perl module. > > > Try the folowing. > > > > > > perl -MCPAN -e "install SNMP" > > > > > > hope this helps. > > > > > > > > > > > > ---------------------------------- > > > Tomas Hautala > > > University of V?xj?, It-department > > > Phone:+46 (0)470 - 708515 > > > Cell:+46 (0)708 - 901066 > > > Mail:tomas.hautala at adm.vxu.se > > > > > > > > > > > > David Adams wrote: > > > > Hi Everyone, > > > > > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > > > i'm getting the following error > > > > > > > > # ./check_ifstatus > > > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > > > /usr/local/libdata/perl5 > /usr/local/libdata/perl5/site_perl/i386-openbsd > > > > /usr/libdata/perl5/site_perl/i386-openbsd > > > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be > the > > > > problem? I also had trouble installing net-snmp on openbsd3.0 and had > to > > > > use options to exclude some of the MIB's. > > > > > > > > Has anyone else using openbsd run in to these problems? > > > > > > > > thanks > > > > > > > > Dave > > > > > > > > -----Original Message----- > > > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > > > *Sent:* 18 March 2003 15:39 > > > > *To:* David Adams; nagios-users at lists.sourceforge.net > > > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > > > > > Try the plugin check_ifstatus, work well for detecting link > status. > > > > > > > > */David Adams /* wrote: > > > > > > > > Greetings all, > > > > > > > > Is there a way to monitor link states, interface states, > > > > processor load etc on Cisco routers? I'm assuming this would > > > > have to be done using check_snmp. > > > > If that's how it's done, does anyone have any MIB's or link to > a > > > > resource that could get me started? Of course, there is always > > > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > > > > > Thanks > > > > > > > > Dave > > > > > > > > > > > > ------------------------------------------------------------------------ > > > > Do you Yahoo!? > > > > Yahoo! Platinum > > > > > > > > l> > > > > - Watch CBS' NCAA March Madness, live on your desktop > > > > > > > > l>! > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Does your code think in ink? > > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > > What are you waiting for? > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. > > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > -- > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting > > any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > -- > > > -- ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Thu Mar 20 16:39:00 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Thu, 20 Mar 2003 09:39:00 -0600 Subject: Web-Based config Message-ID: <352B04312822444A962714393AED8A4D1137CE@ADAEVS01.int.chickasaw.net> Some one who has a good start might think to get with ethan and see about integrating it into nagios for the next version. Give it the look and feel that nagios already has... And then have it readlily available with nagios! Just a thought. -----Original Message----- From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] Sent: Thursday, March 20, 2003 1:17 AM To: sebastian.schubert at sskm.de Cc: Pascal Wessel; 'Jeff Rodriguez'; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Web-Based config I am working in a MySQL-backend with a config-tool for all config-file in Nagios. The project is called NATO, give me a week or so and I will drop it on the web. /FredrikW Sebastian Schubert wrote: >Am Mit, 2003-03-19 um 15.35 schrieb Pascal Wessel: > > >> >> >>Yes: Nagat >> >>http://sourceforge.net/projects/nagat >> >>Best regards, >>Pascal >> >> >one problem with nagat is, that the last changes were made nearly 10 >month ago, and i can't see any work going on ... > > > >> Does anyone know if there is a web-based configuration tool >> for Nagios? I hope there is otherwise I need to make one ;) >> >> Thanks, >> >> Jeff >> >> > >i've written one myself... >you might want to have a look at: >http://nagiosconf.sskm.net/ to see the webinterface >http://nagiosconf.sskm.net/sql/ to get a view of the database lying >behind the whole thing .. > >the frontend is written in php with some javascript addons for the >checks, and the backend is written in perl by one of our trainees .. >mysql takes care of the data ;) > >i've posted the link some time ago to the list, but the interface was >only in german ... now it comes with some language templates (german >and english *G*) > >bye >basti > > ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 20 19:46:31 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 12:46:31 -0600 Subject: syslog scanning Message-ID: Yes, using check_log2.pl from the contrib directory. jc > -----Original Message----- > From: hrishy [mailto:hrishys at yahoo.co.uk] > Sent: Thursday, March 20, 2003 2:38 AM > To: Paul Clayton > Cc: Nagios Users (E-mail); Nagiosplug-help at lists.sourceforge.net > Subject: [Nagios-users] syslog scanning > > > Hi > > Does anybody here monitor their syslog ..or > /var/log/messages files if yes..how exactly do you do > that through nagios ? > > regards > Hrishy > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 20 20:16:04 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 13:16:04 -0600 Subject: Web-Based config Message-ID: Not sure whether Fredrik needs to get with Ethan on this one, at least not as far as a seamless, shrinkwrapped integration is concerned. Today you can download the core product. And plugins. And addons (NRPE, NSCA, others). And image packs. I could be speaking out of turn here, but I suspect Fredrik intended NATO to be another addon. jc > -----Original Message----- > From: Jeremy Russell [mailto:Jeremy.Russell at chickasaw.net] > Sent: Thursday, March 20, 2003 9:39 AM > To: nagios-users at lists.sourceforge.net > Subject: RE:[Nagios-users] Web-Based config > > > Some one who has a good start might think to get with ethan > and see about integrating it into nagios for the next > version. Give it the look and feel that nagios already > has... And then have it readlily available with nagios! > > Just a thought. > > -----Original Message----- > From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] > Sent: Thursday, March 20, 2003 1:17 AM > To: sebastian.schubert at sskm.de > Cc: Pascal Wessel; 'Jeff Rodriguez'; > nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Web-Based config > > > I am working in a MySQL-backend with a config-tool for all > config-file > in Nagios. > The project is called NATO, give me a week or so and I will > drop it on > the web. > > > /FredrikW > > > Sebastian Schubert wrote: > > >Am Mit, 2003-03-19 um 15.35 schrieb Pascal Wessel: > > > > > >> > >> > >>Yes: Nagat > >> > >>http://sourceforge.net/projects/nagat > >> > >>Best regards, > >>Pascal > >> > >> > >one problem with nagat is, that the last changes were made nearly 10 > >month ago, and i can't see any work going on ... > > > > > > > >> Does anyone know if there is a web-based configuration tool > >> for Nagios? I hope there is otherwise I need to make one ;) > >> > >> Thanks, > >> > >> Jeff > >> > >> > > > >i've written one myself... > >you might want to have a look at: > >http://nagiosconf.sskm.net/ to see the webinterface > >http://nagiosconf.sskm.net/sql/ to get a view of the database lying > >behind the whole thing .. > > > >the frontend is written in php with some javascript addons for the > >checks, and the backend is written in perl by one of our trainees .. > >mysql takes care of the data ;) > > > >i've posted the link some time ago to the list, but the interface was > >only in german ... now it comes with some language templates (german > >and english *G*) > > > >bye > >basti > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Thu Mar 20 20:19:27 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Thu, 20 Mar 2003 14:19:27 -0500 Subject: Problems with check_by_ssh plugin Message-ID: <5593DA408212D511B0910002A513501F01D2893A@phsexch20.mgh.harvard.edu> I am trying to monitor several different servers via the check_by_ssh plug-in. One example is checking the httpd status on the remote server running Slackware 2.6. To that end, I created a script on the remote server that invoked the check_http plug-in. The script was tested by manually running it, and it appeared to work properly. The check_by_ssh plug-in was manually started on the nagios server and the commands that were used are the following: /usr/local/nagios/libexec/check_by_ssh -H gray -C /usr/local/nagios/check_http /usr/local/nagios/libexec/check_by_ssh -f -H gray -C /usr/local/nagios/check_http The error message that I encountered in both cases was Permission denied (public,keyboard-interactive). Another example is checking the disk space usage on another server. A similar procedure to the one above was done on the second server which was running HP-UX 10.20. Again, when the script was run manually, it appeared to work properly. When the check_by_ssh plug-in was manually invoked on the Nagios server, a different problem occurred. I was prompted for nagios user password and after I entered it, the output indicated the script and plug-in were working properly. The problem here is, the operation had to be done manually...it did not work automatically. Summarily here are the two problems: 1. Server One: Permission denied (public,keyboard-interactive). 2. Server Two: The operation had to be done manually...it did not work automatically. Any ideas? I have the keychain 2.0.6 application on the nagios server. This application is to expedite the ssh login process by remembering the appropriate password associated with the ssh account. The idea here is, if there are several services that are running on the remote server, and the check_by_ssh plug-in is being used, keychain will automate the login procedure. ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From wilcoxc at troycorp.com Thu Mar 20 20:22:09 2003 From: wilcoxc at troycorp.com (Wilcox, Chris) Date: Thu, 20 Mar 2003 14:22:09 -0500 Subject: Email Notifications if mail -s works Message-ID: <5F735AF7A501D411910600104B76901E02B82C5C@POSTAL> I have checked these logs and they are empty. There is really no log file that I could find for nullmailer......anyone that has used this product know of one? Thanks, Chris. -----Original Message----- From: Lars Andersson [mailto:lars at rockar.nu] Sent: Tuesday, March 18, 2003 9:46 PM To: Wilcox, Chris Subject: Re: [Nagios-users] Email Notifications if mail -s works Have you checked your logs? /var/log/mail* And your mailq? -- Lars On Tue, 18 Mar 2003, Wilcox, Chris wrote: > What is the most likely cause of mail not being sent correctly if mail -s > works. > > I am using nullmailer as my mta, from the CLI it works great....but Nagios > just won't send it...any help out there would be greatly appreciated.... > > > > Chris Wilcox > Manager Network Services > Troy Corporation > 973-443-4200 x2545 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Austin.Forsyth at Caminus.com Thu Mar 20 20:06:57 2003 From: Austin.Forsyth at Caminus.com (Forsyth, Austin) Date: Thu, 20 Mar 2003 13:06:57 -0600 Subject: Reloading config - all plugins fail with 127 out of bounds Message-ID: <824E55EFC56BAF42902290E992A1D8C3EF4223@Nuke06.Caminus.org> First, let me say Nagios is running quite well with my configuration, but I've run into a confusing problem - platform is Nagios 1.0, plugins 1.3.0 on RedHat 7.3. My hosts check reliably, my services check reliably, soft and hard conditions come and go as is expected, email notification is solid - However, every time I change my configuration, either to tweak scheduling or simply add another service to monitor, after a reload *every* plugin fails and I'm swamped with email notifications. The reason is "Plugin returned code 127, out of bounds, make sure the plugin exists..." for all plugins - ping, hpjd, ftp, telnet, etc. No, my configuration does not fail the check. Yes, everything returns to normal if I *kill* the process, restart it and let it run for around 10 minutes or so to straighten out schedules and re-check everything. If I do not restart, it will not operate. This error (returned 127 out of bounds) has been mentioned before on this list in the archives, and most of the people asking about it either forgot to put the plugins where the system was going to look for them, or didn't tell the system where to look properly. I haven't found a message from someone with a perfectly operational system that performs a simple configuration reload, or stop/start, and then receives the 127 out of bounds error. Any suggestions are very welcome. Thanks, Austin Forsyth Senior Network Engineer Caminus Corporation ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Thu Mar 20 20:12:37 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Thu, 20 Mar 2003 16:12:37 -0300 Subject: Upgrade Message-ID: How to do upgrade of Nagios ? I only to install ? Thanks, Hugo ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 20 19:58:32 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 12:58:32 -0600 Subject: request for APAN config examples Message-ID: I'm trying (once again) to take a crack at setting up APAN. However, the examples seem a little ambiguous. Could anyone send me snippets of, say, the following: - disk check using check_nt - disk check using NRPE - load check using NRPE I should be able to figure out the rest from that, with any luck. The snippets I'm looking for would relate to both services.cfg and apan.cfg. If you can remember (or reconstruct) the command to create the rrd files, those would be helpful, too. TIA, jc ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Thu Mar 20 21:00:43 2003 From: benny at bennyvision.com (C. Bensend) Date: Thu, 20 Mar 2003 14:00:43 -0600 Subject: Problems with check_by_ssh plugin In-Reply-To: <5593DA408212D511B0910002A513501F01D2893A@phsexch20.mgh.harvard.edu>; from AHKAPLAN@PARTNERS.ORG on Thu, Mar 20, 2003 at 02:19:27PM -0500 References: <5593DA408212D511B0910002A513501F01D2893A@phsexch20.mgh.harvard.edu> Message-ID: <20030320140043.A11439@bennyvision.com> On Thu, Mar 20, 2003 at 02:19:27PM -0500, Kaplan, Andrew H. wrote: > > The error message that I encountered in both cases was > > Permission denied (public,keyboard-interactive). Hello Andrew, When you tested this from the command line, did you use the hostname for the remote host to test, or the host's IP? Nagios will use the IP, and may cause this sort of problem. Whenever I set up a new machine for testing via check_by_ssh, I manually ssh as the nagios user to the remote system, both via hostname (and typing "yes" when it asks), and via IP (again acknowledging the remote host's key). Benny -- 86. I will make sure that my doomsday device is up to code and properly grounded. --Peter Anspach's list of things to do as an Evil Overlord ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Thu Mar 20 21:17:02 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Thu, 20 Mar 2003 14:17:02 -0600 Subject: Web-Based config Message-ID: <352B04312822444A962714393AED8A4D1137E0@ADAEVS01.int.chickasaw.net> Well, I didn't necessarily mean only Fredrick.. Anyone that has been working on one of these could help Ethan with doing this... That is if Ethan wants this for his upcoming versions. I would figure since he's planning to rewrite in php perhaps that this wouldn't be that hard to throw in, I know there would proably be several people willing to do what they could to contrib (I would). I do figure making a configuration piece as an addon would be feasible, I would just like to see the configuration as a part of the base, This of course is just my opinion, because the original author(s) of this software may have their reasons for not including this option. Im just so anal I guess that I would like the interface to pose the same style and the app already has. :) Just a random thought really! -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Thursday, March 20, 2003 1:16 PM To: Jeremy Russell; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Web-Based config Not sure whether Fredrik needs to get with Ethan on this one, at least not as far as a seamless, shrinkwrapped integration is concerned. Today you can download the core product. And plugins. And addons (NRPE, NSCA, others). And image packs. I could be speaking out of turn here, but I suspect Fredrik intended NATO to be another addon. jc > -----Original Message----- > From: Jeremy Russell [mailto:Jeremy.Russell at chickasaw.net] > Sent: Thursday, March 20, 2003 9:39 AM > To: nagios-users at lists.sourceforge.net > Subject: RE:[Nagios-users] Web-Based config > > > Some one who has a good start might think to get with ethan and see > about integrating it into nagios for the next version. Give it the > look and feel that nagios already > has... And then have it readlily available with nagios! > > Just a thought. > > -----Original Message----- > From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] > Sent: Thursday, March 20, 2003 1:17 AM > To: sebastian.schubert at sskm.de > Cc: Pascal Wessel; 'Jeff Rodriguez'; > nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Web-Based config > > > I am working in a MySQL-backend with a config-tool for all > config-file in Nagios. > The project is called NATO, give me a week or so and I will > drop it on > the web. > > > /FredrikW > > > Sebastian Schubert wrote: > > >Am Mit, 2003-03-19 um 15.35 schrieb Pascal Wessel: > > > > > >> > >> > >>Yes: Nagat > >> > >>http://sourceforge.net/projects/nagat > >> > >>Best regards, > >>Pascal > >> > >> > >one problem with nagat is, that the last changes were made nearly 10 > >month ago, and i can't see any work going on ... > > > > > > > >> Does anyone know if there is a web-based configuration tool > >> for Nagios? I hope there is otherwise I need to make one ;) > >> > >> Thanks, > >> > >> Jeff > >> > >> > > > >i've written one myself... > >you might want to have a look at: http://nagiosconf.sskm.net/ to see > >the webinterface http://nagiosconf.sskm.net/sql/ to get a view of the > >database lying behind the whole thing .. > > > >the frontend is written in php with some javascript addons for the > >checks, and the backend is written in perl by one of our trainees .. > >mysql takes care of the data ;) > > > >i've posted the link some time ago to the list, but the interface was > >only in german ... now it comes with some language templates (german > >and english *G*) > > > >bye > >basti > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? You > could win a Tablet PC. Get a free Tablet PC hat just for playing. What > are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.G.Martin at mail.sprint.com Thu Mar 20 21:33:05 2003 From: Stanley.G.Martin at mail.sprint.com (Stanley.G.Martin at mail.sprint.com) Date: Thu, 20 Mar 2003 14:33:05 -0600 Subject: No checks after Ack Message-ID: I had a server go down with a disk crash so I went into Nagios and Acknowleged the Server Down problem. I received no more alerts, just like it's supposed to work. When the server came back up, I received and alert that this had happened. After a few hours I noticed the checks for disk space hadn't run. I drilled down on the service and the Next Scheduled Check was set to N/A on all three. I then Re-Scheduled the next check and everything is fine. Is this normal??? BTW - The server is running NT 4.0 and using NSClient. Stanley G. Martin Sprint - EIS? Customer Care Stanley.G.Martin at mail.sprint.com ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Thu Mar 20 21:48:57 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Thu, 20 Mar 2003 12:48:57 -0800 (PST) Subject: Monitoring Cisco Routers errors? In-Reply-To: <3E7A2608.5000100@sbcglobal.net> References: <3E7A2608.5000100@sbcglobal.net> Message-ID: <20030320204857.4408.qmail@web21505.mail.yahoo.com> The OIDs are the hard part.. :) Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs off hand, sorry. Sean Jon Lyons wrote: > Hi, > > Is there a plugin that currently checks for interface errors? CRC, > OverRuns, Collisions,etc,etc? > > THanks. > > > --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From gillespie at iomega.com Thu Mar 20 21:53:35 2003 From: gillespie at iomega.com (Brandon Gillespie) Date: Thu, 20 Mar 2003 13:53:35 -0700 Subject: Web-Based config In-Reply-To: References: Message-ID: <3E7A2A4F.2040704@iomega.com> Carroll, Jim P [Contractor] wrote: > Not sure whether Fredrik needs to get with Ethan on this one, at least not > as far as a seamless, shrinkwrapped integration is concerned. > > Today you can download the core product. And plugins. And addons (NRPE, > NSCA, others). And image packs. > > I could be speaking out of turn here, but I suspect Fredrik intended NATO to > be another addon. IMHO, it should be a part of the application, not an add-on. Being able to easily configure is vital to any application. I have pointed several people to Nagios, and they like how it looks, they download it, etc. But then they get to the point where they want to configure it, they see the poor documentation (sorry, lots of docs != good docs) and are then pointed at these copious .cfg files and they just say forget it, and move onto other things. If you dont want to get into deep hacking, there are much easier tools to use for this purpose than to configure Nagios. I like to get into the guts of things, and I still think configuring nagios is annoying because it is forcing me to spend a LOT of time configuring something which could be so much easier to do with a proper interface. The fact that many people hack tools to make it easier configuring Nagios is a big sign saying there is a problem. Sure, nagios is not hard to configure if you have a few servers. Do it on a scale of 50~100+ and it is no longer trivial, it gets horribly redundant and annoying, even using templates. Modularity is good, but some things should remain core to the system. If I never had to look at another nagios config file I'd be more than happy. -Brandon ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Thu Mar 20 21:35:20 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Thu, 20 Mar 2003 12:35:20 -0800 Subject: Monitoring Cisco Routers errors? In-Reply-To: <20030320165302.80835.qmail@web21503.mail.yahoo.com> References: <20030320165302.80835.qmail@web21503.mail.yahoo.com> Message-ID: <3E7A2608.5000100@sbcglobal.net> I would imagine you could do this via check_snmp. I don't know the OIDs off hand, sorry. Sean Jon Lyons wrote: > Hi, > > Is there a plugin that currently checks for interface errors? CRC, > OverRuns, Collisions,etc,etc? > > THanks. > > > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 22:15:24 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 16:15:24 -0500 (EST) Subject: check_citrix In-Reply-To: References: Message-ID: On Thu, 20 Mar 2003 m.kauer at corag.de wrote: > Hello list, > > does anybody know where to get the check_citrix plugin? > I use plugins v1.3.0 from sourceforge but there is no citrix-check > included. I tried to compile the newest CVS tarball > (nagios-plugins-200303201000.tar.gz) but this fails (I have no experience > in using CVS). > > Thanks, > Marcus > It doesn't compile by default because it is located in the contrib directory... -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 17:41:43 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 11:41:43 -0500 (EST) Subject: graphs && restarts In-Reply-To: <20030320151007.GA25629@neospire.net> References: <20030320151007.GA25629@neospire.net> Message-ID: On Thu, 20 Mar 2003, Jason Burnett wrote: > I have not been able to find anything in the mailing list archive or the > documentation, a URL would be greatly appreciated. When I restart > Nagios, after adding hosts or services, it causes a gap in the trend > reports. This has become an annoyance to a few customers and I was > wondering if there was a way to have nagios assume and auto fill-in that > gap with the state of the host/service before the restart. > > take a look at the state retention options for nagios.cfg -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 22:16:54 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 16:16:54 -0500 (EST) Subject: Monitoring Cisco Routers errors? In-Reply-To: <20030320165302.80835.qmail@web21503.mail.yahoo.com> References: <20030320165302.80835.qmail@web21503.mail.yahoo.com> Message-ID: On Thu, 20 Mar 2003, Jon Lyons wrote: > > Hi, > Is there a plugin that currently checks for interface errors? CRC, OverRuns, Collisions,etc,etc? > THanks. None at the moment - but there was mention on the list a couple of weeks (month?) ago. The big question about the above measurements (and traffic) is that they are only meaningful as rate and not an absolute number - so the plugin would need to retrieve a couple of values and then determine the rate and alert on that. This leads to caching data and questions about where/how to cache and any disk i/o issue if large number of plugin invocations started to d it.. -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 22:19:57 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 16:19:57 -0500 (EST) Subject: Monitoring Cisco Routers errors? In-Reply-To: <20030320204857.4408.qmail@web21505.mail.yahoo.com> References: <20030320204857.4408.qmail@web21505.mail.yahoo.com> Message-ID: OIDs are easy part - rfc 1573 (IF-MIB) for base set look for the transport mibs for specific line type (DS1/E1, DS3/E3, SONET, etc) -sg On Thu, 20 Mar 2003, Jon Lyons wrote: > > The OIDs are the hard part.. :) > Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs > off hand, sorry. > > Sean > > Jon Lyons wrote: > > > Hi, > > > > Is there a plugin that currently checks for interface errors? CRC, > > OverRuns, Collisions,etc,etc? > > > > THanks. > > -- ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jwest at kwcorp.com Thu Mar 20 22:27:07 2003 From: jwest at kwcorp.com (Jay West) Date: Thu, 20 Mar 2003 15:27:07 -0600 Subject: Monitoring Cisco Routers errors? References: <20030320165302.80835.qmail@web21503.mail.yahoo.com> <3E7A2608.5000100@sbcglobal.net> Message-ID: <007901c2ef27$7587eb00$033310ac@kwcorp.com> If you don't know the OID's for something, I'd suggest a particular freeware SNMP MIB viewer called "getif". Think they just came out with a new version. To me it's a must-have for querying devices via SNMP. Jay West --- [This E-mail scanned for viruses by Declude Virus] ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 20 22:23:32 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 20 Mar 2003 16:23:32 -0500 (EST) Subject: Reloading config - all plugins fail with 127 out of bounds In-Reply-To: <824E55EFC56BAF42902290E992A1D8C3EF4223@Nuke06.Caminus.org> References: <824E55EFC56BAF42902290E992A1D8C3EF4223@Nuke06.Caminus.org> Message-ID: On Thu, 20 Mar 2003, Forsyth, Austin wrote: > First, let me say Nagios is running quite well with my configuration, but > I've run into a confusing problem - platform is Nagios 1.0, plugins 1.3.0 on > RedHat 7.3. > > My hosts check reliably, my services check reliably, soft and hard > conditions come and go as is expected, email notification is solid - > > However, every time I change my configuration, either to tweak scheduling or > simply add another service to monitor, after a reload *every* plugin fails > and I'm swamped with email notifications. The reason is "Plugin returned > code 127, out of bounds, make sure the plugin exists..." for all plugins - > ping, hpjd, ftp, telnet, etc. > > No, my configuration does not fail the check. Yes, everything returns to > normal if I *kill* the process, restart it and let it run for around 10 > minutes or so to straighten out schedules and re-check everything. If I do > not restart, it will not operate. > > This error (returned 127 out of bounds) has been mentioned before on this > list in the archives, and most of the people asking about it either forgot > to put the plugins where the system was going to look for them, or didn't > tell the system where to look properly. I haven't found a message from > someone with a perfectly operational system that performs a simple > configuration reload, or stop/start, and then receives the 127 out of bounds > error. > > Any suggestions are very welcome. > > Thanks, > > Austin Forsyth > Senior Network Engineer > Caminus Corporation > How are you achieving the reload - HUP or script? if script - is it HUPing the correct process? -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jason at cannonfodder.org Thu Mar 20 22:30:30 2003 From: jason at cannonfodder.org (jason at cannonfodder.org) Date: Thu, 20 Mar 2003 15:30:30 -0600 Subject: Web-Based config In-Reply-To: <3E7A2A4F.2040704@iomega.com> References: <3E7A2A4F.2040704@iomega.com> Message-ID: <20030320213030.GA30082@neospire.net> just my .02 worth. I am going to have to agree. We have ~300 hosts and ~1500 services and the initial setup of nagios was a major project. Add to that the fact that I would have to "dumb down" the documentation even more and give our support staff access I dont want them to have in order for them to be able to setup new hosts and services. on Thu Mar 20 Brandon Gillespie spoke forth with the blessed manuscript > Carroll, Jim P [Contractor] wrote: > >Not sure whether Fredrik needs to get with Ethan on this one, at least not > >as far as a seamless, shrinkwrapped integration is concerned. > > > >Today you can download the core product. And plugins. And addons (NRPE, > >NSCA, others). And image packs. > > > >I could be speaking out of turn here, but I suspect Fredrik intended NATO > >to > >be another addon. > IMHO, it should be a part of the application, not an add-on. Being able > to easily configure is vital to any application. I have pointed several > people to Nagios, and they like how it looks, they download it, etc. > But then they get to the point where they want to configure it, they see > the poor documentation (sorry, lots of docs != good docs) and are then > pointed at these copious .cfg files and they just say forget it, and > move onto other things. If you dont want to get into deep hacking, > there are much easier tools to use for this purpose than to configure > Nagios. > I like to get into the guts of things, and I still think configuring > nagios is annoying because it is forcing me to spend a LOT of time > configuring something which could be so much easier to do with a proper > interface. The fact that many people hack tools to make it easier > configuring Nagios is a big sign saying there is a problem. > Sure, nagios is not hard to configure if you have a few servers. Do it > on a scale of 50~100+ and it is no longer trivial, it gets horribly > redundant and annoying, even using templates. > Modularity is good, but some things should remain core to the system. > If I never had to look at another nagios config file I'd be more than happy. > -Brandon > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk being > sent to /dev/null -- Jason Burnett Senior Engineer http://www.neospire.net voice 214-720-1442 jason at neospire.net fax 214-720-1836 ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Thu Mar 20 22:36:07 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Thu, 20 Mar 2003 13:36:07 -0800 (PST) Subject: Monitoring Cisco Routers errors? In-Reply-To: References: Message-ID: <20030320213607.38992.qmail@web21503.mail.yahoo.com> Ok, not the hardest part, I was looing for something that would be able to walk the oid tree/interfaces looking for errors. I've got a lot of interfaces on lots of routers, make a specific check_snmp request for each oid is a lot of work.. :) Subhendu Ghosh wrote:OIDs are easy part - rfc 1573 (IF-MIB) for base set look for the transport mibs for specific line type (DS1/E1, DS3/E3, SONET, etc) -sg On Thu, 20 Mar 2003, Jon Lyons wrote: > > The OIDs are the hard part.. :) > Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs > off hand, sorry. > > Sean > > Jon Lyons wrote: > > > Hi, > > > > Is there a plugin that currently checks for interface errors? CRC, > > OverRuns, Collisions,etc,etc? > > > > THanks. > > -- --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From jamie.baddeley at bclnz.com Thu Mar 20 23:50:56 2003 From: jamie.baddeley at bclnz.com (Jamie Baddeley) Date: Fri, 21 Mar 2003 10:50:56 +1200 Subject: Monitoring Cisco Routers errors? Message-ID: Hi, snmpwalk [router] [community string] .1.3.6.1.2.1.2.2.1.14 or snmpwalk [router] [community string] interfaces or snmpwalk [router] [community string] .1.3.6.1.2.1.2 The tricky part is not the oids. It's working out how to set a threshold for something that accumulates rather than be representative of the last 5 minutes. This is where you might need to look at RRD integration/APAN/lrrd etc. Jamie >>> Jon Lyons 03/21 8:48 AM >>> The OIDs are the hard part.. :) Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs off hand, sorry. Sean Jon Lyons wrote: > Hi, > > Is there a plugin that currently checks for interface errors? CRC, > OverRuns, Collisions,etc,etc? > > THanks. > > > --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Austin.Forsyth at Caminus.com Thu Mar 20 23:03:33 2003 From: Austin.Forsyth at Caminus.com (Forsyth, Austin) Date: Thu, 20 Mar 2003 16:03:33 -0600 Subject: Monitoring Cisco Routers errors? Message-ID: <824E55EFC56BAF42902290E992A1D8C3EF423E@Nuke06.Caminus.org> you've missed our point - that counter may have a value that is 0 as seen through the IOS, relative to the time the router knows that counter was reset, but the value of the counter is most likely not 0. it doesn't reset the value to 0 at a counter reset, it resets the time. check out the values sometime, they aren't absolute. -----Original Message----- From: Jon Lyons [mailto:jlyons30 at yahoo.com] Sent: Thursday, March 20, 2003 4:00 PM To: Forsyth, Austin Cc: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] RE:Monitoring Cisco Routers errors? For the type of devices I'm looking to monitor(cisco routers, w/ gig & fast e) there should be NO errors. If there's a value other than 0 we've got problems... :) Output queue 0/40, 0 drops; input queue 0/75, 0 drops 5 minute input rate 3058000 bits/sec, 1202 packets/sec 5 minute output rate 107000 bits/sec, 65 packets/sec 83710206 packets input, 4235826135 bytes, 0 no buffer Received 160 broadcasts, 0 runts, 0 giants, 0 throttles 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort 0 watchdog, 67702 multicast 0 input packets with dribble condition detected 7032457 packets output, 2132869625 bytes, 0 underruns 0 output errors, 0 collisions, 0 interface resets 0 babbles, 0 late collision, 0 deferred 0 lost carrier, 0 no carrier "Forsyth, Austin" wrote: oh goodness. someone else mentioned the specific OIDs for interface error counters and how you have to run a trend on those numbers to actually do something with them. you may want to look into the way those counters are used. some have an upper limit of four billion and just keep counting until they roll over. the cisco IOS interprets the number based on a time delta and then spits out an error rate. you can't really walk the tree, because the counters aren't absolute values. -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Thursday, March 20, 2003 3:36 PM To: Subhendu Ghosh Cc: 'Nagios Users (E-mail) ' Subject: Re: [Nagios-users] RE:Monitoring Cisco Routers errors? Ok, not the hardest part, I was looing for something that would be able to walk the oid tree/interfaces looking for errors. I've got a lot of interfaces on lots of routers, make a specific check_snmp request for each oid is a lot of work.. :) Subhendu Ghosh wrote: OIDs are easy part - rfc 1573 (IF-MIB) for base set look for the transport mibs for specific line type (DS1/E1, DS3/E3, SONET, etc) -sg On Thu, 20 Mar 2003, Jon Lyons wrote: > > The OIDs are the hard part.. :) > Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs > off hand, sorry. > > Sean > > Jon Lyons wrote: > > > Hi, > > > > Is there a plugin that currently checks for interface errors? CRC, > > OverRuns, Collisions,etc,etc? > > > > THanks. > > -- _____ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! _____ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From Austin.Forsyth at Caminus.com Thu Mar 20 22:47:43 2003 From: Austin.Forsyth at Caminus.com (Forsyth, Austin) Date: Thu, 20 Mar 2003 15:47:43 -0600 Subject: Reloading config - all plugins fail with 127 o ut of bounds Message-ID: <824E55EFC56BAF42902290E992A1D8C3EF4238@Nuke06.Caminus.org> I use the script provided with the distribution in /etc/init.d to perform the reload, or the Web interface. The script seems to locate the PID by the lockfile, and as everything is running properly at the moment, the lockfile lists the correct PID. If I call the script with stop/start, I don't get the strange plugin failure. It's a clean reload. I have a workaround, I'm just curious if anyone else has seen *all* the plugins claim their return values are out of bounds? _________________________ How are you achieving the reload - HUP or script? if script - is it HUPing the correct process? -- -sg ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Thu Mar 20 23:00:20 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Thu, 20 Mar 2003 14:00:20 -0800 (PST) Subject: Monitoring Cisco Routers errors? In-Reply-To: <824E55EFC56BAF42902290E992A1D8C3EF4236@Nuke06.Caminus.org> References: <824E55EFC56BAF42902290E992A1D8C3EF4236@Nuke06.Caminus.org> Message-ID: <20030320220020.6265.qmail@web21510.mail.yahoo.com> For the type of devices I'm looking to monitor(cisco routers, w/ gig & fast e) there should be NO errors. If there's a value other than 0 we've got problems... :) Output queue 0/40, 0 drops; input queue 0/75, 0 drops 5 minute input rate 3058000 bits/sec, 1202 packets/sec 5 minute output rate 107000 bits/sec, 65 packets/sec 83710206 packets input, 4235826135 bytes, 0 no buffer Received 160 broadcasts, 0 runts, 0 giants, 0 throttles 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort 0 watchdog, 67702 multicast 0 input packets with dribble condition detected 7032457 packets output, 2132869625 bytes, 0 underruns 0 output errors, 0 collisions, 0 interface resets 0 babbles, 0 late collision, 0 deferred 0 lost carrier, 0 no carrier "Forsyth, Austin" wrote:oh goodness. someone else mentioned the specific OIDs for interface error counters and how you have to run a trend on those numbers to actually do something with them. you may want to look into the way those counters are used. some have an upper limit of four billion and just keep counting until they roll over. the cisco IOS interprets the number based on a time delta and then spits out an error rate. you can't really walk the tree, because the counters aren't absolute values.-----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Thursday, March 20, 2003 3:36 PM To: Subhendu Ghosh Cc: 'Nagios Users (E-mail) ' Subject: Re: [Nagios-users] RE:Monitoring Cisco Routers errors? Ok, not the hardest part, I was looing for something that would be able to walk the oid tree/interfaces looking for errors. I've got a lot of interfaces on lots of routers, make a specific check_snmp request for each oid is a lot of work.. :) Subhendu Ghosh wrote: OIDs are easy part - rfc 1573 (IF-MIB) for base set look for the transport mibs for specific line type (DS1/E1, DS3/E3, SONET, etc) -sg On Thu, 20 Mar 2003, Jon Lyons wrote: > > The OIDs are the hard part.. :) > Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs > off hand, sorry. > > Sean > > Jon Lyons wrote: > > > Hi, > > > > Is there a plugin that currently checks for interface errors? CRC, > > OverRuns, Collisions,etc,etc? > > > > THanks. > > -- --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From jason at cannonfodder.org Thu Mar 20 23:15:55 2003 From: jason at cannonfodder.org (Jason Burnett) Date: Thu, 20 Mar 2003 16:15:55 -0600 Subject: nagios && rrd Message-ID: <20030320221555.GA17715@cannonfodder.org> Is anyone else using RRD to process the service-perf data? If so, what are you using to parse out the $PERFDATA$ & $OUTPUT$ info? We are working on perl to parse it out and put it in RRD for us, but if someone has found an easier way to do this please let me know. -- "Our Country won't go on forever, if we stay soft as we are now. There won't be any AMERICA, because some foreign soldiery will invade us and take our women and breed a hardier race!" LT. GEN. LEWIS "CHESTY" PULLER, USMC ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Thu Mar 20 23:07:04 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Thu, 20 Mar 2003 14:07:04 -0800 (PST) Subject: Monitoring Cisco Routers errors? In-Reply-To: <824E55EFC56BAF42902290E992A1D8C3EF423E@Nuke06.Caminus.org> References: <824E55EFC56BAF42902290E992A1D8C3EF423E@Nuke06.Caminus.org> Message-ID: <20030320220705.45534.qmail@web21503.mail.yahoo.com> Bummer.... "Forsyth, Austin" wrote:you've missed our point - that counter may have a value that is 0 as seen through the IOS, relative to the time the router knows that counter was reset, but the value of the counter is most likely not 0. it doesn't reset the value to 0 at a counter reset, it resets the time. check out the values sometime, they aren't absolute.-----Original Message----- From: Jon Lyons [mailto:jlyons30 at yahoo.com] Sent: Thursday, March 20, 2003 4:00 PM To: Forsyth, Austin Cc: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] RE:Monitoring Cisco Routers errors? For the type of devices I'm looking to monitor(cisco routers, w/ gig & fast e) there should be NO errors. If there's a value other than 0 we've got problems... :) Output queue 0/40, 0 drops; input queue 0/75, 0 drops 5 minute input rate 3058000 bits/sec, 1202 packets/sec 5 minute output rate 107000 bits/sec, 65 packets/sec 83710206 packets input, 4235826135 bytes, 0 no buffer Received 160 broadcasts, 0 runts, 0 giants, 0 throttles 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort 0 watchdog, 67702 multicast 0 input packets with dribble condition detected 7032457 packets output, 2132869625 bytes, 0 underruns 0 output errors, 0 collisions, 0 interface resets 0 babbles, 0 late collision, 0 deferred 0 lost carrier, 0 no carrier "Forsyth, Austin" wrote: oh goodness. someone else mentioned the specific OIDs for interface error counters and how you have to run a trend on those numbers to actually do something with them. you may want to look into the way those counters are used. some have an upper limit of four billion and just keep counting until they roll over. the cisco IOS interprets the number based on a time delta and then spits out an error rate. you can't really walk the tree, because the counters aren't absolute values.-----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Jon Lyons Sent: Thursday, March 20, 2003 3:36 PM To: Subhendu Ghosh Cc: 'Nagios Users (E-mail) ' Subject: Re: [Nagios-users] RE:Monitoring Cisco Routers errors? Ok, not the hardest part, I was looing for something that would be able to walk the oid tree/interfaces looking for errors. I've got a lot of interfaces on lots of routers, make a specific check_snmp request for each oid is a lot of work.. :) Subhendu Ghosh wrote: OIDs are easy part - rfc 1573 (IF-MIB) for base set look for the transport mibs for specific line type (DS1/E1, DS3/E3, SONET, etc) -sg On Thu, 20 Mar 2003, Jon Lyons wrote: > > The OIDs are the hard part.. :) > Sean Knox wrote:I would imagine you could do this via check_snmp. I don't know the OIDs > off hand, sorry. > > Sean > > Jon Lyons wrote: > > > Hi, > > > > Is there a plugin that currently checks for interface errors? CRC, > > OverRuns, Collisions,etc,etc? > > > > THanks. > > -- --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From bpasdar at IGXGlobal.com Thu Mar 20 23:27:55 2003 From: bpasdar at IGXGlobal.com (Babak Pasdar) Date: Thu, 20 Mar 2003 17:27:55 -0500 Subject: check_ntp and me Message-ID: <1048199275000046b1@imgxs42> I posted the enclosed a few weeks ago, as an FYI. However when moving Nagios to it's permanent box, I am unable to get check_ntp from any version working from in Nagios. They all seem to work fine when run from the command line. I am running a RH 7.3 system and all my other plugins seem to work fine. When I run check_ntp via check_by_ssh it also seems to work fine, though this is a bit useless to me. Please tell me what I am missing. Any help, any at all is appreciated. Thanks Babak --------------------- Post from 02/18/2003 OK Iam playing musical plugins here. I was having problems getting: check_snmp check_mysql check_ifstatus check_ifoperstatus from both the plugins: nagios-plugins-200211131100 nagios-plugins-1.3.0-beta2 I downloaded the cvs from today's (02/18/2003) tree. All of the above works except the few hours I spent troubleshooting check_ntp. Now check_ntp works from the command line but for the life of me it would not work in Nagios. I copied the old check_ntp from the nagios-plugins-200211131100 and BANG it started working immediately. Output from CVS 02/18/2003 plugin: #./check_ntp -H 192.168.1.11 NTP OK: Offset 0.002215 secs, jitter 16.822 msec, peer is stratum 1 Output from nagios log: Feb 19 02:12:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;1;(No output!) Feb 19 02:13:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;2;(No output!) Feb 19 02:14:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;HARD;3;(No output!) hope this helps. Babak ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From wasson at brawleyonline.com Thu Mar 20 23:39:44 2003 From: wasson at brawleyonline.com (wasson at brawleyonline.com) Date: Thu, 20 Mar 2003 14:39:44 -0800 (PST) Subject: Network Overview Alert Message-ID: <34099.206.169.51.21.1048199984.squirrel@webmail.brawleyonline.com> I'd like to set up nagios to send a morning 'overall network status' in a single email/SMS message. I'd like the alert to briefly list broken hosts and services or send an "Everything is up" message. I can set up a time period and run a custom command during that time, but I am getting stuck when I think about what command I actually want this to run. I didn't find anything in the FAQ or mailing list archives about this, but if it's been covered, please direct me to it. Tony Wasson ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Thu Mar 20 23:43:43 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Thu, 20 Mar 2003 23:43:43 +0100 Subject: Web-Based config In-Reply-To: <20030320213030.GA30082@neospire.net>; from jason@cannonfodder.org on Thu, Mar 20, 2003 at 03:30:30PM -0600 References: <3E7A2A4F.2040704@iomega.com> <20030320213030.GA30082@neospire.net> Message-ID: <20030320234343.A1572@hpce.nec.com> Well, I tried to avoid getting involved, but... On Thu, Mar 20, 2003 at 03:30:30PM -0600, jason at cannonfodder.org wrote: > just my .02 worth. > > I am going to have to agree. We have ~300 hosts and ~1500 services and > the initial setup of nagios was a major project. You call writing a ~20 line shell script plus some manual tuning a "major project"? > Add to that the fact > that I would have to "dumb down" the documentation even more and give > our support staff access I dont want them to have in order for them to > be able to setup new hosts and services. [ ] You know what you can do with Unix file/directory permissions and nagios' ability to use more than one config file. I admit that, if you have two or three hosts/services, a web based point-and-click based config option is much easier. But with a certain level of depth and experience, you should be much faster using an editor modifying config files (or scripting them, for larger changes) than filling in any number of web forms with combinations of clicking and typing. I'm arrogant enough to add that if you're not experienced enough to see the point and agree, I wouldn't think you're experienced enough to be trusted to monitor my precious equipment. Don't take this personal, but attitudes like "give me something to click and I don't care what the config file looks like" are worrying me. Greater power is rarely found than the one you get by understanding and being able to manipulate config files directly. I don't really care if there is a (usable) web interface. I agree that it should be tied to Nagios at least as closely as the plugins. But the minute I discover that the config files are messed up because of them, you will hear me scream. Wherever on this earth you may happen to be. Rasmus ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Thu Mar 20 23:56:37 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Fri, 21 Mar 2003 09:56:37 +1100 Subject: Web-Based config In-Reply-To: <20030320213030.GA30082@neospire.net>; from jason@cannonfodder.org on Thu, Mar 20, 2003 at 03:30:30PM -0600 References: <3E7A2A4F.2040704@iomega.com> <20030320213030.GA30082@neospire.net> Message-ID: <20030321095634.A86218@IPAustralia.Gov.AU> Dear Folks, 200 hosts && 350 services && don't agree. I think there are more important things that the development of Nagios should focus on such as 1. scalability (1000s of hosts) 2. trap integration - yes, traps are supported by the same mechanism as service check results but traps are so fundamental it would be nice (TM) if they were easier to deal with. (As I write I am watching my /bin/sh trap handler blow up _yet_ again .. 'Fri Mar 21 09:34:38 Warning: Message queue contained results for service 'SLB "castor" port reachability trap' on host 'ServerIron'. The service could not be found!'. My fault of course). 3. reporting. PHBs don't care about _anything_ that isn't in a spreadsheet. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 21 00:15:25 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 17:15:25 -0600 Subject: Web-Based config Message-ID: ObHumour: Then at the other end of the spectrum, we have the Real Men Don't Click project: http://isg.ee.ethz.ch/tools/realmen/ (Sorry, couldn't resist... insert copious smileys here. :):):) jc > -----Original Message----- > From: Brandon Gillespie [mailto:gillespie at iomega.com] > Sent: Thursday, March 20, 2003 2:54 PM > To: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Web-Based config > > > Carroll, Jim P [Contractor] wrote: > > Not sure whether Fredrik needs to get with Ethan on this > one, at least not > > as far as a seamless, shrinkwrapped integration is concerned. > > > > Today you can download the core product. And plugins. And > addons (NRPE, > > NSCA, others). And image packs. > > > > I could be speaking out of turn here, but I suspect Fredrik > intended NATO to > > be another addon. > > IMHO, it should be a part of the application, not an add-on. > Being able > to easily configure is vital to any application. I have > pointed several > people to Nagios, and they like how it looks, they download it, etc. > But then they get to the point where they want to configure > it, they see > the poor documentation (sorry, lots of docs != good docs) and > are then > pointed at these copious .cfg files and they just say forget it, and > move onto other things. If you dont want to get into deep hacking, > there are much easier tools to use for this purpose than to configure > Nagios. > > I like to get into the guts of things, and I still think configuring > nagios is annoying because it is forcing me to spend a LOT of time > configuring something which could be so much easier to do > with a proper > interface. The fact that many people hack tools to make it easier > configuring Nagios is a big sign saying there is a problem. > > Sure, nagios is not hard to configure if you have a few > servers. Do it > on a scale of 50~100+ and it is no longer trivial, it gets horribly > redundant and annoying, even using templates. > > Modularity is good, but some things should remain core to the system. > If I never had to look at another nagios config file I'd be > more than happy. > > -Brandon > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 21 00:31:19 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 17:31:19 -0600 Subject: Web-Based config Message-ID: ObHumour (Part Deux): Striving towards a "user-obsequious" goal...? (Definition found here: http://www.jargon.8hz.com/jargon_36.html#SEC43 ) jc > -----Original Message----- > From: jason at cannonfodder.org [mailto:jason at cannonfodder.org] > Sent: Thursday, March 20, 2003 3:31 PM > To: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Web-Based config > > > just my .02 worth. > > I am going to have to agree. We have ~300 hosts and ~1500 services and > the initial setup of nagios was a major project. Add to that the fact > that I would have to "dumb down" the documentation even more and give > our support staff access I dont want them to have in order for them to > be able to setup new hosts and services. > > on Thu Mar 20 Brandon Gillespie spoke forth with the blessed > manuscript > > Carroll, Jim P [Contractor] wrote: > > >Not sure whether Fredrik needs to get with Ethan on this > one, at least not > > >as far as a seamless, shrinkwrapped integration is concerned. > > > > > >Today you can download the core product. And plugins. > And addons (NRPE, > > >NSCA, others). And image packs. > > > > > >I could be speaking out of turn here, but I suspect > Fredrik intended NATO > > >to > > >be another addon. > > > IMHO, it should be a part of the application, not an > add-on. Being able > > to easily configure is vital to any application. I have > pointed several > > people to Nagios, and they like how it looks, they download > it, etc. > > But then they get to the point where they want to configure > it, they see > > the poor documentation (sorry, lots of docs != good docs) > and are then > > pointed at these copious .cfg files and they just say > forget it, and > > move onto other things. If you dont want to get into deep hacking, > > there are much easier tools to use for this purpose than to > configure > > Nagios. > > > I like to get into the guts of things, and I still think > configuring > > nagios is annoying because it is forcing me to spend a LOT of time > > configuring something which could be so much easier to do > with a proper > > interface. The fact that many people hack tools to make it easier > > configuring Nagios is a big sign saying there is a problem. > > > Sure, nagios is not hard to configure if you have a few > servers. Do it > > on a scale of 50~100+ and it is no longer trivial, it gets horribly > > redundant and annoying, even using templates. > > > Modularity is good, but some things should remain core to > the system. > > If I never had to look at another nagios config file I'd be > more than happy. > > > -Brandon > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Tablet PC. > > Does your code think in ink? You could win a Tablet PC. > > Get a free Tablet PC hat just for playing. What are you > waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > > reporting any issue. ::: Messages without supporting info > will risk being > > sent to /dev/null > > > > -- > Jason Burnett Senior Engineer > http://www.neospire.net voice 214-720-1442 > jason at neospire.net fax 214-720-1836 > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From drich at employees.org Fri Mar 21 00:42:30 2003 From: drich at employees.org (Dan Rich) Date: Thu, 20 Mar 2003 15:42:30 -0800 (PST) Subject: Web-Based config In-Reply-To: <20030320234343.A1572@hpce.nec.com> References: <3E7A2A4F.2040704@iomega.com> <20030320213030.GA30082@neospire.net> <20030320234343.A1572@hpce.nec.com> Message-ID: <37796.63.237.201.12.1048203750.squirrel@www.lapseofthought.com> Rasmus Plewe said: > On Thu, Mar 20, 2003 at 03:30:30PM -0600, jason at cannonfodder.org wrote: >> just my .02 worth. >> >> I am going to have to agree. We have ~300 hosts and ~1500 services and >> the initial setup of nagios was a major project. > You call writing a ~20 line shell script plus some manual tuning a > "major project"? You must have an awfully simple network to do that with a 20 line perl script. My script to generate the config files for our farm systems is just under 250 lines of perl (for 579 hosts and 1122 services). The configs for the rest of our systems (87 systems, 187 services, and still growing) is all hand written due to the variety of services and hosts we run. The above took me a little over a week to do, and the only reason it was that fast is because this is the third time I have implemented Nagios. Oh, I should mention, the config files are somwhere in the neighborhood of 13000 lines at this point (nearly half of that for the farm systems). >> Add to that the fact >> that I would have to "dumb down" the documentation even more and give >> our support staff access I dont want them to have in order for them to >> be able to setup new hosts and services. > > [ ] You know what you can do with Unix file/directory permissions and > nagios' ability to use more than one config file. I've got 20 files now. And adding a new host means editing at least three of those files. It's complicated -- no matter how you look at it. > I admit that, if you have two or three hosts/services, a web based > point-and-click based config option is much easier. But with a certain > level of depth and experience, you should be much faster using an > editor modifying config files (or scripting them, for larger changes) > than filling in any number of web forms with combinations of clicking > and typing. Sure, given a choice I will almost always edit a config file. However, that's not true of everyone. I'd like to be able to deligate adding new hosts/services to the junior guys who build and install the machines. I don't want to have to spend several days with them first making sure they know all the ins and outs of how the config files work and interrelate. I would much rather point them to the current Nagios system and let them add things from there. > I'm arrogant enough to add that if you're not experienced enough to > see the point and agree, I wouldn't think you're experienced enough to > be trusted to monitor my precious equipment. That's fine - I don't want to monitor your equipment, I want to monitor mine. :) Remember, the users of the system are not always the same people who have that experience. I installed and configured the system we run here. I have lots of other things to do and don't want to be the only one who I trust to touch the config files. We also plan on handing of the day-to-day operations of Nagios to a help desk soon. Those folks have even less technical experience than our juniors. > Don't take this personal, but attitudes like "give me something to > click and I don't care what the config file looks like" are worrying > me. Greater power is rarely found than the one you get by > understanding and being able to manipulate config files directly. I didn't see anyone saying that. What I heard was "give me the option to point-n-click". That doesn't mean the config files won't look exactly like they do today. In fact, I'd prefer it if they did so I don't have to rewrite all of my current tools. > I don't really care if there is a (usable) web interface. I agree that > it should be tied to Nagios at least as closely as the plugins. But the > minute I discover that the config files are messed up because of them, > you will hear me scream. Wherever on this earth you may happen to be. I've managed to screw them up without a tool a few times, I would hope a tool would do enough sanity checking that this wouldn't be an issue. -- Dan Rich | http://www.employees.org/~drich/ | "Step up to red alert!" "Are you sure, sir? | It means changing the bulb in the sign..." | - Red Dwarf (BBC) ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Fri Mar 21 00:44:13 2003 From: David at feedroom.com (David Gitman) Date: Thu, 20 Mar 2003 18:44:13 -0500 Subject: Service Definitions Message-ID: Can I not have a host defined twice in the services.cfg file? The host is defined as a host_name and under a hostgroup_name. Also "definitions" is spelled incorrectly in the error message. /etc/init.d/nagios reload Running configuration check... Nagios 1.0 Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 11-24-2002 License: GPL Reading configuration data... Error: Service 'SSH' on host 'hal' has already been defined Error: Could not register service (config file '/local/project/nagios/etc/services.cfg', line 21) ***> One or more problems was encountered while processing the config files... Check your configuration file(s) to ensure that they contain valid directives and data defintions. If you are upgrading from a previous version of Nagios, you should be aware that some variables/definitions may have been removed or modified in this version. Make sure to read the HTML documentation on the main and host config files, as well as the 'Whats New' section to find out what has changed. failed - aborting reload. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jcarro10 at sprintspectrum.com Fri Mar 21 00:55:54 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 17:55:54 -0600 Subject: Network Overview Alert Message-ID: You might wish to consider revising your request to be a simple overall status of green/yellow/red. I can't imagine anything 'brief' about having, say, several services across even just a few hosts reported via pager. For those of us who have experienced spurious (but rare) network problems which defy the 'parents' directive (through no fault of Nagios, I'm quick to add), there's nothing quite like getting hundreds/thousands of notifications by pager, only for the on-call support person to repeatedly delete the pages after repeatedly receiving a "Memory full" error on said pager, to the point where turning it off for the duration is the best solution. I'm not quite sure how you'd make that 'brief'. What you propose isn't a *bad* idea, but you might want to refine the scope a little bit. For one thing, you might want to consider going behind the scenes with some simple munging of status.log, something like: cat /usr/local/nagios/var/status.log | grep -v ";UP;" | grep -v ";OK;" and work from there. using cron and your MTA. Food for thought. jc > -----Original Message----- > From: wasson at brawleyonline.com [mailto:wasson at brawleyonline.com] > Sent: Thursday, March 20, 2003 4:40 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Network Overview Alert > > > I'd like to set up nagios to send a morning 'overall network > status' in a > single email/SMS message. I'd like the alert to briefly list > broken hosts > and services or send an "Everything is up" message. I can set > up a time > period and run a custom command during that time, but I am > getting stuck > when I think about what command I actually want this to run. > I didn't find anything in the FAQ or mailing list archives > about this, but > if it's been covered, please direct me to it. > Tony Wasson > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nny at questionsleep.net Fri Mar 21 00:46:31 2003 From: nny at questionsleep.net (nny) Date: Thu, 20 Mar 2003 17:46:31 -0600 Subject: Service Definitions In-Reply-To: References: Message-ID: <000201c2ef3a$fecb1960$6a01a8c0@blister> is it defined through that host_name and host_group on two services named the same? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of David Gitman Sent: Thursday, March 20, 2003 5:44 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Service Definitions Can I not have a host defined twice in the services.cfg file? The host is defined as a host_name and under a hostgroup_name. Also "definitions" is spelled incorrectly in the error message. /etc/init.d/nagios reload Running configuration check... Nagios 1.0 Copyright (c) 1999-2002 Ethan Galstad (nagios at nagios.org) Last Modified: 11-24-2002 License: GPL Reading configuration data... Error: Service 'SSH' on host 'hal' has already been defined Error: Could not register service (config file '/local/project/nagios/etc/services.cfg', line 21) ***> One or more problems was encountered while processing the config files... Check your configuration file(s) to ensure that they contain valid directives and data defintions. If you are upgrading from a previous version of Nagios, you should be aware that some variables/definitions may have been removed or modified in this version. Make sure to read the HTML documentation on the main and host config files, as well as the 'Whats New' section to find out what has changed. failed - aborting reload. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jcarro10 at sprintspectrum.com Fri Mar 21 01:20:06 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 18:20:06 -0600 Subject: Web-Based config Message-ID: Rasmus Plewe wrote: > I admit that, if you have two or three hosts/services, a web based > point-and-click based config option is much easier. But with a certain > level of depth and experience, you should be much faster using an > editor modifying config files (or scripting them, for larger changes) > than filling in any number of web forms with combinations of clicking > and typing. Amen, Brother Rasmus! :) I'm trying to remember who it was that said it a few months back, but in his environment, they have multiple admins using CVS. If a change is desired, it's checked into CVS in a parallel tree, then does a "nagios -v ", where the alt_config_file points to the parallel tree, and if it comes through clean, it gets promoted to the 'live' tree. I don't recall whether Nagios was restarted from cron (on detecting file mods), or what. Still, very slick. Having said this, I still don't see a convergence between the Web/MySQL school of thought and the XML school of thought. It's quite likely that no convergence is necessary. The XML admin approach would simply be another 'addon'. At the end of the day, both approaches massage the actual Nagios config files; all you've done is insert another layer of administrivia. If that's what it takes to keep the junior sysadmins and the PHBs happy, then so be it. (This last comment isn't for the XML types, but rather the "vi is evil; give me a web browser" types.) I'm all for making admins' lives easier [insert gratuitous reference to www.infrastructures.org here], but I'm less than enthusiastic about closing the hood, welding it shut and becoming complacent about it. Hmm, I think I'm starting to border on a rant. I'll stop while the stopping's good. :) ObDilbert: If you find yourself contemplating which colour the database should be (such as mauve), it might be a good time to hand the reins over to the guy with the glasses and the funky tie. ;) jc ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Fri Mar 21 01:31:29 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Thu, 20 Mar 2003 16:31:29 -0800 Subject: Reloading config - all plugins fail with 127 o ut of bounds In-Reply-To: <824E55EFC56BAF42902290E992A1D8C3EF4238@Nuke06.Caminus.org> References: <824E55EFC56BAF42902290E992A1D8C3EF4238@Nuke06.Caminus.org> Message-ID: <755FAF96-5B34-11D7-A13C-000A95775192@med.ge.com> I see a very similar situation on my newly installed installation of Nagios. In my case the monitoring hosts are all SPARC Solaris 8 machines. My situation: 1. Central server that performs a few active checks but mostly does passive checks 2. Distributed servers that perform active checks and use obsess_over_services to return the results to the central server. If I use the "reload" option of the included init script on the central server sometimes it actually works as expected. Everytime I use the "reload" option of the script on a distributed server I never hear from that server again until I manually kill nagios and restart it on that server. So, I am thinking something is broken with the obsess_ option on a HUP maybe. I haven't gotten that far into troubleshooting it. I've also noticed that the "restart" option of the init script isn't very reliable. I had quite a mystery as to why my config kept randomly changing every 30 seconds until I realized the script had fired up another nagios daemon and not killed the old one! thx, --chd On Thursday, March 20, 2003, at 01:47 PM, Forsyth, Austin wrote: > I use the script provided with the distribution in /etc/init.d to > perform > the reload, or the Web interface. The script seems to locate the PID > by the > lockfile, and as everything is running properly at the moment, the > lockfile > lists the correct PID. > > If I call the script with stop/start, I don't get the strange plugin > failure. It's a clean reload. > > I have a workaround, I'm just curious if anyone else has seen *all* the > plugins claim their return values are out of bounds? > _________________________ > > How are you achieving the reload - HUP or script? if script - is it > HUPing the correct process? > > -- > > -sg > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dtrobert at pacbell.net Fri Mar 21 01:39:31 2003 From: dtrobert at pacbell.net (David Roberts) Date: Thu, 20 Mar 2003 16:39:31 -0800 Subject: format changes for check_disk and check_load Message-ID: Hi, I'm having problems using Nagios 1.0 with nrpe (1.8) and the check_disk, check_load plugins. Recently, I upgraded the plugins from: check_load (nagios-plugins 1.3.0-beta2) 1.4 ----> check_load (nagios-plugins 1.3.0) 1.6 and check_disk (nagios-plugins 1.3.0-beta2) 1.5 ----> check_disk (nagios-plugins 1.3.0) 1.7 It seems that the output formats have changed slightly causing my Nagios monitor to give error "(Return code of 127 is out of bounds - plugin may be missing)" For example, check_load (1.4) load average: 0.01, 0.00, 0.00 check_load (1.6) OK - load average: 1.56, 1.41, 1.34 check_disk (1.5) DISK OK - [28117 kB (76%) free on /dev/sda2] check_disk (1.7) Unable to read output: /bin/df -Pk /dev/hda1 /dev/hda1 964500 278548 636956 31% However, I can run check_nrpe manually from the Nagios monitor system fine (at least I get the same output as by running it locally). I think the problem is basically that these newer plugins provide an output that is too large for the Nagios cgi code to allow. Therefore, 1) is there some patch/config change for Nagios or nrpe to allow processing this output or 2) a patch to check_disk/load to provide the smaller formatted output? Thanks David Roberts ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlyons30 at yahoo.com Fri Mar 21 02:05:52 2003 From: jlyons30 at yahoo.com (Jon Lyons) Date: Thu, 20 Mar 2003 17:05:52 -0800 (PST) Subject: Network Overview Alert In-Reply-To: <20030320224621.GA28216@erwin.wpi.edu> References: <20030320224621.GA28216@erwin.wpi.edu> Message-ID: <20030321010552.57402.qmail@web21507.mail.yahoo.com> Mine isn't as pretty, .. :) but gives an e-mail like; Nag stat H: 0/ 387 S: 1/ 445 ***Hosts: ***Service: 300sr-users-Ping 300srtunrtra-Ping socksohi2.bankone.net-TCP-SOCKS5 #!/usr/local/bin/bash LOGFILE=/usr/local/var/nagios/status.log HOST=`/usr/bin/grep HOST $LOGFILE | /usr/bin/grep CRITICAL | /usr/bin/awk -F\; '{printf $2 " "}'` SERVICE=`/usr/bin/grep SERVICE $LOGFILE | /usr/bin/grep CRITICAL | /usr/bin/awk -F\; '{printf $2"-"$3 " "}'` UP=`/usr/bin/grep HOST $LOGFILE | /usr/bin/grep UP | wc -l` DOWN=`/usr/bin/grep HOST $LOGFILE | /usr/bin/grep CRITICAL | wc -l ` SUP=`/usr/bin/grep SERVICE $LOGFILE | /usr/bin/grep OK | wc -l` SDOWN=`/usr/bin/grep SERVICE $LOGFILE | /usr/bin/grep CRITICAL | wc -l ` echo "Nag stat H:$DOWN/$UP S:$SDOWN/$SUP ***Hosts: $HOST ***Service: $SERVICE" $1 | mailx -s nagstats jlyons30 at yahoo.com Frank Sweetser wrote: On Thu, Mar 20, 2003 at 02:39:44PM -0800, wasson at brawleyonline.com wrote: > I'd like to set up nagios to send a morning 'overall network status' in a > single email/SMS message. I'd like the alert to briefly list broken hosts > and services or send an "Everything is up" message. I can set up a time > period and run a custom command during that time, but I am getting stuck > when I think about what command I actually want this to run. > I didn't find anything in the FAQ or mailing list archives about this, but > if it's been covered, please direct me to it. > Tony Wasson Here's a couple of scripts that I just started using here for just such a purpose. Call nagcechk from cron, editing it to fit your paths. -- Frank Sweetser fs at wpi.edu WPI Network Engineer #!/bin/bash MSG=`mktemp /tmp/nagcheck-$$-XXXXXX` if [ ! -f $MSG -o ! -w $MSG ] ; then exit; fi /usr/lib/nagios/plugins/check_nagios /var/log/nagios/status.log 5 '/usr/sbin/nagios' | sed -e 's/:.*//' > $MSG 2>&1 /usr/local/bin/nagios-summary >> $MSG 2>&1 cat $MSG | mail -s 'Nagios Heartbeat' fs at wpi.edu cat $MSG | /usr/local/bin/qpage -f nagios -p fs rm -f $MSG #!/usr/bin/perl -w use strict; my $logfile = $ARGV[0] || "/var/log/nagios/status.log"; open(STAT, "<$logfile") or die "Can't open logfile $logfile: $!\n"; my $line; my %hst; my %svc; while(){ next if /^#/; $_ =~ s/^\S*\s*//; my @inf = split(/;/); if ($inf[0] eq 'HOST'){ $hst{$inf[2]}++; }elsif ($inf[0] eq 'SERVICE'){ $svc{$inf[3]}++; } } print "Hosts: "; foreach my $key (keys %hst){ print $key, ": ", $hst{$key}, " "; } print "\n"; print "Svcs: "; foreach my $key (keys %svc){ print $key, ": ", $svc{$key}, " "; } print "\n"; --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From securityguy at ikano.com Fri Mar 21 03:17:18 2003 From: securityguy at ikano.com (Robert S. Galloway) Date: Thu, 20 Mar 2003 19:17:18 -0700 Subject: Service Checks Not Executing in a Timely Fashion Message-ID: <005d01c2ef4f$ffc32870$ddd0d0cd@pendleton> Hi Everyone, I've got a strange problem and I have no idea where to go with it. Basically what is happening is that service checks are being scheduled as configured, but at random, some checks are not being executed for up to 5 or 6 minutes past their scheduled time. This is according to the scheduling queue CGI. The information there is consistent with the information that I get in the service details. I've tried to tune the service check scheduling by changing (and even setting to none) the inter-check-delay-method, and the results are still the same. It's not the same services or hosts every time, so I don't see any where to take it there. I have not found any pattern at all to the delay. There are plenty of available resources to execute the checks, so I don't think the server is under powered. The service check timeout is set to 30 seconds, so I don't believe that the checks are being started, otherwise they should be timing out. During the first couple of minutes after restarting the service everything runs normally, but then thing deteriorate from there. Does any one have any thoughts on what I can do to track this down? Here is my setup information. Please let me know if there's anything I've forgotten that would help. The server is a dual proc PIII 700 with 1GB of RAM and a SCSI RAID5 array. It is running RedHat 8.0 with the latest kernel revision. It is Nagios 1.0 with the 1.30 release version of the plugins. There are 200+ hosts and 300+ service checks (both passive and active). Thank you, Robert S. Galloway Chief Network Security Engineer IKANO Communications ...the Internet branding company Official Data Networking Services Provider for the Salt Lake Olympic Winter Games of 2002 securityguy at ikano.com 801-415-8089 ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Fri Mar 21 03:53:59 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Thu, 20 Mar 2003 18:53:59 -0800 Subject: request for APAN config examples In-Reply-To: References: Message-ID: <3E7A7EC7.400@sbcglobal.net> Unless things have changed, APAN uses nagios-statd to check unix disks, not NRPE (I made this exact feature request some time ago, not sure if it is being considered). http://apan.sourceforge.net/doc/plugins.html#disk I'm looking for said examples as well, though. :) Sean Carroll, Jim P [Contractor] wrote: >I'm trying (once again) to take a crack at setting up APAN. However, the >examples seem a little ambiguous. > >Could anyone send me snippets of, say, the following: > >- disk check using check_nt >- disk check using NRPE >- load check using NRPE > >I should be able to figure out the rest from that, with any luck. > >The snippets I'm looking for would relate to both services.cfg and apan.cfg. >If you can remember (or reconstruct) the command to create the rrd files, >those would be helpful, too. > >TIA, > >jc > > >------------------------------------------------------- >This SF.net email is sponsored by: Tablet PC. >Does your code think in ink? You could win a Tablet PC. >Get a free Tablet PC hat just for playing. What are you waiting for? >http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fes at users.sourceforge.net Thu Mar 20 23:46:21 2003 From: fes at users.sourceforge.net (Frank Sweetser) Date: Thu, 20 Mar 2003 17:46:21 -0500 Subject: Network Overview Alert In-Reply-To: <34099.206.169.51.21.1048199984.squirrel@webmail.brawleyonline.com> References: <34099.206.169.51.21.1048199984.squirrel@webmail.brawleyonline.com> Message-ID: <20030320224621.GA28216@erwin.wpi.edu> On Thu, Mar 20, 2003 at 02:39:44PM -0800, wasson at brawleyonline.com wrote: > I'd like to set up nagios to send a morning 'overall network status' in a > single email/SMS message. I'd like the alert to briefly list broken hosts > and services or send an "Everything is up" message. I can set up a time > period and run a custom command during that time, but I am getting stuck > when I think about what command I actually want this to run. > I didn't find anything in the FAQ or mailing list archives about this, but > if it's been covered, please direct me to it. > Tony Wasson Here's a couple of scripts that I just started using here for just such a purpose. Call nagcechk from cron, editing it to fit your paths. -- Frank Sweetser fs at wpi.edu WPI Network Engineer -------------- next part -------------- #!/bin/bash MSG=`mktemp /tmp/nagcheck-$$-XXXXXX` if [ ! -f $MSG -o ! -w $MSG ] ; then exit; fi /usr/lib/nagios/plugins/check_nagios /var/log/nagios/status.log 5 '/usr/sbin/nagios' | sed -e 's/:.*//' > $MSG 2>&1 /usr/local/bin/nagios-summary >> $MSG 2>&1 cat $MSG | mail -s 'Nagios Heartbeat' fs at wpi.edu cat $MSG | /usr/local/bin/qpage -f nagios -p fs rm -f $MSG -------------- next part -------------- #!/usr/bin/perl -w use strict; my $logfile = $ARGV[0] || "/var/log/nagios/status.log"; open(STAT, "<$logfile") or die "Can't open logfile $logfile: $!\n"; my $line; my %hst; my %svc; while(){ next if /^#/; $_ =~ s/^\S*\s*//; my @inf = split(/;/); if ($inf[0] eq 'HOST'){ $hst{$inf[2]}++; }elsif ($inf[0] eq 'SERVICE'){ $svc{$inf[3]}++; } } print "Hosts: "; foreach my $key (keys %hst){ print $key, ": ", $hst{$key}, " "; } print "\n"; print "Svcs: "; foreach my $key (keys %svc){ print $key, ": ", $svc{$key}, " "; } print "\n"; From frankie at etsetb.upc.es Fri Mar 21 08:56:49 2003 From: frankie at etsetb.upc.es (Francesc Guasch) Date: Fri, 21 Mar 2003 08:56:49 +0100 Subject: Monitoring Cisco Routers errors? In-Reply-To: References: Message-ID: <3E7AC5C1.4040308@etsetb.upc.es> Subhendu Ghosh wrote: > On Thu, 20 Mar 2003, Jon Lyons wrote: > > >>Hi, >>Is there a plugin that currently checks for interface errors? CRC, OverRuns, Collisions,etc,etc? > The big question about the above measurements (and traffic) is that they > are only meaningful as rate and not an absolute number - so the plugin > would need to retrieve a couple of values and then determine the rate and > alert on that. > > This leads to caching data and questions about where/how to cache and any I think the pan plugin fits here because it draws graphs with the results. -- frankie ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Kurzer at c-bs.de Fri Mar 21 12:02:40 2003 From: Kurzer at c-bs.de (Matthias Kurzer) Date: Fri, 21 Mar 2003 12:02:40 +0100 Subject: Service Checks Not Executing in a Timely Fashion In-Reply-To: <005d01c2ef4f$ffc32870$ddd0d0cd@pendleton> References: <005d01c2ef4f$ffc32870$ddd0d0cd@pendleton> Message-ID: <3E7AF150.8060600@c-bs.de> Robert S. Galloway wrote: > I've got a strange problem and I have no idea where to go with it. Basically > what is happening is that service checks are being scheduled as configured, > but at random, some checks are not being executed for up to 5 or 6 minutes > past their scheduled time. This is according to the scheduling queue CGI. > The information there is consistent with the information that I get in the > service details. Maybe You have the same problem like I. There are nagios child prozesses, they never stops? -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bosse at klykken.com Fri Mar 21 13:10:14 2003 From: bosse at klykken.com (Bosse Klykken) Date: Fri, 21 Mar 2003 13:10:14 +0100 Subject: NSClient & check_nt & FILEAGE In-Reply-To: <15989.50168.414208.257350@linuxsexi.nasttg> References: <15989.50168.414208.257350@linuxsexi.nasttg> Message-ID: <20030321121014.GF3636@klykken.com> I'm sending this to the nagiosplug mailing list as well, as that's where it really is relevant. On Mon, Mar 17, 2003 at 01:47:52PM +0100, Marko Riedel wrote: > I noticed that check_nt would always reply with "could not parse > arguments" when asked to fetch the FILEAGE statistic. I looked at the > source code and it seems that "FILEAGE" is not implemented. > check_nt (nagios-plugins 1.3.0-alpha1) 1.1.1.1 I have the same problem on some remote locations, using the same version as you, (nagios-plugins 1.3.0-alpha1) 1.1.1.1. The locations where I use check_nt (netsaint-plugins 1.2.9-4) 1.1.2.3, the fileage function works fine. I use it for monitoring updates of virus definition files on Windows servers. .../Bosse -- Bosse Klykken - http://www.klykken.com/~bosse - PGP: 0x570ABB4E We learn from history that we don't learn from history ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Raj.Mudhar at nottingham.ac.uk Fri Mar 21 13:34:26 2003 From: Raj.Mudhar at nottingham.ac.uk (Raj Mudhar) Date: Fri, 21 Mar 2003 12:34:26 +0000 Subject: plugins installed Message-ID: Hi I have installed my first pluging (fping).. In the manual under the Installing Nagios section it says plugins re usually installed in /usr/local/nagios/libexec I have gone to this directory after installing fping and nothing is there so its obviously installed it elswhere. i used the tar.gz file and ran /configure as it stated.. can you tell me whats wrong and if this is a major problem if the plugin is not in this directory.? Raj Mudhar IT Support Assistant Cripps Computing Centre South Information Services Email: Raj.Mudhar at nottingham.ac.uk ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Fri Mar 21 13:55:00 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Fri, 21 Mar 2003 13:55:00 +0100 (CET) Subject: Web-Based config In-Reply-To: <20030321095634.A86218@IPAustralia.Gov.AU> References: <20030321095634.A86218@IPAustralia.Gov.AU> Message-ID: <20030321125500.99777.qmail@web10907.mail.yahoo.com> I agree for the reporting stuff. But for traps (I am using few SNMP traps too) I don't agree, Nagios is not a full-blown SNMP monitoring tool replacement. But I still convinced that a Web-based config is necessary for Nagios. Steve --- Stanley Hopcroft a ?crit?: > Dear Folks, > > 200 hosts && 350 services && don't agree. > > I think there are more important things that the development of Nagios > should focus on such as > > 1. scalability (1000s of hosts) > > 2. trap integration - yes, traps are supported by the same mechanism as > service check results but traps are so fundamental it would be nice (TM) > if they were easier to deal with. > > (As I write I am watching my /bin/sh trap handler blow up _yet_ again .. > > 'Fri Mar 21 09:34:38 Warning: Message queue contained results for > service 'SLB "castor" port reachability trap' on host 'ServerIron'. The > service could not be found!'. > > My fault of course). > > 3. reporting. PHBs don't care about _anything_ that isn't in a > spreadsheet. > > Yours sincerely. > -- > ------------------------------------------------------------------------ > Stanley Hopcroft > ------------------------------------------------------------------------ > > '...No man is an island, entire of itself; every man is a piece of the > continent, a part of the main. If a clod be washed away by the sea, > Europe is the less, as well as if a promontory were, as well as if a > manor of thy friend's or of thine own were. Any man's death diminishes > me, because I am involved in mankind; and therefore never send to know > for whom the bell tolls; it tolls for thee...' > > from Meditation 17, J Donne. > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benl at flowcom.com.au Fri Mar 21 14:40:50 2003 From: benl at flowcom.com.au (Ben Lisle) Date: Sat, 22 Mar 2003 00:40:50 +1100 Subject: Scalability Message-ID: Hi, I'm wanting to get an idea of how well Nagios scales. How many hosts/services do users on this list poll on their networks? What is the maximum amount of hosts you've seen monitored in a production environment? Ben . Please note that my email address has changed. My new address is benl at flowcom.com.au, so please update your contact list. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bpasdar at IGXGlobal.com Fri Mar 21 14:36:41 2003 From: bpasdar at IGXGlobal.com (Babak Pasdar) Date: Fri, 21 Mar 2003 08:36:41 -0500 Subject: check_ntp -> (No output!) References: <1048199275000046b1@imgxs42> Message-ID: <1048253801000054b1@imgxs42> I'll try this one last time. I have gotten no response from anyone on this. Does anyone have any idea why I get a (No output!) when I run check_ntp through Nagios, when it seems to work just fine from the command line. A while back I experienced a similar problem with a newer set of CVS plugins when I got the same problem and was only able to resolve it by replacing the check_ntp with an older version. Details are provided below. As always any help is appreciated. Babak Babak Pasdar wrote: > > I posted the enclosed a few weeks ago, as an FYI. However when moving Nagios to it's permanent box, I am unable to get check_ntp from any version working from in Nagios. They all seem to work fine when run from the command line. I am running a RH 7.3 system and all my other plugins seem to work fine. > > When I run check_ntp via check_by_ssh it also seems to work fine, though this is a bit useless to me. > > Please tell me what I am missing. Any help, any at all is appreciated. > > Thanks > > Babak > > > --------------------- Post from 02/18/2003 > > > OK Iam playing musical plugins here. I was having problems getting: > > check_snmp > check_mysql > check_ifstatus > check_ifoperstatus > > from both the plugins: > > nagios-plugins-200211131100 > nagios-plugins-1.3.0-beta2 > > I downloaded the cvs from today's (02/18/2003) tree. All of the above works except the few > hours I spent troubleshooting check_ntp. Now check_ntp works from the command line but for > the life of me it would not work in Nagios. I copied the old check_ntp from the > nagios-plugins-200211131100 and BANG it started working immediately. > > > Output from CVS 02/18/2003 plugin: > > #./check_ntp -H 192.168.1.11 > NTP OK: Offset 0.002215 secs, jitter 16.822 msec, peer is stratum 1 > > Output from nagios log: > > Feb 19 02:12:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;1;(No > output!) > Feb 19 02:13:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;2;(No > output!) > Feb 19 02:14:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;HARD;3;(No > output!) > > hope this helps. > > Babak > > > > > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- Babak Pasdar Founder/CTO IGX Global 389 Main St. Hackensack, NJ 07601 www.igxglobal.com (201) 498-0555 ext. 2205 The electronic message that you have received and any attachments are solely intended for the use of the addressee(s) and may contain information that is confidential. If you receive this email in error, please advise us by responding to NOC at igxglobal.com. You are required to delete the contents and destroy any copies immediately. IGX Global is not liable for the views expressed in this electronic message or for the consequences of any computer viruses that may be unknowingly transmitted within this message. This electronic message is also subject to standard copyright/ownership laws. It is not intended to be reproduced, or re-transmitted without the consent of the originator. www.igxglobal.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Fri Mar 21 14:37:36 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 21 Mar 2003 08:37:36 -0500 Subject: [Nagiosplug-help] Re: NSClient & check_nt & FILEAGE In-Reply-To: <20030321121014.GF3636@klykken.com> References: <15989.50168.414208.257350@linuxsexi.nasttg> <20030321121014.GF3636@klykken.com> Message-ID: <1048253856.8741.5.camel@localhost.localdomain> On Fri, 2003-03-21 at 07:10, Bosse Klykken wrote: > I'm sending this to the nagiosplug mailing list as well, as that's > where it really is relevant. > > On Mon, Mar 17, 2003 at 01:47:52PM +0100, Marko Riedel wrote: > > I noticed that check_nt would always reply with "could not parse > > arguments" when asked to fetch the FILEAGE statistic. I looked at the > > source code and it seems that "FILEAGE" is not implemented. > > > check_nt (nagios-plugins 1.3.0-alpha1) 1.1.1.1 > > I have the same problem on some remote locations, using the same > version as you, (nagios-plugins 1.3.0-alpha1) 1.1.1.1. The locations > where I use check_nt (netsaint-plugins 1.2.9-4) 1.1.2.3, the fileage > function works fine. > > I use it for monitoring updates of virus definition files on Windows > servers. Could you guys try the release, rather than a 6-month old alpha? -- Karl ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Fri Mar 21 14:40:21 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Fri, 21 Mar 2003 14:40:21 +0100 (CET) Subject: request for APAN config examples In-Reply-To: References: Message-ID: <20030321134021.70117.qmail@web10906.mail.yahoo.com> I think I can help you : Here is the apan cfg file : #####for NRPE disk usage###### host1;Disk-usage;/usr/local/nagios/rrd/host1_disk-usage.rrd;c|d;c-used:AREA c-free:STACK d-used:AREA d-free:STACK;Disk usage;Bytes;-l 1 -b 1024; #####for NRPE load usage###### host1;Load;/usr/local/nagios/rrd/host1_load-usage.rrd;CPULOAD|MEMUSE;cpuload:AREA memuse:AREA;NT_Load;%;-l 1 -b 1024; ############################################# check_nt and NPRE are the same plugin for apan... The fact that you have 2 AREA type tell Apan to draw 2 graphs. And here is the services.cfg #####Service for NRPE disk usage##### define service { ... service_description Disk-usage ;very important this MUST be the same as defined in apan.cfg check_command apan!nt-disk!150!100 ;WARNING thresolds= 150 MB CRITICAL thresold= 100 MB ... } #####Service for NRPE load usage##### define service { ... service_description Load check_command apan!nt-load ; the WARNING and the CRITICAL thresolds are predefined in apan/plugs/load.sh } ############################################# and finally the command to create the rrd files : #####RRD file for disk-usage###### rrdtool create /usr/local/nagios/rrd/host1_disk-usage.rrd --step 300 DS:c-used:GAUGE:600:0:U DS:c-free:GAUGE:600:0:U DS:d-free:GAUGE:600:0:U DS:d-used:GAUGE:600:0:U RRA:AVERAGE:0.5:1:600 RRA:AVERAGE:0.5:6:700 RRA:AVERAGE:0.5:24:775 RRA:AVERAGE:0.5:288:797 RRA:MAX:0.5:1:600 RRA:MAX:0.5:6:700 RRA:MAX:0.5:24:775 RRA:MAX:0.5:288:797 #####RRD file for load-usage###### rrdtool create /usr/local/nagios/rrd/host1_load-usage.rrd --step 300 DS:cpuload:GAUGE:600:0:U DS:memuse:GAUGE:600:0:U RRA:AVERAGE:0.5:1:600 RRA:AVERAGE:0.5:6:700 RRA:AVERAGE:0.5:24:775 RRA:AVERAGE:0.5:288:797 RRA:MAX:0.5:1:600 RRA:MAX:0.5:6:700 RRA:MAX:0.5:24:775 RRA:MAX:0.5:288:797 ############################################# I hope these lines are what you were searching for. If you have problems don't hesitate... Steve --- "Carroll, Jim P [Contractor]" a ?crit : > I'm trying (once again) to take a crack at setting up APAN. However, the > examples seem a little ambiguous. > > Could anyone send me snippets of, say, the following: > > - disk check using check_nt > - disk check using NRPE > - load check using NRPE > > I should be able to figure out the rest from that, with any luck. > > The snippets I'm looking for would relate to both services.cfg and apan.cfg. > If you can remember (or reconstruct) the command to create the rrd files, > those would be helpful, too. > > TIA, > > jc > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lou at ece.cmu.edu Fri Mar 21 14:51:44 2003 From: lou at ece.cmu.edu (Lou Anschuetz) Date: Fri, 21 Mar 2003 08:51:44 -0500 Subject: Scalability In-Reply-To: References: Message-ID: <688106174.1048236704@beeblebrox.ece.cmu.edu> On our way to a goal of 1100, we are currently at 662 active hosts monitored. Monitoring host is an UltraSparc 5, 360Mhz, so nothing fancy. When you dump in 200 hosts at once (something I recently did), it can take 30-45 minutes to recover, but after that most hosts are still being seen every few minutes. For obvious reasons, the fewer hosts down the better the performance. Overall, we are quite impressed. Still sorting out a few things that require pre-reqs in the Solaris version that are not quite the same as in the Linux versions, but otherwise no major problems. --On Saturday, March 22, 2003 12:40 AM +1100 Ben Lisle wrote: > Hi, > > I'm wanting to get an idea of how well Nagios scales. > > How many hosts/services do users on this list poll on their networks? > What is the maximum amount of hosts you've seen monitored in a production > environment? > > Ben > . > Please note that my email address has changed. My new address is > benl at flowcom.com.au, so please update your contact list. > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk > being sent to /dev/null Lou Anschuetz, lou at ece.cmu.edu Network Manager, ECE Department, CMU 412-512-6052 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 21 14:56:07 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 21 Mar 2003 08:56:07 -0500 (EST) Subject: check_ntp -> (No output!) In-Reply-To: <1048253801000054b1@imgxs42> References: <1048253801000054b1@imgxs42> Message-ID: On Fri, 21 Mar 2003, Babak Pasdar wrote: > > I'll try this one last time. I have gotten no response from anyone on > this. Does anyone have any idea why I get a (No output!) when I run > check_ntp through Nagios, when it seems to work just fine from the > command line. > > A while back I experienced a similar problem with a newer set of CVS > plugins when I got the same problem and was only able to resolve it by > replacing the check_ntp with an older version. Details are provided > below. > > As always any help is appreciated. > > Babak > > Babak Pasdar wrote: > > > > I posted the enclosed a few weeks ago, as an FYI. However when moving > > Nagios to it's permanent box, I am unable to get check_ntp from any > > version working from in Nagios. They all seem to work fine when run > > from the command line. I am running a RH 7.3 system and all my other > > plugins seem to work fine. > > > > When I run check_ntp via check_by_ssh it also seems to work fine, > > though this is a bit useless to me. > > > > Please tell me what I am missing. Any help, any at all is appreciated. > > > > Thanks > > > > Babak > > > > > > --------------------- Post from 02/18/2003 > > > > > > OK Iam playing musical plugins here. I was having problems getting: > > > > check_snmp > > check_mysql > > check_ifstatus > > check_ifoperstatus > > > > from both the plugins: > > > > nagios-plugins-200211131100 > > nagios-plugins-1.3.0-beta2 > > > > I downloaded the cvs from today's (02/18/2003) tree. All of the above works except the few > > hours I spent troubleshooting check_ntp. Now check_ntp works from the command line but for > > the life of me it would not work in Nagios. I copied the old check_ntp from the > > nagios-plugins-200211131100 and BANG it started working immediately. > > > > > > Output from CVS 02/18/2003 plugin: > > > > #./check_ntp -H 192.168.1.11 > > NTP OK: Offset 0.002215 secs, jitter 16.822 msec, peer is stratum 1 > > > > Output from nagios log: > > > > Feb 19 02:12:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;1;(No > > output!) > > Feb 19 02:13:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;2;(No > > output!) > > Feb 19 02:14:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;HARD;3;(No > > output!) > > > > hope this helps. > > > > Babak > > > > > > > > > > > > > > > > Can you run nagios in debug mode and see what is happening? -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Fri Mar 21 15:18:29 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 21 Mar 2003 11:18:29 -0300 Subject: Status map and 3D status map Message-ID: Please, anybody help me ? I'm upgrading the Nagios 1.0b6 to 1.0, but I don't to get install gd library with support to jpeg. Where is jpeg library in machine ? I tried configure with support for jpeg library using the following command ( ./configure --with-jpeg=/usr/local/bin or /usr/lib), but don't work. Look the message that I receive when running the command: **************************************************************************** *************** checking for png_create_read_struct in -lpng... yes checking for freetype-config... no checking for FT_Init_FreeType in -lfreetype... no configure: WARNING: not found - disabling freetype support checking freetype/freetype.h usability... no checking freetype/freetype.h presence... no checking for freetype/freetype.h... no checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ****************************** Thank you for advanced Hugo ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Lane.Williams at jhuapl.edu Fri Mar 21 15:28:20 2003 From: Lane.Williams at jhuapl.edu (Williams, P. Lane) Date: Fri, 21 Mar 2003 09:28:20 -0500 Subject: Web-Based config Message-ID: My two-cents....... Anyone know of any plans for a database driven configuration? That would be the first good step to a GUI based configuration. Would anyone like to create a project on SourceForge to begin the endeavor, maybe speak with Ethan and see what he thinks...I remember something in the past disregarding a database driven configuration because of the programming needed to facilitate the numerous databases. Considering this is an Open-Source app, PostgreSQL and MySQL could be the standard to draw on. I am not a big C programmer....more of a hack, but I am willing to jump in and begin helping the process if more experienced programmers would like to. Once the database is on the back-end, front-end configuration Applications would be a snap to write. by-the-way...I don't mind the text based configuration....but then again I am UNIX administrator. Lane ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Raj.Mudhar at nottingham.ac.uk Fri Mar 21 15:45:24 2003 From: Raj.Mudhar at nottingham.ac.uk (Raj Mudhar) Date: Fri, 21 Mar 2003 14:45:24 +0000 Subject: No libexec directory Message-ID: it says plugins can be installed in your nagios /libexec directory.. this does not exist..only the 5 as explained in the manual exist. can you create a libexec directory or not? or should it be already there. and how do i get the plugins to install into there. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From casperez at cesga.es Fri Mar 21 15:50:09 2003 From: casperez at cesga.es (casperez at cesga.es) Date: Fri, 21 Mar 2003 15:50:09 +0100 (CET) Subject: Plugins Message-ID: <39358.193.144.34.186.1048258209.squirrel@webmail.cesga.es> Hello, Are there any plugin for check if a proceser is run? Thank you ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 20 13:59:47 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 20 Mar 2003 13:59:47 +0100 Subject: check_citrix References: Message-ID: <3E79BB43.333D5C7E@gcc.dhl.com> http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/nagiosplug/nagiosplug/contrib/ m.kauer at corag.de wrote: > > Hello list, > > does anybody know where to get the check_citrix plugin? > I use plugins v1.3.0 from sourceforge but there is no citrix-check > included. I tried to compile the newest CVS tarball > (nagios-plugins-200303201000.tar.gz) but this fails (I have no experience > in using CVS). > > Thanks, > Marcus ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From marco at mkohn.de Fri Mar 21 16:14:39 2003 From: marco at mkohn.de (Marco Kohn) Date: Fri, 21 Mar 2003 16:14:39 +0100 Subject: VPN-Monitoring Message-ID: <1287943882.20030321161439@mkohn.de> Hi, I've a question. Is it possible to monitor a VPN-Connection. Is there anyone, who has this services running ? Bye Marco ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nny at questionsleep.net Fri Mar 21 16:25:28 2003 From: nny at questionsleep.net (nny) Date: Fri, 21 Mar 2003 09:25:28 -0600 Subject: VPN-Monitoring In-Reply-To: <1287943882.20030321161439@mkohn.de> References: <1287943882.20030321161439@mkohn.de> Message-ID: <000601c2efbe$2a645b80$6401a8c0@blister> What is routing for the "end" of the VPN nearest the Nagios box? Cisco box? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Marco Kohn Sent: Friday, March 21, 2003 9:15 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] VPN-Monitoring Hi, I've a question. Is it possible to monitor a VPN-Connection. Is there anyone, who has this services running ? Bye Marco ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 21 00:34:09 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 20 Mar 2003 17:34:09 -0600 Subject: nagios && rrd Message-ID: Not sure if it's an option for you, but if you're going to munge the serviceperf data, why not some combo of Perl/PHP, MySQL and JpGraph? jc > -----Original Message----- > From: Jason Burnett [mailto:jason at cannonfodder.org] > Sent: Thursday, March 20, 2003 4:16 PM > To: nagios-users > Subject: [Nagios-users] nagios && rrd > > > Is anyone else using RRD to process the service-perf data? If so, what > are you using to parse out the $PERFDATA$ & $OUTPUT$ info? We > are working on perl to parse it out and put it in RRD for us, > but if someone has found an easier way to do this please let me know. > > -- > "Our Country won't go on forever, if we stay soft as we are now. > There won't be any AMERICA, because some foreign soldiery will invade > us and take our women and breed a hardier race!" > LT. GEN. LEWIS "CHESTY" PULLER, USMC > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: Tablet PC. Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nny at questionsleep.net Fri Mar 21 16:23:57 2003 From: nny at questionsleep.net (nny) Date: Fri, 21 Mar 2003 09:23:57 -0600 Subject: No libexec directory In-Reply-To: References: Message-ID: <000501c2efbd$f3ccae10$6401a8c0@blister> yes, create the directory if that's where you'd like your plugins to live. I think it's sort of a hacker mentality - if there isn't anything included in that directory in the distribution, and you aren't required to keep it there, why make it.. :) -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Raj Mudhar Sent: Friday, March 21, 2003 8:45 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] No libexec directory it says plugins can be installed in your nagios /libexec directory.. this does not exist..only the 5 as explained in the manual exist. can you create a libexec directory or not? or should it be already there. and how do i get the plugins to install into there. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Fri Mar 21 16:39:12 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Fri, 21 Mar 2003 16:39:12 +0100 Subject: Plugins In-Reply-To: <39358.193.144.34.186.1048258209.squirrel@webmail.cesga.es>; from casperez@cesga.es on Fri, Mar 21, 2003 at 03:50:09PM +0100 References: <39358.193.144.34.186.1048258209.squirrel@webmail.cesga.es> Message-ID: <20030321163912.H1416@hpce.nec.com> On Fri, Mar 21, 2003 at 03:50:09PM +0100, casperez at cesga.es wrote: > Hello, > Are there any plugin for check if a proceser is run? Basically every plugin? I mean, if the processor is dead, practically every check should fail... Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Raj.Mudhar at nottingham.ac.uk Fri Mar 21 16:28:41 2003 From: Raj.Mudhar at nottingham.ac.uk (Raj Mudhar) Date: Fri, 21 Mar 2003 15:28:41 +0000 Subject: No libexec directory created?! Message-ID: Hi Someone has told me that the directory should be created but i can make it if i want. Now should it be created as part of the nagios install or not.. I installed my first pluging (fping) and it said that the plugins should be defaulted to libexec under usr/local/nagios But there is not libexec under this path and my first plugin did not create it so whats going on.. documentation didnt help once at all or the FAQ regarding this ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 21 16:57:05 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 21 Mar 2003 10:57:05 -0500 (EST) Subject: VPN-Monitoring In-Reply-To: <1287943882.20030321161439@mkohn.de> References: <1287943882.20030321161439@mkohn.de> Message-ID: On Fri, 21 Mar 2003, Marco Kohn wrote: > Hi, > > I've a question. Is it possible to monitor a VPN-Connection. Is there > anyone, who has this services running ? > > > Bye Marco > If it is a long-lived VPN connection (i.e. permanent) then it should be treated as another network interface and check_ifoperstatus should able to monitor it. If you want to monitor a VPN-server to see that it is able to set up a VPN connection - that is more complicated. -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 21 17:09:24 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 21 Mar 2003 11:09:24 -0500 (EST) Subject: format changes for check_disk and check_load In-Reply-To: References: Message-ID: On Thu, 20 Mar 2003, David Roberts wrote: > Hi, > I'm having problems using Nagios 1.0 with nrpe (1.8) and the check_disk, > check_load plugins. > > Recently, I upgraded the plugins from: > check_load (nagios-plugins 1.3.0-beta2) 1.4 ----> check_load > (nagios-plugins 1.3.0) 1.6 > > and > check_disk (nagios-plugins 1.3.0-beta2) 1.5 ----> check_disk > (nagios-plugins 1.3.0) 1.7 > > It seems that the output formats have changed slightly causing my Nagios > monitor to give error > "(Return code of 127 is out of bounds - plugin may be missing)" Code 127 - cannot find file or file doesn't have correct permissions. > > For example, > > check_load (1.4) > load average: 0.01, 0.00, 0.00 > > check_load (1.6) > OK - load average: 1.56, 1.41, 1.34 > > check_disk (1.5) > DISK OK - [28117 kB (76%) free on /dev/sda2] > > check_disk (1.7) > Unable to read output: > /bin/df -Pk /dev/hda1 > /dev/hda1 964500 278548 636956 31% > did you recompile check_disk for the host running nrpe? > > However, I can run check_nrpe manually from the Nagios monitor system fine > (at least I get the same output as by running it locally). > > I think the problem is basically that these newer plugins provide an output > that is too large for the Nagios cgi code to allow. Therefore, 1) is there > some patch/config change for Nagios or nrpe to allow processing this output > or 2) a patch to check_disk/load to provide the smaller formatted output? The output is within the limits of Nagios can accept. -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Fri Mar 21 17:08:14 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Fri, 21 Mar 2003 08:08:14 -0800 Subject: Plugins In-Reply-To: <20030321163912.H1416@hpce.nec.com> References: <39358.193.144.34.186.1048258209.squirrel@webmail.cesga.es> <20030321163912.H1416@hpce.nec.com> Message-ID: <20030321160813.GA20471@UnderGrid.net> I'm not certain, and only making an assumption, but I think the original requestor may be referring to a SMP machine processor rather than a UP machine... I'm not quite sure how you could manage this across multiple platforms reliably... I'm cross-posting this over to the Nagios Plugins mailing list as it has more to do with plugins than Nagios core... Jeremy On Fri, Mar 21, 2003 at 04:39:12PM +0100, Rasmus Plewe wrote: > On Fri, Mar 21, 2003 at 03:50:09PM +0100, casperez at cesga.es wrote: > > Hello, > > Are there any plugin for check if a proceser is run? > > Basically every plugin? I mean, if the processor is dead, practically > every check should fail... > > > Rasmus > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Roberto.Balestra at getronics.com Fri Mar 21 17:20:44 2003 From: Roberto.Balestra at getronics.com (Balestra, Roberto) Date: Fri, 21 Mar 2003 17:20:44 +0100 Subject: VPN-Monitoring Message-ID: <7537146F3CB48243B01EEA16DA7110BE227176@excitmi100.europe.unity> I don't do it and I don't know if it works, but I think that you can test the tcp/udp port of vpn protocol that you use,with check_tcp/udp. Or simply make a script that does a login/logout in vpn mode and return if success. Bye Roby > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: venerd? 21 marzo 2003 16.57 > To: Marco Kohn > Cc: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] VPN-Monitoring > > > On Fri, 21 Mar 2003, Marco Kohn wrote: > > > Hi, > > > > I've a question. Is it possible to monitor a > VPN-Connection. Is there > > anyone, who has this services running ? > > > > > > Bye Marco > > > > If it is a long-lived VPN connection (i.e. permanent) then it > should be > treated as another network interface and check_ifoperstatus > should able to > monitor it. > > If you want to monitor a VPN-server to see that it is able to > set up a VPN > connection - that is more complicated. > > > -- > -sg > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ABostick at mydoconline.com Fri Mar 21 17:31:51 2003 From: ABostick at mydoconline.com (ABostick at mydoconline.com) Date: Fri, 21 Mar 2003 11:31:51 -0500 Subject: Bad address error during email notifications Message-ID: Hi, I've been using nagios for 11 months now with great results. I recently migrated my nagios server from an older Dell 1650 to a newer Dell 1650. I used Mandrake 8.2 on both with the same packages. I also compiled with the same options, etc. Basically I tried to mirror the two servers. The new server seems to work great, all the checks are working, web server is fine, etc. Except for notifications. No notifications work. I ran nagios in debug mode and have isolated the problem to utils.c, in function my_system(). This function creates a non blocking pipe, forks a process, opens another pipe in the new process and writes the output back to the parent process or something like that. It's a little confusing to me. :) With the debugging I can see the command sent to the pipe, its a printf "message" | mail -s "subject" user at somewhere type command. I cut and paste the exact command to a shell and the mail goes out and I get notified. However, when nagios tries to send it through the pipe, the stdout shows the message "Bad address" and no mail gets sent. I have tried to duplicate the Bad address message from the command line but have not been able to do it with mail. I have also tried a lot of other things but this Bad address just won't go away! Anyone else seen this or know why? I have the exact config on another box and it works great! I googled for Bad address and nagios and saw someone from last year on the netsaint list had this problem as well but they did not post a resolution. I really am at a loss on this one so any help is would be wonderful! Thanks a million, Aaron Bostick ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Fri Mar 21 17:13:02 2003 From: mpowell at ena.com (Marc Powell) Date: Fri, 21 Mar 2003 10:13:02 -0600 Subject: No libexec directory created?! Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED6F1@mismail.ena.com> Did you install the plugins package? http://nagiosplug.sourceforge.net/ -- Marc > -----Original Message----- > From: Raj Mudhar [mailto:Raj.Mudhar at nottingham.ac.uk] > Sent: Friday, March 21, 2003 9:29 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] No libexec directory created?! > > Hi > > Someone has told me that the directory should be created but i can make it > if i want. > > Now should it be created as part of the nagios install or not.. > > I installed my first pluging (fping) and it said that the plugins should > be defaulted to libexec under usr/local/nagios > > But there is not libexec under this path and my first plugin did not > create it so whats going on.. documentation didnt help once at all or the > FAQ regarding this > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 21 17:52:00 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 21 Mar 2003 10:52:00 -0600 Subject: Scalability Message-ID: We're presently monitoring 142 hosts, 1,925 services. jc > -----Original Message----- > From: Ben Lisle [mailto:benl at flowcom.com.au] > Sent: Friday, March 21, 2003 7:41 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: [Nagios-users] Scalability > > > Hi, > > I'm wanting to get an idea of how well Nagios scales. > > How many hosts/services do users on this list poll on their > networks? What > is the maximum amount of hosts you've seen monitored in a production > environment? > > Ben > . > Please note that my email address has changed. My new address is > benl at flowcom.com.au, so please update your contact list. > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 21 17:19:32 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 21 Mar 2003 11:19:32 -0500 (EST) Subject: plugins installed In-Reply-To: References: Message-ID: On Fri, 21 Mar 2003, Raj Mudhar wrote: > Hi > > I have installed my first pluging (fping).. In the manual under the > Installing Nagios section it says plugins re usually installed in > /usr/local/nagios/libexec > > I have gone to this directory after installing fping and nothing is > there so its obviously installed it elswhere. > > i used the tar.gz file and ran /configure as it stated.. can you tell me > whats wrong and if this is a major problem if the plugin is not in this > directory.? When you say you installed a plugin (fping) - do you mean that you installed the ping package from fping.com? If so - this is not the plugin. The nagios-plugins are available at http://sourceforge.net/projects/nagiosplug When you compile them - all get compiled at the same time - and the install process creates the libexec directory (default destination) and installs the plugins there. -- -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From philc at foundation-it.com Fri Mar 21 17:02:03 2003 From: philc at foundation-it.com (Phil Costelloe) Date: Fri, 21 Mar 2003 16:02:03 -0000 Subject: Service Definitions Message-ID: <4E71CFD68DCB4E49B04AD93E84827EE909E7EA@netfinity-1.foundation-it.local> From: David Gitman [mailto:David at feedroom.com] > Can I not have a host defined twice in the services.cfg file? The host is defined as a host_name and > under a hostgroup_name. A host can have as many services as you want defined in services.cfg ... > Error: Service 'SSH' on host 'hal' has already been defined ... however, each one needs a unique name. Phil ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From myklad at yahoo.com Fri Mar 21 17:18:43 2003 From: myklad at yahoo.com (Michael Ladd) Date: Fri, 21 Mar 2003 08:18:43 -0800 (PST) Subject: statusmap -> broken image Message-ID: <20030321161843.24833.qmail@web11005.mail.yahoo.com> Been working w/ attempting to get the statusmap to display correctly. I think I got the cgi's compiled correctly (ldd shows all libraries found) and the location of the images seems to work (they show up in the status grid). When I go to the Status Map page, the middle displays only as a broken image. When I mouse over the broken image area does give the pop-ups for information. Any assistance is greatly appreciated. __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 21 18:05:26 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 21 Mar 2003 11:05:26 -0600 Subject: Plugins Message-ID: Probably the least intrusive check to validate that the processor is running would be the check_ping plugin. Of course, success would mean that the processor is running, but failure would only mean that there's no network connectivity; the processor could still be quite the happy camper. Does anyone have any suggestions for writing a check_schrodingers_cat plugin? ;) jc > -----Original Message----- > From: casperez at cesga.es [mailto:casperez at cesga.es] > Sent: Friday, March 21, 2003 8:50 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Plugins > > > Hello, > Are there any plugin for check if a proceser is run? > > Thank you > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.mcavoy at megawheels.com Fri Mar 21 18:22:08 2003 From: sean.mcavoy at megawheels.com (Sean McAvoy) Date: 21 Mar 2003 12:22:08 -0500 Subject: VPN-Monitoring In-Reply-To: <1287943882.20030321161439@mkohn.de> References: <1287943882.20030321161439@mkohn.de> Message-ID: <1048267327.7335.3.camel@tech03.toronto.drive-megawheels.net> I use Snapgear Devices (Linux based, using freeswan IPSec), to connect to a Linux box (Freeswan IPSec). To monitor the VPN connections, I check to see if port 23 on the internal interface of the remote vpn is available (it's only possible to connect to it if the vpn is up) here's the command entry I use: define command{ command_name check_ipsec_tunnel command_line $USER1$/check_tcp -H $ARG1$ -p 23 -w 5 -c 10 } hope that helps some. On Fri, 2003-03-21 at 10:14, Marco Kohn wrote: > Hi, > > I've a question. Is it possible to monitor a VPN-Connection. Is there > anyone, who has this services running ? > > > Bye Marco > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From marcioqueiroz at vicom.com.br Fri Mar 21 18:54:58 2003 From: marcioqueiroz at vicom.com.br (Marcio Queiroz) Date: Fri, 21 Mar 2003 14:54:58 -0300 Subject: RES: check_rrd_data.pl Message-ID: <2B5E53529D83E945A7E837BC030CECF107D3D873@ntweb.globocabo.com.br> Jamie, i use this file and the plugin worked. I put then on RRD on the perl directory. <> Marcio Q. Dall Agnol phone : 55-21-3873-5826 Fax : 55-21-3873-5845 marcioqueiroz at vicom.com.br VICOM Net Servi?os de Comunica??o S/A Visite nossas p?ginas: Redes Corporativas: Internet Banda Larga: TV por Assinatura : Institucional: http://www.netservicos.com > ----- Mensagem original ----- > De: Jamie [SMTP:jamie at bclnz.net] > Enviada em: ter?a-feira, 25 de fevereiro de 2003 19:08 > Para: nagios-users at lists.sourceforge.net > Assunto: [Nagios-users] check_rrd_data.pl > > Hi, > > Has anyone actually managed to make check_rrd_data.pl work? > > I've been hacking at it. Unsuccessfully. I tried messing around with the > @INC array to include cricket's RRD::File.pm, and I thought I was getting > there until I got: > > Can't locate object method "new" via package "RRD::File" (perhaps you > forgot > to load "RRD::File"?) at ./check_rrd_data.pl line 95. > > > This is what issue to check_rrd_data.pl: > > ./check_rrd_data.pl > /var/lib/cricket/edge/utilisation/inband.skt/fastethernet0_0.rrd 'return > "Warning\n" if ($value > 10);' 'return \ "Critical\n" if ($value > 100);' > 'printf \ "OK", $value; return 0;' > > This is the code: > > #!/usr/bin/perl -wT > > # check_rrd_data plugin for nagios > # > # usage: > # check_rrd machine_id perlexp_warn perlexp_crit perlexp_default [ds] > # > # Checks data from a RRD file. machine_id is normally an IP address, that > has > # to be mapped to a RRD file, by means of the config file (by default > # /var/spool/nagios/rrd-files, a file with pairs of (machine_id,rrd_file), > # separated by whitespace). It can be a RRD file, too. > # > # The Perl expressions are expressions to be evaluated in the following > cases: > # > # - perlexp_crit. The first one, to check if there is a critical > situation. > If > # it returns other than "", it will be a critical message. > # - perlexp_warn. The second one to be evaluated. If returns other than > "", > a > # warning will be issued to Nagios. > # - perlexp_default. If both of the above return "", it will be evaluated, > and > # wathever returns this expression will be returned by the script. NOTE > that > # this is different from the other two cases, to allow the user issue a > # warning or critical failure even if the other two don't return it. > # > # Use these hosts.cfg entries as examples > # > # command[check_ping]=$USER1$/check_rrd_data.pl $HOSTADDRESS$ \ > # 'return "CHECK_CRICKET_PING: Warning\n" if ($value > 10);' 'return > \ > # "CHECK_CRICKET_PING: Critical\n" if ($value > 100);' 'printf \ > # "PING OK - RTA = %.2fms\n", $value; return 0;' 1 > # > service[machine]=PING;0;24x7;3;5;1;router-admins;240;24x7;1;1;1;;check_pin > g > # > # initial version: 28 Nov 2000 by Esteban Manchado Vel?zquez > # current status: 0.1 > # > # Copyright Notice: GPL > # > > # Doesn't work! Why? > # BEGIN { > # my $runtimedir = substr($0,0,rindex($0,'/')); > # require "$runtimedir/utils.pm"; > # } > > require '/usr/lib/netsaint/plugins/utils.pm'; > > #changed by Jamie > use lib '/usr/share/cricket/lib/RRD/File'; > > #use RRD::File; > # use strict; # RRD:File and utils.pm don't like this > > my $configfilepath = "/usr/lib/netsaint/plugins/rrd-files"; # Change > if > needed > my %hostfile; # For storing > config > my $rrdfile; # RRD file to open > > $ENV{'PATH'} = "/bin:/usr/bin"; > $ENV{'ENV'} = ""; > > if (scalar @ARGV != 4 && scalar @ARGV != 5) {print STDERR join "' '", > @ARGV, > "\n"; > my $foo = 'check_rrd_data'; > print STDERR $foo, " > []\n\n"; > print STDERR " is an expression that gets evaluated > with > \$_ at the current\n"; > print STDERR "value of the data source. If it returns something > other than \"\", there\n"; > print STDERR "will be a warning or a critical failure. Else, the > expression\n"; > print STDERR " will be evaluated\n"; > exit; > } > > # Check configuration file > open F, $configfilepath or do {print "Can't open config file > $configfilepath\n"; > return $ERRORS{'UNKNOWN'}; > }; > while () {next unless /(.+)\s+(.+)/; > $hostfile{$1} = $2; > } > close F; > > # Default > my $ds = defined $ARGV[4]?$ARGV[4]:0; > # print "\$ds = " . $ds . ":"; > # print "\$ARGV[4] = " . $ARGV[4] . ":"; > $ds =~ s/\$//g; # Sometimes Nagios gives 1$ as the last parameter > > # Guess which RRD file have to be opened > $rrdfile = $ARGV[0] if (-r $ARGV[0]); # First the parameter > $rrdfile = $hostfile{$ARGV[0]} unless $rrdfile; # Second, the config file > # print "$ARGV[0]:"; > > if (! $rrdfile) { > print "Can't open data file for $ARGV[0]\n"; # Aaaargh! > return $ERRORS{'UNKNOWN'}; # Unknown > } > > # print "Opening file $rrdfile:"; > my $rrd = new RRD::File ( -file => $rrdfile ); > $rrd->open(); > if (! $rrd->loadHeader()) { > print "Couldn't read header from $rrdfile\n"; > exit $ERRORS{'UNKNOWN'}; # Unknown > } > my $value = $rrd->getDSCurrentValue($ds); > $rrd->close(); > > # Perl expressions to evaluate > my ($perl_exp_warn, $perl_exp_crit, $perl_exp_default) = > ($ARGV[1], $ARGV[2], $ARGV[3]); > my $result; # Result of the expressions (will be printed) > my @data; # Special data reserved for the expressions, to pass data > > # First check for critical errors > $perl_exp_crit =~ /(.*)/; > $perl_exp_crit = $1; > $result = eval $perl_exp_crit; > if ($result) { > print $result; > exit 2; # Critical > } > > # Check for warnings > $perl_exp_warn =~ /(.*)/; > $perl_exp_warn = $1; > $result = eval $perl_exp_warn; > if ($result) { > print $result; > exit 1; # Warning > } > > $perl_exp_default =~ /(.*)/; > $perl_exp_default = $1; > eval $perl_exp_default; # Normally returns 0 (OK) > > Jamie > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- A non-text attachment was scrubbed... Name: RRDs.zip Type: application/octet-stream Size: 5701 bytes Desc: not available URL: From jhardeman at localweb.com Fri Mar 21 19:52:35 2003 From: jhardeman at localweb.com (Joseph Hardeman) Date: Fri, 21 Mar 2003 13:52:35 -0500 Subject: Sending E-Mail Notification Message-ID: <200303211352350841.061050F1@mx2.localweb.com> Greetings, We will be starting to using Nagios as our primary monitor software, I have almost everything configured I need to monitor not only all the servers, but also all of the different configurations. The only thing I do not know how to setup is to limit the e-mail notifications for a service status check to only 3 emails being sent out. Now we only want 2 emails sent for a CRITICAL STATE after the proper time limit and even if the check is down for a full day. The next email we want to receive is the Green notice email, that the service has returned to a proper state. Any ideas and any assistance on this would be appreciated. I have looked through the archives but have not found anything specific to what I am looking for. Thanks. Joseph Hardeman Joseph Hardeman Hosting Administrator 1-800-525-0031 x114 919-544-4101 x114 jhardeman at localweb.com ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Fri Mar 21 19:46:24 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Fri, 21 Mar 2003 12:46:24 -0600 Subject: Web-Based config Message-ID: <352B04312822444A962714393AED8A4D026830@ADAEVS01.int.chickasaw.net> Well, I tried to avoid getting involved, but... On Thu, Mar 20, 2003 at 03:30:30PM -0600, jason at cannonfodder.org wrote: > just my .02 worth. > > I am going to have to agree. We have ~300 hosts and ~1500 services and > the initial setup of nagios was a major project. >You call writing a ~20 line shell script plus some manual tuning a "major project"? >> Add to that the fact >> that I would have to "dumb down" the documentation even more and give >> our support staff access I dont want them to have in order for them to >> be able to setup new hosts and services. >[ ] You know what you can do with Unix file/directory permissions and > nagios' ability to use more than one config file. >I admit that, if you have two or three hosts/services, a web based point-and-click based >config option is much easier. But with a certain level of depth and experience, you >should be much faster using an editor modifying config files (or scripting them, for >larger changes) than filling in any number of web forms with combinations of clicking and >typing. Of course, that is if you have shell access. But Im not going to allow a support staff that doesn't even know what shell access is have it. They can follow a point and click proceedure better than a procedure explaining to them to edit five different config files. And before you ask if the support staff is setting this up... Of course they don't but they mgiht be asked to do simple procedures when the real admins are busy with other tasks >I'm arrogant enough to add that if you're not experienced enough to see the point and >agree, I wouldn't think you're experienced enough to be trusted to monitor my precious >equipment. Thus again, I don't know about you but I don't have time to monitor much. I get to design the system and impelement procedure, but some kids and phone jockeys get to watch to stuff and notify me... >Don't take this personal, but attitudes like "give me something to click and I don't care >what the config file looks like" are worrying me. Greater power is rarely found than the >one you get by understanding and being able to manipulate config files directly. Who has this attitude? I would think that anyone had this attitude they woudn't be using Nagios, but something like WhatsUp... I figuremost people on this list have put the effort into configuring nagios by hand. I agree that we should understand the config files, That's what docs are for, We should understand how it al works before we mess with anything. But that doesn't mean that a convienent interface for those of us who's time is precious can't make use of it. >I don't really care if there is a (usable) web interface. I agree that it should be tied >to Nagios at least as closely as the plugins. But the minute I discover that the config >files are messed up because of them, you will hear me scream. Wherever on this earth you >may happen to be. Who said anything about the config files beeing messed up? What files? I would presume that using a DB for the config would be a better implementation. Sure, you would want a utiliies to build/rebuild a DB from file(s) or dump to file(s). But I don't see any reall argument for a web interface to talk to files over a DB implementation (But I havev't really heard any arguments so I could be persuaded I suppose). I don't see as much harm from having a built in option of using a web interface for configuration, as I see a great feature to allow a much broader range of users and uses. jrmy >Rasmus ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Fri Mar 21 20:41:59 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Fri, 21 Mar 2003 11:41:59 -0800 Subject: check_ntp -> (No output!) In-Reply-To: <1048253801000054b1@imgxs42> References: <1048253801000054b1@imgxs42> Message-ID: <2E40F290-5BD5-11D7-BDAD-000A95775192@med.ge.com> When you run the plugin from the command line, are you doing it as the user the plugin will actually be executed as (ie, nagios or nobody depending..)? Usually when I have problems like that it is because of something messed up for the user that nagios is actually trying to run the plugin as (like the ld_library_path or something.) The other thing that I have had problems with is the environment variables. You might try replacing the command in your .cfg file with one that is hard coded for the exact command line you want it to run just for a test. No offense if this seems obvious to you... thx, --chd On Friday, March 21, 2003, at 05:36 AM, Babak Pasdar wrote: > > I'll try this one last time. I have gotten no response from anyone on > this. Does anyone have any idea why I get a (No output!) when I run > check_ntp through Nagios, when it seems to work just fine from the > command line. > > A while back I experienced a similar problem with a newer set of CVS > plugins when I got the same problem and was only able to resolve it by > replacing the check_ntp with an older version. Details are provided > below. > > As always any help is appreciated. > > Babak ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bpasdar at IGXGlobal.com Fri Mar 21 20:43:51 2003 From: bpasdar at IGXGlobal.com (Babak Pasdar) Date: Fri, 21 Mar 2003 14:43:51 -0500 Subject: check_ntp -> (No output!) References: Message-ID: <1048275831000066d8@imgxs42> Can anyone offer me pointers on how to setup Nagios Debug? Babak Subhendu Ghosh wrote: > On Fri, 21 Mar 2003, Babak Pasdar wrote: > > > > > I'll try this one last time. I have gotten no response from anyone on > > this. Does anyone have any idea why I get a (No output!) when I run > > check_ntp through Nagios, when it seems to work just fine from the > > command line. > > > > A while back I experienced a similar problem with a newer set of CVS > > plugins when I got the same problem and was only able to resolve it by > > replacing the check_ntp with an older version. Details are provided > > below. > > > > As always any help is appreciated. > > > > Babak > > > > Babak Pasdar wrote: > > > > > > I posted the enclosed a few weeks ago, as an FYI. However when moving > > > Nagios to it's permanent box, I am unable to get check_ntp from any > > > version working from in Nagios. They all seem to work fine when run > > > from the command line. I am running a RH 7.3 system and all my other > > > plugins seem to work fine. > > > > > > When I run check_ntp via check_by_ssh it also seems to work fine, > > > though this is a bit useless to me. > > > > > > Please tell me what I am missing. Any help, any at all is appreciated. > > > > > > Thanks > > > > > > Babak > > > > > > > > > --------------------- Post from 02/18/2003 > > > > > > > > > OK Iam playing musical plugins here. I was having problems getting: > > > > > > check_snmp > > > check_mysql > > > check_ifstatus > > > check_ifoperstatus > > > > > > from both the plugins: > > > > > > nagios-plugins-200211131100 > > > nagios-plugins-1.3.0-beta2 > > > > > > I downloaded the cvs from today's (02/18/2003) tree. All of the above works except the few > > > hours I spent troubleshooting check_ntp. Now check_ntp works from the command line but for > > > the life of me it would not work in Nagios. I copied the old check_ntp from the > > > nagios-plugins-200211131100 and BANG it started working immediately. > > > > > > > > > Output from CVS 02/18/2003 plugin: > > > > > > #./check_ntp -H 192.168.1.11 > > > NTP OK: Offset 0.002215 secs, jitter 16.822 msec, peer is stratum 1 > > > > > > Output from nagios log: > > > > > > Feb 19 02:12:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;1;(No > > > output!) > > > Feb 19 02:13:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;SOFT;2;(No > > > output!) > > > Feb 19 02:14:30 localhost nagios: SERVICE ALERT: Sheeko;NET-ntp;CRITICAL;HARD;3;(No > > > output!) > > > > > > hope this helps. > > > > > > Babak > > > > > > > > > > > > > > > > > > > > > > > > > > > Can you run nagios in debug mode and see what is happening? > > -- > > -- Babak Pasdar Founder/CTO IGX Global 389 Main St. Hackensack, NJ 07601 www.igxglobal.com (201) 498-0555 ext. 2205 The electronic message that you have received and any attachments are solely intended for the use of the addressee(s) and may contain information that is confidential. If you receive this email in error, please advise us by responding to NOC at igxglobal.com. You are required to delete the contents and destroy any copies immediately. IGX Global is not liable for the views expressed in this electronic message or for the consequences of any computer viruses that may be unknowingly transmitted within this message. This electronic message is also subject to standard copyright/ownership laws. It is not intended to be reproduced, or re-transmitted without the consent of the originator. www.igxglobal.com ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 19 19:22:39 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 19 Mar 2003 13:22:39 -0500 (EST) Subject: Monitoring Cisco Routers In-Reply-To: References: Message-ID: You can download the tar balls from your local CPAN mirror http://www.perl.com/CPAN/modules/by-authors/id/D/DT/DTOWN/ The pre-req are: Crypt::DES Digest::MD5 Digest::SHA1 Digest::HMAC These can also be found on CPAN /CPAN/modules/by-category/14_Security_and_Encryption/Crypt /CPAN/modules/by-category/14_Security_and_Encryption/Digest -sg On Wed, 19 Mar 2003, Hugo Rebello wrote: > My Nagios machine doesn't has access to internet. > Can I install "Net::SNMP" of another way ? > > Thanks, > Hugo > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Subhendu > Ghosh > Sent: quarta-feira, 19 de mar?o de 2003 10:15 > To: David Adams; nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Monitoring Cisco Routers > > > > Yes - missing a perl module... > > The correct one is Net::SNMP not SNMP > > perl -MCPAN -e'install Net::SNMP' > > There are some pre-req, but the install process should walk you through > those.. > > -sg > > On Wed, 19 Mar 2003, Tomas Hautala wrote: > > > Looks like you are missing a perl module. > > Try the folowing. > > > > perl -MCPAN -e "install SNMP" > > > > hope this helps. > > > > > > > > ---------------------------------- > > Tomas Hautala > > University of V?xj?, It-department > > Phone:+46 (0)470 - 708515 > > Cell:+46 (0)708 - 901066 > > Mail:tomas.hautala at adm.vxu.se > > > > > > > > David Adams wrote: > > > Hi Everyone, > > > > > > Thanks for all the help so far. I am trying to run check_ifstatus and > > > i'm getting the following error > > > > > > # ./check_ifstatus > > > Can't locate Net/SNMP.pm in @INC (@INC contains: > > > /usr/local/nagios/libexec /usr/libdata/perl5/i386-openbsd/5.6.1 > > > /usr/local/libdata/perl5/i386-openbsd/5.6.1 /usr/libdata/perl5 > > > /usr/local/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd > > > /usr/libdata/perl5/site_perl/i386-openbsd > > > /usr/local/libdata/perl5/site_perl /usr/libdata/perl5/site_perl > > > /usr/local/lib/perl5/site_perl .) at ./check_ifstatus line 35. > > > BEGIN failed--compilation aborted at ./check_ifstatus line 35. > > > > > > I installed net-snmp 5.0.8 *after *i installed nagios, could this be the > > > problem? I also had trouble installing net-snmp on openbsd3.0 and had to > > > use options to exclude some of the MIB's. > > > > > > Has anyone else using openbsd run in to these problems? > > > > > > thanks > > > > > > Dave > > > > > > -----Original Message----- > > > *From:* Jon Lyons [mailto:jlyons30 at yahoo.com] > > > *Sent:* 18 March 2003 15:39 > > > *To:* David Adams; nagios-users at lists.sourceforge.net > > > *Subject:* Re: [Nagios-users] Monitoring Cisco Routers > > > > > > Try the plugin check_ifstatus, work well for detecting link status. > > > > > > */David Adams /* wrote: > > > > > > Greetings all, > > > > > > Is there a way to monitor link states, interface states, > > > processor load etc on Cisco routers? I'm assuming this would > > > have to be done using check_snmp. > > > If that's how it's done, does anyone have any MIB's or link to a > > > resource that could get me started? Of course, there is always > > > the jackpot, has anyone made any plugins for Cisco kit ;-) > > > > > > Thanks > > > > > > Dave > > > > > > > > > ------------------------------------------------------------------------ > > > Do you Yahoo!? > > > Yahoo! Platinum > > > > l> > > > - Watch CBS' NCAA March Madness, live on your desktop > > > > l>! > > > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > -- > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Wed Mar 19 16:00:43 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Wed, 19 Mar 2003 10:00:43 -0500 (EST) Subject: Web-Based config In-Reply-To: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> References: <001001c2ee21$d7278ca0$0200000a@digitalmarauder.com> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- - ------------------------------------------------------------- On 19-Mar-2003, Jeff Rodriguez wrote message "[Nagios-users] Web-Based config" - ------------------------------------------------------------- > Does anyone know if there is a web-based configuration tool for Nagios? I > hope there is otherwise I need to make one ;) > > Thanks, > > Jeff First, don't send html mail to a mailing list. There is a tool called nagat that can be made to work. It has a large bug, but once you fix that you're good to go. The fix is in the nagat forums on sourceforge. Oh, and the import must be done one step at a time, don't select multiple items to import. Import one item, go back, import the next, etc... - -- Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPniGGVPEkLgodAWVAQEZfgQAuIXI3uI1iHcegTK+sRld1Ble108YYI5s jlp9hQRlbveVI35iu7tzqZHP04WNokiePWfrpWMSY1phXvnzZ0nUmm0sNRKIJZxb 9s0nQwNb9ZRVy7CgAGFkKybG9YtfCJnQislKX28U37hwksJWxIvzysUIQHjJyQzW hK15MZb+mZM= =3aPW -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pauls at globaliqx.com Fri Mar 21 22:26:18 2003 From: pauls at globaliqx.com (Paul Slinski) Date: Fri, 21 Mar 2003 16:26:18 -0500 Subject: CGI authentication problems Message-ID: <20030321162618.157eaef8.pauls@globaliqx.com> When I log in, my username/password is accepted by Apache's process but Nagios says 'Logged in as ?' and thus I cannot do a whole heck of a lot. I've configured the system to use my username in the htpassword/contacts.cfg file. They match. This is Apache 1.3.27 and Nagios 1.0 Does anyone have any suggestions? TIA -- Paul Slinski System Administrator Global IQX http://www.globaliqx.com/ pauls at globaliqx.com [ The information transmitted is intended only for the addressee ] [ and may contain confidential, proprietary and/or privileged ] [ material. Any unauthorized review, distribution or other use ] [ of or the taking of any action in reliance upon this information ] [ is prohibited. If you received this in error, please contact the ] [ sender and delete or destroy this message and any copies. ] ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 21 22:45:52 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 21 Mar 2003 15:45:52 -0600 Subject: Sending E-Mail Notification Message-ID: Check out the documentation on Escalations. jc > -----Original Message----- > From: Joseph Hardeman [mailto:jhardeman at localweb.com] > Sent: Friday, March 21, 2003 12:53 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Sending E-Mail Notification > > > Greetings, > > We will be starting to using Nagios as our primary monitor > software, I have almost everything configured I need to > monitor not only all the servers, but also all of the > different configurations. > > The only thing I do not know how to setup is to limit the > e-mail notifications for a service status check to only 3 > emails being sent out. Now we only want 2 emails sent for a > CRITICAL STATE after the proper time limit and even if the > check is down for a full day. The next email we want to > receive is the Green notice email, that the service has > returned to a proper state. > > Any ideas and any assistance on this would be appreciated. I > have looked through the archives but have not found anything > specific to what I am looking for. > > Thanks. > > Joseph Hardeman > Joseph Hardeman > Hosting Administrator > 1-800-525-0031 x114 > 919-544-4101 x114 > jhardeman at localweb.com > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pauls at globaliqx.com Fri Mar 21 22:54:41 2003 From: pauls at globaliqx.com (Paul Slinski) Date: Fri, 21 Mar 2003 16:54:41 -0500 Subject: CGI authentication problems In-Reply-To: <821162740752.20030321224327@bauchi.de> References: <20030321162618.157eaef8.pauls@globaliqx.com> <821162740752.20030321224327@bauchi.de> Message-ID: <20030321165441.643da11e.pauls@globaliqx.com> Right, copying my .htaccess to /sbin fixed it. The docs only state that it should be in /share...fixed now though. Thanks. On a side note, I subscribed using a different email address but I'm still able to post. Odd. Thanks! On Fri, 21 Mar 2003 22:43:27+0100 bauchi opened up to us and said: > PS> When I log in, my username/password is accepted by Apache's > PS> process but Nagios says 'Logged in as ?' and thus I cannot do a > PS> whole heck of a lot. I've configured the system to use my username > PS> in the htpassword/contacts.cfg file. They match. > PS> This is Apache 1.3.27 and Nagios 1.0 > PS> Does anyone have any suggestions? > PS> TIA > > i've had the same probleme sometime ago > > the problem was, that to access to the cgi-bin directory no > authentication was needed... > > we have nagios installed at /usr/local/nagios/ > the webroot is under share/ and the scripts are at sbin/ .. > > you can protect the /usr/local/nagios/ directory by configuring > it something like this: > > > AuthName "Nagios... please introduce yourself" > AuthType Basic > ... your favourite auth type (we use ldap) > require valid-user > ... other options to be configured > > > or you also protect the sbin/ directory itself, but then you might > have to login twice, once for the normal html frameset and the nav bar > and a second time for the scripts ... > > btw.. a standart rftm/read_your_webserver_logfile problem ;-) > > hope that helps ;) > -- Paul Slinski System Administrator Global IQX http://www.globaliqx.com/ pauls at globaliqx.com [ The information transmitted is intended only for the addressee ] [ and may contain confidential, proprietary and/or privileged ] [ material. Any unauthorized review, distribution or other use ] [ of or the taking of any action in reliance upon this information ] [ is prohibited. If you received this in error, please contact the ] [ sender and delete or destroy this message and any copies. ] ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Wed Mar 19 14:47:34 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Wed, 19 Mar 2003 08:47:34 -0500 Subject: nrpe not working References: <9290BC9741D67F43BDAAC84144FF870DB69230@intecserver007.intec.co.za> Message-ID: <3E7874F6.C8AB081A@algonquincollege.com> Hi, I could give you an answer. Depending on you OS, in Solaris, no -H but $HOSTADDRESS$ that's how it's passing the argument; while in Aix, -H is must. I'm not sure in Linux how it goes. Of course, it's better put -H in all Unix platform for consistence, that's why I made a mistake in the beginning. Hope it helps. Emily Paul Clayton wrote: > Guys, > > this is my check_nrpe command in checkcommands.cfg and it works > > # 'check_nrpe' command definition > define command{ > command_name check_nrpe > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -p 5666 -c > $ARG1$ -to 60 > } > > I disagree with Jim, as the -H is required, otherwise how does check-nrpe > know where to go. > > -----Original Message----- > From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] > Sent: Wednesday, March 19, 2003 2:16 AM > To: 'emily zhou' > Cc: Nagios List > Subject: RE: [Nagios-users] nrpe not working > > In checkcommands.cfg, you're passing a "-H" switch to check_nrpe. However, > check_nrpe doesn't use the -H switch. > > Remove that and you should be fine. > > jc > > > -----Original Message----- > > From: emily zhou [mailto:Emily.Zhou at algonquincollege.com] > > Sent: Tuesday, March 18, 2003 4:46 PM > > To: Carroll, Jim P [Contractor] > > Cc: 'Jeff McKeon'; Nagios List > > Subject: Re: [Nagios-users] nrpe not working > > > > > > Hi JC, > > I guess you have experience with NRPE, could you give me some clue? > > I use command line working fine: (Both Server and Client > > are Solaris 8) > > ~libexec/check_nrpe -c check_disk1 > > DISK OK - [2724125 kB (52%) free on /dev/dsk/c0t3d0s7] > > > > However, when I put in the nagios, it's not working, the > > status information is : > > Incorrect command line arguments supplied, my config file this: > > > > in checkcommands.cfg: > > # 'check_nrpe' command definition > > define command{ > > command_name check_nrpe > > command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ > > } > > > > In services.cfg: > > define service{ > > use generic-service > > host_name netsrv > > service_description File System / Check > > is_volatile 0 > > check_period 24x7 > > max_check_attempts 3 > > normal_check_interval 5 > > retry_check_interval 1 > > contact_groups unix-admins > > notification_interval 120 > > notification_period 24x7 > > notification_options c,r > > check_command check_nrpe!check_disk1 > > name remotefstemp > > } > > > > In remote server's nrpe.cfg, the check_disk1 is defined, no > > doubt about that, as > > the command line is working. > > Any help would be appreciated. > > Thanks, > > Emily > > > > "Carroll, Jim P [Contractor]" wrote: > > > > > Try telnetting to port 5666 on the target host; see if you > > get a connection. > > > > > > Try installed check_nrpe on the target host and doing this command: > > > > > > ./check_nrpe localhost -c check_disk1 > > > > > > Let us know how that goes. > > > > > > jc > > > > > > > -----Original Message----- > > > > From: Jeff McKeon [mailto:jsm at inpro.net] > > > > Sent: Monday, November 25, 2002 2:32 PM > > > > To: Nagios List > > > > Subject: [Nagios-users] nrpe not working > > > > > > > > > > > > Hey guys/gals, > > > > > > > > Needed to set up linux disk monitoring of a remote host. > > downloaded > > > > nrpe (as suggested by mailing list) and installed the > > daemon on the > > > > remote host according to the directions. Also copied the > > check_disk > > > > plugin to that remote server. > > > > > > > > installed on the nagios host server and coped the > > check_nrpe to the > > > > /usr/local/nagios/libexec dir. > > > > > > > > confirmed that a check_disk command issued at the command > > prompt will > > > > work on the remote host. So at least I know that works... > > > > > > > > Left the nrpe.cfg file as is, placed it in the /etc/ dir. > > > > > > > > below is the nrpe xinetd file I've modified. > > > > > > > > Problem:::: > > > > > > > > If on the nagios host machine I issue: > > > > > > > > [jsm at rh80-jsm jsm]$ cd /usr/local/nagios/libexec/ > > > > [jsm at rh80-jsm libexec]$ ./check_nrpe 10.32.1.12 -c check_disk1 > > > > CHECK_NRPE: Error receiving data from host. > > > > [jsm at rh80-jsm libexec]$ > > > > > > > > I get the error shown. > > > > > > > > If I look on the remote host in the var/log/messages file I get: > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > Any suggestions on what I'm doing wrong? > > > > > > > > # default: on > > > > # description: NRPE > > > > service nrpe > > > > { > > > > flags = REUSE > > > > socket_type = stream > > > > wait = no > > > > user = nagios > > > > server = /usr/local/nagios/libexec/nrpe > > > > server_args = -i /etc/nrpe.cfg > > > > log_on_failure += USERID > > > > disable = no > > > > only_from = 127.0.0.1 10.16.2.101 > > > > } > > > > > > > > > > > > > > > > Nov 25 20:12:37 db02tc07927 xinetd[2777]: execv( > > > > /usr/local/nagios/libexec ) failed: Permission denied (errno = 13) > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > > handheld. Power & Color in a compact size! > > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > > _______________________________________________ > > > > Nagios-users mailing list > > > > Nagios-users at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > > > ------------------------------------------------------- > > > This SF.net email is sponsored by: Get the new Palm Tungsten T > > > handheld. Power & Color in a compact size! > > > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en > > > _______________________________________________ > > > Nagios-users mailing list > > > Nagios-users at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Does your code think in ink? > > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > > What are you waiting for? > > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Does your code think in ink? > You could win a Tablet PC. Get a free Tablet PC hat just for playing. > What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > ******************************************************************************************* > > > This e-mail and any attachments are confidential and may also be privileged > and/or copyright material of Independent Technology Systems Limited > (or its affiliated companies). If you are not the intended or authorised recipient > of this email or have received it in error, please delete it immediately and > notify the sender by e-mail. In such a case reading, reproducing, printing or > further dissemination of this e-mail is strictly prohibited and may be unlawful. > > Independent Technology Systems Limited does not represent or warrant that > an attachment hereto is free from computer viruses or other defects. > > The opinions expressed in this e-mail and any of the attachments may > be those of the author and are not necessarily those of Independent > Technology Systems Limited. > ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Fri Mar 21 22:43:27 2003 From: lists at bauchi.de (bauchi) Date: Fri, 21 Mar 2003 22:43:27 +0100 Subject: CGI authentication problems In-Reply-To: <20030321162618.157eaef8.pauls@globaliqx.com> References: <20030321162618.157eaef8.pauls@globaliqx.com> Message-ID: <821162740752.20030321224327@bauchi.de> PS> When I log in, my username/password is accepted by Apache's process but PS> Nagios says 'Logged in as ?' and thus I cannot do a whole heck of a lot. PS> I've configured the system to use my username in the PS> htpassword/contacts.cfg file. They match. PS> This is Apache 1.3.27 and Nagios 1.0 PS> Does anyone have any suggestions? PS> TIA i've had the same probleme sometime ago the problem was, that to access to the cgi-bin directory no authentication was needed... we have nagios installed at /usr/local/nagios/ the webroot is under share/ and the scripts are at sbin/ .. you can protect the /usr/local/nagios/ directory by configuring it something like this: AuthName "Nagios... please introduce yourself" AuthType Basic ... your favourite auth type (we use ldap) require valid-user ... other options to be configured or you also protect the sbin/ directory itself, but then you might have to login twice, once for the normal html frameset and the nav bar and a second time for the scripts ... btw.. a standart rftm/read_your_webserver_logfile problem ;-) hope that helps ;) ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Fri Mar 21 23:32:47 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Fri, 21 Mar 2003 17:32:47 -0500 Subject: Check memory & cpu in Unix References: <1048275831000066d8@imgxs42> Message-ID: <3E7B930E.9EC1429D@algonquincollege.com> Hi all, Has someone found out the plugins about CPU&Mem checking under Unix? Now I only have check_disk, hope more resources can be monitored. Like check_nt supports lots of checks. Thanks, Emily ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Fri Mar 21 23:26:01 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Fri, 21 Mar 2003 17:26:01 -0500 Subject: plugins under AIX References: Message-ID: <3E7B9179.4F00906D@algonquincollege.com> I had same problem before but I fixed it. The problem is the plugin check_disk, you can't simply copy the binary check_disk in Linux to Aix (totally different OS mechanism), instead you have to compile your nagios plugins and getting check_disk for Aix version. Also nrpe you have to compile under Aix which you already mention it. Hope it helps. Emily Pascal RENAUT/GROUPE-ES wrote: > Hi, > I would like to know disk space and other informations on my remote hosts > (servers under AIX) by using the nrpe daemon but I've got some problems > when running check_nrpe on my Linux (Mandrake 9.0) nagios box which get > "Connection refused by host". > > I think there is a problem whith the compile nrpe source under AIX 4.3.3. > > Thanks for your help > > PS : I've seen a message posted on 2002-09-10 on this list from 'jpp' but I > can't gain his adress > > ..................................................................................................................................... > > Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? > de Strasbourg / 67953 Strasbourg Cedex 9 > T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : > pascal.renaut at electricite-strasbourg.fr > > ------------------------------------------------------- > This SF.net email is sponsored by: Tablet PC. > Does your code think in ink? You could win a Tablet PC. > Get a free Tablet PC hat just for playing. What are you waiting for? > http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.knox at sbcglobal.net Sat Mar 22 00:02:44 2003 From: sean.knox at sbcglobal.net (Sean Knox) Date: Fri, 21 Mar 2003 15:02:44 -0800 Subject: Check memory & cpu in Unix In-Reply-To: <3E7B930E.9EC1429D@algonquincollege.com> References: <1048275831000066d8@imgxs42> <3E7B930E.9EC1429D@algonquincollege.com> Message-ID: <3E7B9A14.6010603@sbcglobal.net> You have a few options: 1) nagios-statd will check disk, load, proc, swap, users 2) checks via snmp (and thus check_snmp) 3) custom scripts on each host checked via check_by_ssh I'd opt for #2 or #3 myself. Sean emily zhou wrote: >Hi all, >Has someone found out the plugins about CPU&Mem checking under Unix? Now I only have check_disk, hope more resources can be monitored. Like check_nt supports lots of checks. > >Thanks, >Emily > > > >------------------------------------------------------- >This SF.net email is sponsored by:Crypto Challenge is now open! >Get cracking and register here for some mind boggling fun and >the chance of winning an Apple iPod: >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Sat Mar 22 03:43:09 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 21 Mar 2003 21:43:09 -0500 (EST) Subject: check_ntp -> (No output!) In-Reply-To: <1048275831000066d8@imgxs42> References: <1048275831000066d8@imgxs42> Message-ID: from the nagios source "./configure --help" On Fri, 21 Mar 2003, Babak Pasdar wrote: > > Can anyone offer me pointers on how to setup Nagios Debug? > > > > > > A while back I experienced a similar problem with a newer set of CVS > > > plugins when I got the same problem and was only able to resolve it by > > > replacing the check_ntp with an older version. Details are provided > > > below. > > > Between versions - make sure that your command.cfg syntax is same as the one supported by the latest version. Some plugins only accept POSIX arguments where as older versions might have accepted postional arguments. -sg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From atulsh at hclinsys.com Sat Mar 22 05:32:03 2003 From: atulsh at hclinsys.com (Atul Shrivastava) Date: Sat, 22 Mar 2003 10:02:03 +0530 Subject: Check memory & cpu in Unix References: <1048275831000066d8@imgxs42> <3E7B930E.9EC1429D@algonquincollege.com> <3E7B9A14.6010603@sbcglobal.net> Message-ID: <003c01c2f02b$fd207d20$5f7b0297@atul> Hello Sean, Can you tell me how can I monitor memory and cpu load in linux using SNMP and check_by_ssh Thanks in advance. Regards and have a nice day, Atul Shrivastava Info Structure Services HCL INFOSYSTEMS LTD. E - 4,5,6 Sector XI, Noida - 201301 Tel: 91-120-2526910,2443013 ----- Original Message ----- From: "Sean Knox" To: "emily zhou" Cc: Sent: Saturday, March 22, 2003 4:32 AM Subject: Re: [Nagios-users] Check memory & cpu in Unix > You have a few options: > > 1) nagios-statd will check disk, load, proc, swap, users > 2) checks via snmp (and thus check_snmp) > 3) custom scripts on each host checked via check_by_ssh > > I'd opt for #2 or #3 myself. > > Sean > > > emily zhou wrote: > > >Hi all, > >Has someone found out the plugins about CPU&Mem checking under Unix? Now I only have check_disk, hope more resources can be monitored. Like check_nt supports lots of checks. > > > >Thanks, > >Emily > > > > > > > >------------------------------------------------------- > >This SF.net email is sponsored by:Crypto Challenge is now open! > >Get cracking and register here for some mind boggling fun and > >the chance of winning an Apple iPod: > >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > >_______________________________________________ > >Nagios-users mailing list > >Nagios-users at lists.sourceforge.net > >https://lists.sourceforge.net/lists/listinfo/nagios-users > >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > >::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From jason at cannonfodder.org Sat Mar 22 06:26:53 2003 From: jason at cannonfodder.org (jason at cannonfodder.org) Date: Fri, 21 Mar 2003 23:26:53 -0600 Subject: graphs && restarts In-Reply-To: References: <20030320151007.GA25629@neospire.net> Message-ID: <20030322052653.GA19895@neospire.net> That was it, thanks. on Thu Mar 20 Subhendu Ghosh spoke forth with the blessed manuscript > On Thu, 20 Mar 2003, Jason Burnett wrote: > > I have not been able to find anything in the mailing list archive or the > > documentation, a URL would be greatly appreciated. When I restart > > Nagios, after adding hosts or services, it causes a gap in the trend > > reports. This has become an annoyance to a few customers and I was > > wondering if there was a way to have nagios assume and auto fill-in that > > gap with the state of the host/service before the restart. > > > > > take a look at the state retention options for nagios.cfg ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From cjs at cjs226.com Sat Mar 22 07:06:00 2003 From: cjs at cjs226.com (Clif J. Smith) Date: Sat, 22 Mar 2003 00:06:00 -0600 Subject: Authentication not working on service commands Message-ID: <3E7BFD48.7000206@cjs226.com> The webserver authenticates just fine, including access to Nagios. However I have problem when trying to use Service Commands, I always get "Error: Could not open command file '/tmp/nagios.cmd' for update!" I've set all of the auth settings in cgi.cfg, which function correctly for viewing Nagios, just not for Commands. Of course, if I open up permissions on /tmp/nagios.cmd, it works, just a little too much. I'm running Nagios using an existing Apache install which uses mod_auth_pam to authenticate via NIS accounts. Thanks, Clif -- ____________________________________________________ Clif J. Smith cjs at cjs226.com http://www.cjs226.com A good friend will come bail you out of jail. But a true friend will be sitting next to you saying, "Damn...we *screwed* up. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gert.lindstrom at brevik.nu Sat Mar 22 10:21:34 2003 From: gert.lindstrom at brevik.nu (=?iso-8859-1?Q?Gert_Lindstr=F6m?=) Date: Sat, 22 Mar 2003 10:21:34 +0100 Subject: Status map Message-ID: <001901c2f054$6ed272c0$33c8a8c0@dkkm80j> Hello. I have big prblrms getting the status map work. Running Nagios 1.0 under Redhat 8. I have gd compiled from the start but when i do the make commands it complais that it cant find gd components. Could you guys help me out here, im am no-good at linux :-( so i need a good description on what to check or a link to document that describes this for me. Regards Gert -------------- next part -------------- An HTML attachment was scrubbed... URL: From Brian.Ipsen at andebakken.dk Sat Mar 22 10:52:10 2003 From: Brian.Ipsen at andebakken.dk (Brian Ipsen) Date: Sat, 22 Mar 2003 10:52:10 +0100 Subject: Status map In-Reply-To: <001901c2f054$6ed272c0$33c8a8c0@dkkm80j> References: <001901c2f054$6ed272c0$33c8a8c0@dkkm80j> Message-ID: Hi, > I have big prblrms getting the status map work. > Running Nagios 1.0 under Redhat 8. > I have gd compiled from the start but when i do the make commands > it complais that it cant find gd components. > > Could you guys help me out here, im am no-good at linux :-( so i > need a good description on what to check or a link to document that > describes this for me. Have you considered installing the RPM packages instead if you don't have so much experience with Linux ?? Regards, /Brian ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Sat Mar 22 12:05:24 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Sat, 22 Mar 2003 11:05:24 +0000 Subject: Check_nt and fileage In-Reply-To: References: Message-ID: Dear All, I am desperately trying to get check_nt working with the fileage statistic. I am running Nagios v1.0 and v1.30 of the plugins (latest from Sourceforge) The fileage works, but it returns the date in US format (mm/dd/yy), which is not good for us Brits who need it in UK format (dd/mm/yy). The operating system is in the correct format. Can anybody help ? I can't imagine I would be the only one in this situation. Maybe it could be done with some clever script ? Any help would be much appreciated !!!!!!!! Thanks Matthew Quinney -------------- next part -------------- An HTML attachment was scrubbed... URL: From mpowell at ena.com Sat Mar 22 14:12:18 2003 From: mpowell at ena.com (Marc Powell) Date: Sat, 22 Mar 2003 07:12:18 -0600 Subject: Plugins Message-ID: <5DB017510818EC468B05BD7BD9EACF83032D41CF@mismail.ena.com> Well don't look and maybe it'll be there. -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Karl DeBisschop To: Carroll, Jim P ""[Contractor] CC: nagios-users at lists.sourceforge.net Sent: Sat Mar 22 07:02:14 2003 Subject: RE: [Nagios-users] Plugins On Fri, 2003-03-21 at 12:05, Carroll, Jim P [Contractor] wrote: > Probably the least intrusive check to validate that the processor is running > would be the check_ping plugin. > > Of course, success would mean that the processor is running, but failure > would only mean that there's no network connectivity; the processor could > still be quite the happy camper. > > Does anyone have any suggestions for writing a check_schrodingers_cat > plugin? ;) I may or may not have one I left in a box at the office ;-) -- Karl ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From karl at debisschop.net Sat Mar 22 14:02:14 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 22 Mar 2003 08:02:14 -0500 Subject: Plugins In-Reply-To: References: Message-ID: <1048338134.1512.0.camel@miles.debisschop.net> On Fri, 2003-03-21 at 12:05, Carroll, Jim P [Contractor] wrote: > Probably the least intrusive check to validate that the processor is running > would be the check_ping plugin. > > Of course, success would mean that the processor is running, but failure > would only mean that there's no network connectivity; the processor could > still be quite the happy camper. > > Does anyone have any suggestions for writing a check_schrodingers_cat > plugin? ;) I may or may not have one I left in a box at the office ;-) -- Karl ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jesus_navarro at undominio.net Sat Mar 22 17:47:08 2003 From: jesus_navarro at undominio.net (=?iso-8859-1?q?Jes=FAs=20M=2E?= NAVARRO) Date: Sat, 22 Mar 2003 17:47:08 +0100 Subject: Problems with check_by_ssh plugin In-Reply-To: <5593DA408212D511B0910002A513501F01D2893A@phsexch20.mgh.harvard.edu> References: <5593DA408212D511B0910002A513501F01D2893A@phsexch20.mgh.harvard.edu> Message-ID: <200303221747.09735.jesus_navarro@undominio.net> Hi, Andrew: El Jueves, 20 de Marzo de 2003 20:19, Kaplan, Andrew H. escribi?: > I am trying to monitor several different servers via the check_by_ssh > plug-in. One example is checking the httpd status on the remote server > running Slackware 2.6. To that end, I created a script on the remote server > that invoked the check_http plug-in. The script was tested by manually > running it, and it appeared to work properly. > > The check_by_ssh plug-in was manually started on the nagios server and the > commands that were used are the following: > > /usr/local/nagios/libexec/check_by_ssh -H gray -C > /usr/local/nagios/check_http > /usr/local/nagios/libexec/check_by_ssh -f -H gray -C > /usr/local/nagios/check_http > > The error message that I encountered in both cases was > > Permission denied (public,keyboard-interactive). > Tipically this means you tested the plugin with a different account from the one Nagios it's using. *Your* account manages to log in to the remote computer without password (probably because you're using public/private keypairs), but the one running Nagios (usually either nagios or root, much better the former than the later) don't. > script and plug-in were working properly. The problem here is, the > operation had to be done manually...it did not work automatically. > So, most probably it's what I'm saying (and while you are able to log in without password to host A not even your account is able to do the same on this sencond host). > Any ideas? > Configure ssh properly to log in without password as the nagios user. -- SALUD, Jes?s *** jesus_navarro at undominio.net *** ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hobika at frontiernet.net Sun Mar 23 01:23:20 2003 From: hobika at frontiernet.net (Thomas L. Hobika) Date: Sat, 22 Mar 2003 19:23:20 -0500 Subject: nagios plugin Message-ID: <000701c2f0d2$68ea0200$ca1a2541@proton> I am new to nagios and have a server up and running. One last thing I need to check is HTTPS. I saw a few older programs for netsaint in which you could perform a check_https on a particular port. I was wondering if such a plugin or configuration option exists for current nagios plugins? Any help would be greatly appreciated. -Tom ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From blange at imperialinc.com Fri Mar 21 16:27:45 2003 From: blange at imperialinc.com (Lange, Brian) Date: Fri, 21 Mar 2003 09:27:45 -0600 Subject: VPN-Monitoring Message-ID: <56779BF0ED939548A04FD7384FE66B0BA34F@mail.imperial.com> Im not sure of your configuration/hardware for the VPN's but in my scenario, I use a simple ping command to the ip address of the remote VPN tunnel interface, if the tunnel is down the remote IP address is unreachable and therefore Nagios sends out alerts. My remote VPN's are all IOS VPN's with Cisco 1721 Routers. You cannot check these tunnels via the Tunnel Interface on the Router since it will technically not ever go to a down state on the router itself. Also, I am not sure if there is a better way to do this, but for now it seems to be working for me. -----Original Message----- From: Marco Kohn [mailto:marco at mkohn.de] Sent: Friday, March 21, 2003 9:15 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] VPN-Monitoring Hi, I've a question. Is it possible to monitor a VPN-Connection. Is there anyone, who has this services running ? Bye Marco ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benl at flowcom.com.au Sun Mar 23 03:22:53 2003 From: benl at flowcom.com.au (Ben Lisle) Date: Sun, 23 Mar 2003 13:22:53 +1100 Subject: Nagios process parent Message-ID: Hi, Is it possible to define a parent host for the Nagios process itself? I'm basically trying to get the status map to look like our actual network topology and it currently fits pretty well except for where Nagios is sitting. Ben . Please note that my email address has changed. My new address is benl at flowcom.com.au, so please update your contact list. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benl at flowcom.com.au Sun Mar 23 05:43:35 2003 From: benl at flowcom.com.au (Ben Lisle) Date: Sun, 23 Mar 2003 15:43:35 +1100 Subject: Nagios process parent Message-ID: Nevermind. Worked out a way around it. -----Original Message----- From: Ben Lisle [mailto:benl at flowcom.com.au] Sent: Sunday, 23 March 2003 1:23 PM To: 'nagios-users at lists.sourceforge.net' Subject: [Nagios-users] Nagios process parent Hi, Is it possible to define a parent host for the Nagios process itself? I'm basically trying to get the status map to look like our actual network topology and it currently fits pretty well except for where Nagios is sitting. Ben . Please note that my email address has changed. My new address is benl at flowcom.com.au, so please update your contact list. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null . Please note that my email address has changed. My new address is benl at flowcom.com.au, so please update your contact list. ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Sun Mar 23 11:14:54 2003 From: lists at bauchi.de (bauchi) Date: Sun, 23 Mar 2003 11:14:54 +0100 Subject: nagios plugin In-Reply-To: <000701c2f0d2$68ea0200$ca1a2541@proton> References: <000701c2f0d2$68ea0200$ca1a2541@proton> Message-ID: <1541294227130.20030323111454@bauchi.de> TLH> I am new to nagios and have a server up and running. One last thing I need TLH> to check is HTTPS. I saw a few older programs for netsaint in which you TLH> could perform a check_https on a particular port. I was wondering if such a TLH> plugin or configuration option exists for current nagios plugins? Any help TLH> would be greatly appreciated. TLH> -Tom hi tom, just use the check_http command invoked with a -S parameter ... if it doesn't work, your plugins are not *ssl aware*, compile 'em again with the needed parameters to enable ssl hope that helps basti -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From marco at mkohn.de Sun Mar 23 14:09:49 2003 From: marco at mkohn.de (Marco Kohn) Date: Sun, 23 Mar 2003 14:09:49 +0100 Subject: VPN Monitoring Message-ID: <68330375.20030323140949@mkohn.de> Hi, is it possible to montor varios VPN connections with nagios on a Chckpoint FW ? Has anyone something like this in action or any idea? Thanks Marco ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hobika at frontiernet.net Sun Mar 23 16:17:26 2003 From: hobika at frontiernet.net (Thomas L. Hobika) Date: Sun, 23 Mar 2003 10:17:26 -0500 Subject: nagios plugin References: <000701c2f0d2$68ea0200$ca1a2541@proton> <1541294227130.20030323111454@bauchi.de> Message-ID: <001001c2f14f$5023d070$ca1a2541@proton> Thanks! I followed your advice and reconfigured with the openssl option and specified directory. Once done, I was able to recompile the check_http plugin and it now works. -Tom ----- Original Message ----- From: "bauchi" To: "Thomas L. Hobika" Cc: Sent: Sunday, March 23, 2003 5:14 AM Subject: Re: [Nagios-users] nagios plugin > TLH> I am new to nagios and have a server up and running. One last thing I need > TLH> to check is HTTPS. I saw a few older programs for netsaint in which you > TLH> could perform a check_https on a particular port. I was wondering if such a > TLH> plugin or configuration option exists for current nagios plugins? Any help > TLH> would be greatly appreciated. > > TLH> -Tom > > hi tom, > > just use the check_http command invoked with a -S parameter ... if > it doesn't work, your plugins are not *ssl aware*, compile 'em again > with the needed parameters to enable ssl > > hope that helps > basti > -- > "In god we trust, the rest we monitor" > mailto:lists at bauchi.de > > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From christian at dnet.net.id Mon Mar 24 05:47:32 2003 From: christian at dnet.net.id (Chris) Date: Mon, 24 Mar 2003 11:47:32 +0700 Subject: nrpe and xinetd In-Reply-To: References: Message-ID: <200303241147.32388.christian@dnet.net.id> Greetings, i load nrpe using xinetd in my remote server and it works fine, but after a few days, it replied CHECK_NRPE: Receivd 0 bytes. Are we allowed to connect to the host? i checked the remote server using netstat -pta, and nrpe is still listening, and after i restart xinetd, it works fine again, but the problem persist, now after a few days, it always returns the same error and i have to restart xinetd to make it work again. any ideas why? best regards, christian ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Mon Mar 24 07:47:25 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Mon, 24 Mar 2003 08:47:25 +0200 Subject: Service Checks Not Executing in a Timely Fashion Message-ID: I had a similar problem over the weekend. I've got about 2500 services to check in 60 seconds (I was hoping the system would). I tried tuning the inter_delays, etc, but then things became very slow, only about 10 services firing every second. The default settings seemed ok but then my CPU went crazy. Eventaully I abondoned, converted most of them to passive, and got an external program to check the service and log to nagios. :) fred > -----Original Message----- > From: Matthias Kurzer [mailto:Kurzer at c-bs.de] > Sent: 21 March 2003 01:03 PM > To: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Service Checks Not Executing in a Timely > Fashion > > > Robert S. Galloway wrote: > > I've got a strange problem and I have no idea where to go > with it. Basically > > what is happening is that service checks are being > scheduled as configured, > > but at random, some checks are not being executed for up to > 5 or 6 minutes > > past their scheduled time. This is according to the > scheduling queue CGI. > > The information there is consistent with the information > that I get in the > > service details. > > Maybe You have the same problem like I. There are nagios child > prozesses, they never stops? > > > -- > Matthias Kurzer/IT Systemadministrator > c: Channel Business Service GmbH > Tel.: +49 40 76629-1966 > Mail: kurzer at c-bs.de > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nemir at mindless.com Mon Mar 24 07:55:56 2003 From: nemir at mindless.com (nemir nemiria) Date: Mon, 24 Mar 2003 16:55:56 +1000 Subject: Check memory & cpu in Unix Message-ID: <20030324065556.25558.qmail@mail.com> > You have a few options: > > 1) nagios-statd will check disk, load, proc, swap, users > 2) checks via snmp (and thus check_snmp) > 3) custom scripts on each host checked via check_by_ssh Which options will work without any snmp at all? I am trying hard to steer clear of snmp for I fear the obvious security flaws inherent in that protocol...? > I'd opt for #2 or #3 myself. Does option 1 rely on an underlying snmp layer? If so, then option 3 looks like the choice for me. Does anyone have any example of the sort of scripts that will need to be cobbled together to make a check for disk, load, memory, swap, users, etc? TIA Nemir -- __________________________________________________________ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Mon Mar 24 08:10:06 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Mon, 24 Mar 2003 08:10:06 +0100 Subject: Web-Based config References: Message-ID: <3E7EAF4E.9080307@datavis.se> I', working on a project called Nato. It uses a MySQL-DB for the config and exports it to 'normal' files after changes. Thus no changes are needen in Nagios or other tools that uses the plain files. In Nato there will also be a text-based UI for administration if Nagios objects. Williams, P. Lane wrote: >My two-cents....... > >Anyone know of any plans for a database driven configuration? That would be >the first good step to a GUI based configuration. Would anyone like to >create a project on SourceForge to begin the endeavor, maybe speak with >Ethan and see what he thinks...I remember something in the past disregarding >a database driven configuration because of the programming needed to >facilitate the numerous databases. Considering this is an Open-Source app, >PostgreSQL and MySQL could be the standard to draw on. I am not a big C >programmer....more of a hack, but I am willing to jump in and begin helping >the process if more experienced programmers would like to. Once the >database is on the back-end, front-end configuration Applications would be a >snap to write. > >by-the-way...I don't mind the text based configuration....but then again I >am UNIX administrator. > >Lane > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From holger.justen at aktion-mensch.de Mon Mar 24 08:31:04 2003 From: holger.justen at aktion-mensch.de (holger.justen at aktion-mensch.de) Date: Mon, 24 Mar 2003 08:31:04 +0100 Subject: Problem with log rotation Message-ID: Hi, I have some problems with the log rotation option of Nagios. At the moment, I'm using weekly log rotation (but the same problem also occured with daily rotation). When log rotation takes place two files are created in the archive directory: -rw-rw-r-- 1 nagios nagios 32159 2003-03-22 23:37 nagios-03-22-2003-23.log -rw-rw-r-- 1 nagios nagios 34 2003-03-22 23:59 nagios-03-23-2003-00.log Most events are included in the nagios-03-22-2003-23.log (e.g. nagios-03-23-2003-00.log just contains "[1048373973] LOG ROTATION: WEEKLY"). The cgi-scripts (like history.cgi) are looking for archived log files ending with -00.log, therefore not all messages are displayed in the web interface. What has to be done in order to get Nagios to display all messages related to a log period? Related configuration: log_file=/usr/local/nagios/var/nagios.log log_archive_path=/usr/local/nagios/var/archives log_rotation_method=w Thanks, Holger Justen -------------- next part -------------- An HTML attachment was scrubbed... URL: From tdeblend at gcc.dhl.com Mon Mar 24 08:44:17 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Mon, 24 Mar 2003 08:44:17 +0100 Subject: Scalability References: Message-ID: <3E7EB751.4E7EC7FF@gcc.dhl.com> http://www.nagios.org/userprofiles/ "Carroll, Jim P [Contractor]" wrote: > > We're presently monitoring 142 hosts, 1,925 services. > > jc > > > -----Original Message----- > > From: Ben Lisle [mailto:benl at flowcom.com.au] > > Sent: Friday, March 21, 2003 7:41 AM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: [Nagios-users] Scalability > > > > > > Hi, > > > > I'm wanting to get an idea of how well Nagios scales. > > > > How many hosts/services do users on this list poll on their > > networks? What > > is the maximum amount of hosts you've seen monitored in a production > > environment? > > > > Ben > > . > > Please note that my email address has changed. My new address is > > benl at flowcom.com.au, so please update your contact list. > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Mon Mar 24 09:03:33 2003 From: KreigD at webex.com (Kreig Dubose) Date: Mon, 24 Mar 2003 00:03:33 -0800 Subject: Return Code 127 Message-ID: I cured the 127 error by using the $HOST1$ macro instead of the path name. Now I get: Status Critical (No output!) I've verified that the command runs OK as user nagios and it does return something: -bash-2.05b$ ./check_nrpe -H goclnx1 -p 5666 -c check_users USERS OK - 1 users currently logged in the perms on the nagios.cmd file are wide open (my understanding as to where it dumps these types of checks?? -----Original Message----- From: Ewan Leith [mailto:ejl at man.fwltech.com] Sent: Thursday, March 06, 2003 5:50 AM To: 'Kreig Dubose'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Return Code 127 Return code 127 normally means it either can't find the plugin or it doesn't have permission to run it - check that the nagios user gets a valid response from the command line, and if it does, then check that your command.cfg has the location of the file set correctly. Ewan > -----Original Message----- > From: Kreig Dubose [mailto:KreigD at webex.com] > Sent: 06 March 2003 12:24 > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Return Code 127 > > > I'm seeing this error in Service Status Details while using > check_nrpe. > > from CLI: > [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c > check_users -to 10 > USERS OK - 2 users currently logged in > [kreigd at goclnx1 libexec]$ > > However in status detail it shows: > (Return code of 127 is out of bounds - plugin may be missing) > > I have no idea what status code 127 is, or what it's > referring to as to how > it's missing? As you can see it works from the CLI. Here's > the log message > it keeps spewing > > [1046945879] Warning: Return code of 127 for check of service > 'check_users' > on host 'goclnx2' was out of bounds. Make sure the plugin > you're trying to > run actually exists. > > > I've tried this across different servers (as above) and on > the local nagios > machine with the same results. > > TIA > > Kreig > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Etnus, makers of > TotalView, The debugger > for complex code. Debugging C/C++ programs can leave you > feeling lost and > disoriented. TotalView can help you find your way. Available > on major UNIX > and Linux platforms. Try it free. www.etnus.com > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by:Crypto Challenge is now open! Get cracking and register here for some mind boggling fun and the chance of winning an Apple iPod: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From atulsh at hclinsys.com Mon Mar 24 10:22:34 2003 From: atulsh at hclinsys.com (Atul Shrivastava) Date: Mon, 24 Mar 2003 14:52:34 +0530 (IST) Subject: NRPE Using Apan In-Reply-To: <3E7EB751.4E7EC7FF@gcc.dhl.com> References: <3E7EB751.4E7EC7FF@gcc.dhl.com> Message-ID: Hello all, Can anyone tell me how can I configure NRPE graph using APAN. My aim is to monitor Linux and Win servers (CPU Load, Disk Space, Memory Usage, Interface Utilization, No. of Users, Per User load, Per User Bandwidth Utilization etc.) I am also trying it using SNMP also but not getting the result. I can only get the Bandwidth Utilization using SNMP. If anyone tell me the object IDs and how to configure the snmpd.conf in the remote machine then it is possible with SNMP. Tell me either way to solve the problems. Thanks in advance. Regards, Atul Shrivastava ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Mon Mar 24 12:18:45 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 24 Mar 2003 06:18:45 -0500 Subject: Check memory & cpu in Unix In-Reply-To: <20030324065556.25558.qmail@mail.com> References: <20030324065556.25558.qmail@mail.com> Message-ID: <1048504724.15280.5.camel@miles.debisschop.net> On Mon, 2003-03-24 at 01:55, nemir nemiria wrote: > > You have a few options: > > > > 1) nagios-statd will check disk, load, proc, swap, users > > 2) checks via snmp (and thus check_snmp) > > 3) custom scripts on each host checked via check_by_ssh > > Which options will work without any snmp at all? I am trying hard to steer clear of snmp for I fear the obvious security flaws inherent in that protocol...? > > > > > > I'd opt for #2 or #3 myself. > > Does option 1 rely on an underlying snmp layer? If so, then option 3 looks like the choice for me. Does anyone have any example of the sort of scripts that will need to be cobbled together to make a check for disk, load, memory, swap, users, etc? Just install the plugins on the remote machine, and use check_by_ssh. NRPE is another option, but I don't know that its security model is a strict as you want. Keep in mind that check_by_ssh is not built for performamnce. Also, for the simplest cases, 'ssh does the same as check_by_ssh, with one less layer of overhead. But to check a number of services on one invocation, check_by_ssh can be used to drop multiple services into the collector for a passive check that uses only one SSH connection per checked host. -- Karl ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From holger.justen at aktion-mensch.de Mon Mar 24 12:49:01 2003 From: holger.justen at aktion-mensch.de (holger.justen at aktion-mensch.de) Date: Mon, 24 Mar 2003 12:49:01 +0100 Subject: Antwort: Re: Problem with log rotation Message-ID: Subhendu Ghosh 24.03.2003 12:46 An: holger.justen at aktion-mensch.de Kopie: nagios-users at lists.sourceforge.net Thema: Re: [Nagios-users] Problem with log rotation On Mon, 24 Mar 2003 holger.justen at aktion-mensch.de wrote: > Hi, > > I have some problems with the log rotation option of Nagios. At the > moment, I'm using weekly log rotation (but the same problem also occured > with daily rotation). When log rotation takes place two files are created > in the archive directory: > > -rw-rw-r-- 1 nagios nagios 32159 2003-03-22 23:37 > nagios-03-22-2003-23.log > -rw-rw-r-- 1 nagios nagios 34 2003-03-22 23:59 > nagios-03-23-2003-00.log > > Most events are included in the nagios-03-22-2003-23.log (e.g. > nagios-03-23-2003-00.log just contains "[1048373973] LOG ROTATION: > WEEKLY"). The cgi-scripts (like history.cgi) are looking for archived log > files ending with -00.log, therefore not all messages are displayed in the > web interface. What has to be done in order to get Nagios to display all > messages related to a log period? > > Related configuration: > log_file=/usr/local/nagios/var/nagios.log > log_archive_path=/usr/local/nagios/var/archives > log_rotation_method=w > > Thanks, > Holger Justen What version of Nagios ?? -- I'm using Nagios Version 1.0 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sghosh at sghosh.org Mon Mar 24 12:46:06 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 06:46:06 -0500 (EST) Subject: Problem with log rotation In-Reply-To: References: Message-ID: On Mon, 24 Mar 2003 holger.justen at aktion-mensch.de wrote: > Hi, > > I have some problems with the log rotation option of Nagios. At the > moment, I'm using weekly log rotation (but the same problem also occured > with daily rotation). When log rotation takes place two files are created > in the archive directory: > > -rw-rw-r-- 1 nagios nagios 32159 2003-03-22 23:37 > nagios-03-22-2003-23.log > -rw-rw-r-- 1 nagios nagios 34 2003-03-22 23:59 > nagios-03-23-2003-00.log > > Most events are included in the nagios-03-22-2003-23.log (e.g. > nagios-03-23-2003-00.log just contains "[1048373973] LOG ROTATION: > WEEKLY"). The cgi-scripts (like history.cgi) are looking for archived log > files ending with -00.log, therefore not all messages are displayed in the > web interface. What has to be done in order to get Nagios to display all > messages related to a log period? > > Related configuration: > log_file=/usr/local/nagios/var/nagios.log > log_archive_path=/usr/local/nagios/var/archives > log_rotation_method=w > > Thanks, > Holger Justen What version of Nagios ?? -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 12:50:07 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 06:50:07 -0500 (EST) Subject: Return Code 127 In-Reply-To: References: Message-ID: On Mon, 24 Mar 2003, Kreig Dubose wrote: > I cured the 127 error by using the $HOST1$ macro instead of the path name. As far as I know - there are no $HOSTx$ macros only $USERx$ and $ARGx$ http://nagios.sourceforge.net/docs/1_0/macros.html You are getting no output - because $HOST1$ is cannon be expanded. -sg > Now I get: > > Status Critical > (No output!) > > I've verified that the command runs OK as user nagios and it does return > something: > > -bash-2.05b$ ./check_nrpe -H goclnx1 -p 5666 -c check_users > USERS OK - 1 users currently logged in > > the perms on the nagios.cmd file are wide open (my understanding as to where > it dumps these types of checks?? > > > > -----Original Message----- > From: Ewan Leith [mailto:ejl at man.fwltech.com] > Sent: Thursday, March 06, 2003 5:50 AM > To: 'Kreig Dubose'; nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Return Code 127 > > > Return code 127 normally means it either can't find the plugin or it doesn't > have permission to run it - check that the nagios user gets a valid response > from the command line, and if it does, then check that your command.cfg has > the location of the file set correctly. > > Ewan > > > -----Original Message----- > > From: Kreig Dubose [mailto:KreigD at webex.com] > > Sent: 06 March 2003 12:24 > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] Return Code 127 > > > > > > I'm seeing this error in Service Status Details while using > > check_nrpe. > > > > from CLI: > > [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c > > check_users -to 10 > > USERS OK - 2 users currently logged in > > [kreigd at goclnx1 libexec]$ > > > > However in status detail it shows: > > (Return code of 127 is out of bounds - plugin may be missing) > > > > I have no idea what status code 127 is, or what it's > > referring to as to how > > it's missing? As you can see it works from the CLI. Here's > > the log message > > it keeps spewing > > > > [1046945879] Warning: Return code of 127 for check of service > > 'check_users' > > on host 'goclnx2' was out of bounds. Make sure the plugin > > you're trying to > > run actually exists. > > > > > > I've tried this across different servers (as above) and on > > the local nagios > > machine with the same results. > > > > TIA > > > > Kreig > > > > -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Mon Mar 24 12:54:22 2003 From: KreigD at webex.com (Kreig Dubose) Date: Mon, 24 Mar 2003 03:54:22 -0800 Subject: Return Code 127 Message-ID: # 'check_nrpe_users definition define command{ command_name check_nrpe_users command_line $USER1$/check_nrpe -H $USER1$ -p 5666 -c check_users -to 10` } My appologies for my bad memory :) That's pasted straight from the checkcommands.cfg file -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Monday, March 24, 2003 4:50 AM To: Kreig Dubose Cc: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Return Code 127 On Mon, 24 Mar 2003, Kreig Dubose wrote: > I cured the 127 error by using the $HOST1$ macro instead of the path name. As far as I know - there are no $HOSTx$ macros only $USERx$ and $ARGx$ http://nagios.sourceforge.net/docs/1_0/macros.html You are getting no output - because $HOST1$ is cannon be expanded. -sg > Now I get: > > Status Critical > (No output!) > > I've verified that the command runs OK as user nagios and it does return > something: > > -bash-2.05b$ ./check_nrpe -H goclnx1 -p 5666 -c check_users > USERS OK - 1 users currently logged in > > the perms on the nagios.cmd file are wide open (my understanding as to where > it dumps these types of checks?? > > > > -----Original Message----- > From: Ewan Leith [mailto:ejl at man.fwltech.com] > Sent: Thursday, March 06, 2003 5:50 AM > To: 'Kreig Dubose'; nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Return Code 127 > > > Return code 127 normally means it either can't find the plugin or it doesn't > have permission to run it - check that the nagios user gets a valid response > from the command line, and if it does, then check that your command.cfg has > the location of the file set correctly. > > Ewan > > > -----Original Message----- > > From: Kreig Dubose [mailto:KreigD at webex.com] > > Sent: 06 March 2003 12:24 > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] Return Code 127 > > > > > > I'm seeing this error in Service Status Details while using > > check_nrpe. > > > > from CLI: > > [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c > > check_users -to 10 > > USERS OK - 2 users currently logged in > > [kreigd at goclnx1 libexec]$ > > > > However in status detail it shows: > > (Return code of 127 is out of bounds - plugin may be missing) > > > > I have no idea what status code 127 is, or what it's > > referring to as to how > > it's missing? As you can see it works from the CLI. Here's > > the log message > > it keeps spewing > > > > [1046945879] Warning: Return code of 127 for check of service > > 'check_users' > > on host 'goclnx2' was out of bounds. Make sure the plugin > > you're trying to > > run actually exists. > > > > > > I've tried this across different servers (as above) and on > > the local nagios > > machine with the same results. > > > > TIA > > > > Kreig > > > > -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 12:58:27 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 06:58:27 -0500 (EST) Subject: Return Code 127 In-Reply-To: References: Message-ID: I think the second $USER1$ should be $HOSTADDRESS$ -sg On Mon, 24 Mar 2003, Kreig Dubose wrote: > # 'check_nrpe_users definition > define command{ > command_name check_nrpe_users > command_line $USER1$/check_nrpe -H $USER1$ -p 5666 -c check_users > -to 10` > } > > My appologies for my bad memory :) That's pasted straight from the > checkcommands.cfg file > > > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Monday, March 24, 2003 4:50 AM > To: Kreig Dubose > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Return Code 127 > > > On Mon, 24 Mar 2003, Kreig Dubose wrote: > > > I cured the 127 error by using the $HOST1$ macro instead of the path name. > > As far as I know - there are no $HOSTx$ macros only $USERx$ and $ARGx$ > http://nagios.sourceforge.net/docs/1_0/macros.html > > You are getting no output - because $HOST1$ is cannon be expanded. > > -sg > > > Now I get: > > > > Status Critical > > (No output!) > > > > I've verified that the command runs OK as user nagios and it does return > > something: > > > > -bash-2.05b$ ./check_nrpe -H goclnx1 -p 5666 -c check_users > > USERS OK - 1 users currently logged in > > > > the perms on the nagios.cmd file are wide open (my understanding as to > where > > it dumps these types of checks?? > > > > > > > > -----Original Message----- > > From: Ewan Leith [mailto:ejl at man.fwltech.com] > > Sent: Thursday, March 06, 2003 5:50 AM > > To: 'Kreig Dubose'; nagios-users at lists.sourceforge.net > > Subject: RE: [Nagios-users] Return Code 127 > > > > > > Return code 127 normally means it either can't find the plugin or it > doesn't > > have permission to run it - check that the nagios user gets a valid > response > > from the command line, and if it does, then check that your command.cfg > has > > the location of the file set correctly. > > > > Ewan > > > > > -----Original Message----- > > > From: Kreig Dubose [mailto:KreigD at webex.com] > > > Sent: 06 March 2003 12:24 > > > To: nagios-users at lists.sourceforge.net > > > Subject: [Nagios-users] Return Code 127 > > > > > > > > > I'm seeing this error in Service Status Details while using > > > check_nrpe. > > > > > > from CLI: > > > [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c > > > check_users -to 10 > > > USERS OK - 2 users currently logged in > > > [kreigd at goclnx1 libexec]$ > > > > > > However in status detail it shows: > > > (Return code of 127 is out of bounds - plugin may be missing) > > > > > > I have no idea what status code 127 is, or what it's > > > referring to as to how > > > it's missing? As you can see it works from the CLI. Here's > > > the log message > > > it keeps spewing > > > > > > [1046945879] Warning: Return code of 127 for check of service > > > 'check_users' > > > on host 'goclnx2' was out of bounds. Make sure the plugin > > > you're trying to > > > run actually exists. > > > > > > > > > I've tried this across different servers (as above) and on > > > the local nagios > > > machine with the same results. > > > > > > TIA > > > > > > Kreig > > > > > > > > -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Mon Mar 24 13:07:22 2003 From: KreigD at webex.com (Kreig Dubose) Date: Mon, 24 Mar 2003 04:07:22 -0800 Subject: Return Code 127 Message-ID: [1048507399] EXTERNAL COMMAND: SCHEDULE_FORCED_SVC_CHECK;goclnx1;check_users;1048507394 This is all I see in the nagios.log file after changing the second macro and restarting the service. The Status Information field still reads: (No output!) [root at nagios libexec]# ./check_nrpe -H goclnx1 -p 5666 -c check_users -to 10 USERS OK - 2 users currently logged in is the result from running it locally via the command line. Incase you'd suspect it's a userid issue: [root at nagios libexec]# su nagios bash-2.05b$ /usr/local/nagios/libexec/check_nrpe -H goclnx1 -p 5666 -c check_users -to 10 USERS OK - 2 users currently logged in -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Monday, March 24, 2003 4:58 AM To: Kreig Dubose Cc: nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Return Code 127 I think the second $USER1$ should be $HOSTADDRESS$ -sg On Mon, 24 Mar 2003, Kreig Dubose wrote: > # 'check_nrpe_users definition > define command{ > command_name check_nrpe_users > command_line $USER1$/check_nrpe -H $USER1$ -p 5666 -c check_users > -to 10` > } > > My appologies for my bad memory :) That's pasted straight from the > checkcommands.cfg file > > > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Monday, March 24, 2003 4:50 AM > To: Kreig Dubose > Cc: nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Return Code 127 > > > On Mon, 24 Mar 2003, Kreig Dubose wrote: > > > I cured the 127 error by using the $HOST1$ macro instead of the path name. > > As far as I know - there are no $HOSTx$ macros only $USERx$ and $ARGx$ > http://nagios.sourceforge.net/docs/1_0/macros.html > > You are getting no output - because $HOST1$ is cannon be expanded. > > -sg > > > Now I get: > > > > Status Critical > > (No output!) > > > > I've verified that the command runs OK as user nagios and it does return > > something: > > > > -bash-2.05b$ ./check_nrpe -H goclnx1 -p 5666 -c check_users > > USERS OK - 1 users currently logged in > > > > the perms on the nagios.cmd file are wide open (my understanding as to > where > > it dumps these types of checks?? > > > > > > > > -----Original Message----- > > From: Ewan Leith [mailto:ejl at man.fwltech.com] > > Sent: Thursday, March 06, 2003 5:50 AM > > To: 'Kreig Dubose'; nagios-users at lists.sourceforge.net > > Subject: RE: [Nagios-users] Return Code 127 > > > > > > Return code 127 normally means it either can't find the plugin or it > doesn't > > have permission to run it - check that the nagios user gets a valid > response > > from the command line, and if it does, then check that your command.cfg > has > > the location of the file set correctly. > > > > Ewan > > > > > -----Original Message----- > > > From: Kreig Dubose [mailto:KreigD at webex.com] > > > Sent: 06 March 2003 12:24 > > > To: nagios-users at lists.sourceforge.net > > > Subject: [Nagios-users] Return Code 127 > > > > > > > > > I'm seeing this error in Service Status Details while using > > > check_nrpe. > > > > > > from CLI: > > > [kreigd at goclnx1 libexec]$ ./check_nrpe -H goclnx2 -c > > > check_users -to 10 > > > USERS OK - 2 users currently logged in > > > [kreigd at goclnx1 libexec]$ > > > > > > However in status detail it shows: > > > (Return code of 127 is out of bounds - plugin may be missing) > > > > > > I have no idea what status code 127 is, or what it's > > > referring to as to how > > > it's missing? As you can see it works from the CLI. Here's > > > the log message > > > it keeps spewing > > > > > > [1046945879] Warning: Return code of 127 for check of service > > > 'check_users' > > > on host 'goclnx2' was out of bounds. Make sure the plugin > > > you're trying to > > > run actually exists. > > > > > > > > > I've tried this across different servers (as above) and on > > > the local nagios > > > machine with the same results. > > > > > > TIA > > > > > > Kreig > > > > > > > > -- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Mon Mar 24 13:07:49 2003 From: KreigD at webex.com (Kreig Dubose) Date: Mon, 24 Mar 2003 04:07:49 -0800 Subject: NSCA checks Message-ID: Ok.. I've been beating my head here. I can't figure out why I can't see any report or record of this check anywhere. Hopefully this is enough to help. TIA, Kreig **************************************************************************** ** Client: RH Linux 2.4.7-10smp NSCA Client 2.3 192.168.164.221 goclnx1 [nagios at goclnx1 libexec]$ pwd /usr/local/nagios/libexec [nagios at goclnx1 libexec]$ ./check_smtp -H localhost -w 2 -c 5 SMTP OK - 0 second response time [nagios at goclnx1 libexec]$ ./check_smtp -H localhost -w 2 -c 5 | ./send_nsca -H nagios -p 5667 -c /etc/send_nsca.cfg 0 data packet(s) sent to host successfully. [nagios at goclnx1 libexec]$ [nagios at goclnx1 libexec]$ cat /etc/send_nsca.cfg #################################################### # Sample NSCA Client Config File # Written by: Ethan Galstad ( nagios at nagios.org ) # # Last Modified: 02-21-2002 #################################################### #password= encryption_method=1 [nagios at goclnx1 libexec]$ Nagios Server: RH Linux 2.4.18-14 NSCA - Nagios Service Check Acceptor Copyright (c) 2000-2003 Ethan Galstad ( nagios at nagios.org ) Version: 2.3 192.168.164.226 nagios [kreigd at nagios nagios]$ cat /etc/nsca.cfg #################################################### # Sample NSCA Daemon Config File # Written by: Ethan Galstad ( nagios at nagios.org ) # # Last Modified: 01-07-2002 #################################################### server_port=5667 allowed_hosts=127.0.0.1,192.168.164.221,192.168.164.222 nsca_user=nagios nsca_group=nagios debug=0 command_file=/usr/local/nagios/var/rw/nagios.cmd alternate_dump_file=/usr/local/nagios/var/rw/nsca.dump aggregate_writes=0 append_to_file=0 max_packet_age=30 #password= decryption_method=1 [kreigd at nagios nagios]$ ps -ef | grep nsca nagios 30705 1 0 01:12 ? 00:00:00 ./nsca -c /etc/nsca.cfg --daemon from checkcommands.cfg # 'check_smtp' command definition define command{ command_name check_smtp command_line $USER1$/check_smtp -H $HOSTADDRESS$ } prw-rw---- 1 nagios nagiocmd 0 Mar 24 04:32 nagios.cmd drwxrws--- 2 nagios nagiocmd 4096 Mar 24 04:32 rw -------------- next part -------------- An HTML attachment was scrubbed... URL: From pablo.morales at abitab.com.uy Mon Mar 24 13:43:22 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Mon, 24 Mar 2003 09:43:22 -0300 Subject: Cannot read the reports status Message-ID: <016001c2f202$f4737960$0229c80a@abtec412> Hi there, this is my fist post. I've installed nagios in my FreeBSD 4.7 box, I installed it from the ports tree, I also had to install the web server, now I can do a http://localhost/nagios and the main menu it's displayed, I can see the documentation, but If I select another option like system status or something like that , that implies a cgi request, I've get garbage, the only thing readable it's at the en of the page that says, generated by nagios. I tryed to see it as root, using different browsers, It's like when yopu haven't installed the correct laguage support and the web page cannot read, t loads., but in russian for example :) What's wrong? Bytes. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Mon Mar 24 13:53:56 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Mon, 24 Mar 2003 09:53:56 -0300 Subject: FW: Status map and 3D status map Message-ID: Please, anybody help me ? I didn't to get solve this problem yet. Thanks, Hugo -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: sexta-feira, 21 de mar?o de 2003 14:35 To: Pascal RENAUT/GROUPE-ES Subject: RE: R?f. : [Nagios-users] Status map and 3D status map I compiled with this option ( ./configure --prefix=/usr), so I continue receiving the notification below. **************************************************************************** ************************ checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ******************** I'm thinking put (--with-jpeg=DIR) option, but what DIR I must use ? Thanks, Hugo -----Original Message----- From: Pascal RENAUT/GROUPE-ES [mailto:pascal.renaut at electricite-strasbourg.fr] Sent: sexta-feira, 21 de mar?o de 2003 12:46 To: Hugo Rebello Subject: R?f. : [Nagios-users] Status map and 3D status map If you compile the lastest gd library (gd2.0.11 on www.boutell.com) with this option : ./configure --prefix=/usr (because you are a old gd version) then all it's OK - no problem Freetype, jpeg and Xpm libraries ............................................................................ ......................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr "Hugo Rebello" Pour : "'Nagios Users (E-mail) '" Envoy? par : nagios-users-admin at lists.sourc cc : (ccc : Pascal RENAUT/GROUPE-ES) eforge.net Objet : [Nagios-users] Status map and 3D status map 21/03/2003 15:48 Please, anybody help me ? I'm upgrading the Nagios 1.0b6 to 1.0, but I don't to get install gd library with support to jpeg. Where is jpeg library in machine ? I tried configure with support for jpeg library using the following command ( ./configure --with-jpeg=/usr/local/bin or /usr/lib), but don't work. Look the message that I receive when running the command: **************************************************************************** *************** checking for png_create_read_struct in -lpng... yes checking for freetype-config... no checking for FT_Init_FreeType in -lfreetype... no configure: WARNING: not found - disabling freetype support checking freetype/freetype.h usability... no checking freetype/freetype.h presence... no checking for freetype/freetype.h... no checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ****************************** Thank you for advanced Hugo ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From atulsh at hclinsys.com Mon Mar 24 14:08:49 2003 From: atulsh at hclinsys.com (Atul Shrivastava) Date: Mon, 24 Mar 2003 18:38:49 +0530 (IST) Subject: How to monitor Disk and CPU with SNMP in RH Linux In-Reply-To: References: Message-ID: Hello all, Can anyone have some hands on of monitoring linux boxes using SNMP. The basic services which need to be monitored are: CPU Load, Disk Space, Memory Usage, Bandwidth Utilization, Per User Load etc I have enaled snmpd in one testing linux box, but i don't know how to configure the object ids for the above services. Can we make graphs through apan of it........? For router it is possible then for (linux + windows) boxes, i think that it is also there...... If anyone can help me than I am thankful Regards and have a nice day, Atul Shrivastava Info Structure Services HCL INFOSYSTEMS LTD. E - 4,5,6 Sector XI, Noida - 201301 Tel: 91-120-2526910,2443013 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From w.moser at conova.com Mon Mar 24 14:22:55 2003 From: w.moser at conova.com (Moser Wolfgang) Date: Mon, 24 Mar 2003 14:22:55 +0100 Subject: service check intervall References: <20030320132000.54028.qmail@web10903.mail.yahoo.com> <3E79D89C.4010908@c-bs.de> Message-ID: <3E7F06AF.6090402@conova.com> Hello Matthias!! Try to enable following in the nagios.cfg. ################### # ORPHANED SERVICE CHECK OPTION # This determines whether or not Nagios will periodically # check for orphaned services. Since service checks are not # rescheduled until the results of their previous execution # instance are processed, there exists a possibility that some # checks may never get rescheduled. This seems to be a rare # problem and should not happen under normal circumstances. # If you have problems with service checks never getting # rescheduled, you might want to try enabling this option. # Values: 1 = enable checks, 0 = disable checks check_for_orphaned_services=1 ################### The explanation is in the sample-nagios.cfg. I did a simple cut and paste. I hope this help you!! ciao wolfgang Matthias Kurzer wrote: > Somthing is wrong with my configuration. Some of my services were last > checked two hours ago. But in services.cfg every service has a > normal_check_interval 3 or 5. There is nothing in nagios log. > What ist wrong? > Here is my nagios.cfg: > > log_file=/var/log/nagios/nagios.log > > cfg_file=/etc/nagios/checkcommands.cfg > > cfg_file=/etc/nagios/misccommands.cfg > > cfg_file=/etc/nagios/contactgroups.cfg > cfg_file=/etc/nagios/contacts.cfg > cfg_file=/etc/nagios/dependencies.cfg > cfg_file=/etc/nagios/escalations.cfg > cfg_file=/etc/nagios/hostgroups.cfg > cfg_file=/etc/nagios/hosts.cfg > cfg_file=/etc/nagios/services.cfg > cfg_file=/etc/nagios/timeperiods.cfg > > resource_file=/etc/nagios/resource.cfg > > status_file=/var/log/nagios/status.log > > nagios_user=daemon > > nagios_group=daemon > > check_external_commands=1 > > command_check_interval=1 > > command_file=/var/spool/nagios/nagios.cmd > > comment_file=/var/log/nagios/comment.log > > downtime_file=/var/log/nagios/downtime.log > > lock_file=/var/run/nagios.pid > > temp_file=/var/log/nagios/nagios.tmp > > log_rotation_method=w > > log_archive_path=/var/log/nagios/archives > > use_syslog=0 > > log_notifications=1 > > log_service_retries=1 > > log_host_retries=1 > > log_event_handlers=1 > > log_initial_states=0 > > log_external_commands=1 > > log_passive_service_checks=1 > > inter_check_delay_method=s > > service_interleave_factor=s > > max_concurrent_checks=0 > > service_reaper_frequency=10 > > sleep_time=1 > > service_check_timeout=60 > host_check_timeout=30 > event_handler_timeout=30 > notification_timeout=30 > ocsp_timeout=5 > perfdata_timeout=5 > > retain_state_information=1 > > state_retention_file=/var/log/nagios/status.sav > > retention_update_interval=60 > > use_retained_program_state=0 > > interval_length=60 > > use_agressive_host_checking=0 > > execute_service_checks=1 > > accept_passive_service_checks=1 > > enable_notifications=1 > > enable_event_handlers=1 > > process_performance_data=0 > > obsess_over_services=0 > > check_for_orphaned_services=0 > > check_service_freshness=1 > > freshness_check_interval=60 > > aggregate_status_updates=1 > > status_update_interval=15 > > enable_flap_detection=0 > > low_service_flap_threshold=5.0 > high_service_flap_threshold=20.0 > low_host_flap_threshold=5.0 > high_host_flap_threshold=20.0 > > date_format=euro > > illegal_object_name_chars=`~!$%^&*|'"<>?,()= > > illegal_macro_output_chars=`~$&|'"<> > > admin_email=it at c-bs.de > > admin_pager=pagedaemon > > # EOF (End of file) > > > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From HenryS at discovery.co.za Mon Mar 24 14:20:05 2003 From: HenryS at discovery.co.za (Henry Swanepoel) Date: Mon, 24 Mar 2003 15:20:05 +0200 Subject: Problem with log rotation Message-ID: > I have some problems with the log rotation option of Nagios. At the moment, I'm > using weekly log rotation (but the same problem also occured with daily > rotation). When log rotation takes place two files are created in the archive > directory: *snip* > Most events are included in the nagios-03-22-2003-23.log (e.g. > nagios-03-23-2003-00.log just contains "[1048373973] LOG ROTATION: WEEKLY"). > The cgi-scripts (like history.cgi) are looking for archived log files > ending with -00.log, therefore not all messages are displayed in the web > interface. What has to be done in order to get Nagios to display all messages > related to a log period? *snip* I've run into the same problem. To fix the reporting, I simply renamed the relevant 'full' log file to end with a -00.log, which fixed the reporting. As for the cause, I've come to the conclusion that some kind of race exists that causes the file to be rotated a fraction before midnight, hence the -23.log ending, and again on or after midnight. It would appear that the first file's handle then gets passed back, which explains why it get the data. Exactly how I've not figured out yet, as I've not had much time to devote to this, and in the 8 months we've been running Nagios, only 4 files have ended up this way. When I get some time, I plan to dig deeper into the mystery that is the source. ;) FWIW :) -- Live long and Prosper ============================================================================ ==== Henry Swanepoel | Office: +27 11 529 1057 Internet Infrastructure Administrator | henrys AT discovery DOT co DOT za Discovery Health (PTY) Ltd. | 155 West Street, Sandton, 2146 Reg. #: 1997/13480/07 | http://www.discoveryhealth.co.za/ ============================================================================ ==== This message and any attachments are confidential and intended solely for the addressee. If you have received this message in error, please notify Discovery Holdings Ltd immediately, telephone number +27-11-529 2888. Any unauthorised use, alteration or dissemination is prohibited. Discovery Holdings Ltd accepts no liability whatsoever for any loss, whether it be direct, indirect or consequential, arising from information made available and actions resulting therefrom. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Mon Mar 24 14:36:54 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Mon, 24 Mar 2003 10:36:54 -0300 Subject: FW: Status map and 3D status map In-Reply-To: References: Message-ID: I installed jpeg-6b, but when compile gd I receive the following notification: ******************************************************************** checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands ***************************************************************** I need to install the Freetype for JPEG work ? Thank you. Hugo -----Original Message----- From: m.kauer at corag.de [mailto:m.kauer at corag.de] Sent: segunda-feira, 24 de mar?o de 2003 10:33 To: Hugo Rebello Subject: Re: FW: [Nagios-users] Status map and 3D status map Hi Hugo, for my configuration I use gd 2.0.11 This neeeds libpng, zlib, jpeg-6b and Freetype. I don't use XPM. for JPEG look at: http://www.ijg.org/files/ Download jpegsrc.v6b.tar.gz, unpack it and read the docs. On my Debian system I also needed to install libjpeg62-dev for Freetype look at http://sourceforge.net/project/showfiles.php?group_id=3157 Download freetype-2.1.3.tar.gz, unpack it and follow the docs. Hope this help! Good luck, Marcus "Hugo Rebello" To: "'Nagios Users (E-mail) '" Sent by: cc: nagios-users-admin at lists.sour Subject: FW: [Nagios-users] Status map and 3D status map ceforge.net 24.03.2003 14:23 Please, anybody help me ? I didn't to get solve this problem yet. Thanks, Hugo -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: sexta-feira, 21 de mar?o de 2003 14:35 To: Pascal RENAUT/GROUPE-ES Subject: RE: R?f. : [Nagios-users] Status map and 3D status map I compiled with this option ( ./configure --prefix=/usr), so I continue receiving the notification below. **************************************************************************** ************************ checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ******************** I'm thinking put (--with-jpeg=DIR) option, but what DIR I must use ? Thanks, Hugo -----Original Message----- From: Pascal RENAUT/GROUPE-ES [mailto:pascal.renaut at electricite-strasbourg.fr] Sent: sexta-feira, 21 de mar?o de 2003 12:46 To: Hugo Rebello Subject: R?f. : [Nagios-users] Status map and 3D status map If you compile the lastest gd library (gd2.0.11 on www.boutell.com) with this option : ./configure --prefix=/usr (because you are a old gd version) then all it's OK - no problem Freetype, jpeg and Xpm libraries ............................................................................ ......................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr "Hugo Rebello" Pour : "'Nagios Users (E-mail) '" Envoy? par : nagios-users-admin at lists.sourc cc : (ccc : Pascal RENAUT/GROUPE-ES) eforge.net Objet : [Nagios-users] Status map and 3D status map 21/03/2003 15:48 Please, anybody help me ? I'm upgrading the Nagios 1.0b6 to 1.0, but I don't to get install gd library with support to jpeg. Where is jpeg library in machine ? I tried configure with support for jpeg library using the following command ( ./configure --with-jpeg=/usr/local/bin or /usr/lib), but don't work. Look the message that I receive when running the command: **************************************************************************** *************** checking for png_create_read_struct in -lpng... yes checking for freetype-config... no checking for FT_Init_FreeType in -lfreetype... no configure: WARNING: not found - disabling freetype support checking freetype/freetype.h usability... no checking freetype/freetype.h presence... no checking for freetype/freetype.h... no checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ****************************** Thank you for advanced Hugo ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From benny at bennyvision.com Mon Mar 24 14:38:00 2003 From: benny at bennyvision.com (C. Bensend) Date: Mon, 24 Mar 2003 07:38:00 -0600 Subject: Return Code 127 In-Reply-To: ; from KreigD@webex.com on Mon, Mar 24, 2003 at 04:07:22AM -0800 References: Message-ID: <20030324073800.A10499@bennyvision.com> On Mon, Mar 24, 2003 at 04:07:22AM -0800, Kreig Dubose wrote: > > The Status Information field still reads: > > (No output!) > > [root at nagios libexec]# ./check_nrpe -H goclnx1 -p 5666 -c check_users -to 10 > USERS OK - 2 users currently logged in > > is the result from running it locally via the command line. Any difference if you use the IP on the command line, instead of the hostname? Nagios is going to use the IP there... Benny -- 86. I will make sure that my doomsday device is up to code and properly grounded. --Peter Anspach's list of things to do as an Evil Overlord ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jbautista at icnet.com.ve Mon Mar 24 14:51:38 2003 From: jbautista at icnet.com.ve (Jeyri Bautista) Date: Mon, 24 Mar 2003 09:51:38 -0400 Subject: Unsubscribe me Message-ID: <5.1.0.14.0.20030324095122.00b5be58@pop.icnet.com.ve> ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Mon Mar 24 14:35:49 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Mon, 24 Mar 2003 07:35:49 -0600 (CST) Subject: Multiple Nagios processes Message-ID: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> Hello all, I was just wondering if anyone has had an issue with (what seems to be) an excessive number of nagios processes. I currently am running at around 260 and climbing slowly. Eventually it takes the load on the machine quite high. The machine is a linux box and currently is running Netsaint in production and Nagios in test (I'm working on transitioning Nagios into production right now), and most of the checks are done via nrpe so they way I have it set up right now is with both running grabbing information from the same nrpe daemon which is already running on other machines. I'm not sure if that could be the cause but I do know that Netsaint is currently only sitting at 37 processed and doesn't seem to be causing much impact. Notifications are dissabled for Nagios right now until I move it into production but I wanted to verify this behaviour was normal before finishing the transition. Any help/suggestions are apreciated! Lonny Selinger LPIC-1 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From KreigD at webex.com Mon Mar 24 14:51:17 2003 From: KreigD at webex.com (Kreig Dubose) Date: Mon, 24 Mar 2003 05:51:17 -0800 Subject: Return Code 127 Message-ID: No no difference. HOWEVER, it seems to be working now. Things are substantially the same other than the changes that were suggested within this thread. All I did was leave it alone then. Perhaps this check_nrpe command takes longer to verify its state ??? Onto the next issues ;) Thanks all for your assistance and suggestions. Kreig -----Original Message----- From: C. Bensend [mailto:benny at bennyvision.com] Sent: Monday, March 24, 2003 6:38 AM To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Return Code 127 On Mon, Mar 24, 2003 at 04:07:22AM -0800, Kreig Dubose wrote: > > The Status Information field still reads: > > (No output!) > > [root at nagios libexec]# ./check_nrpe -H goclnx1 -p 5666 -c check_users -to 10 > USERS OK - 2 users currently logged in > > is the result from running it locally via the command line. Any difference if you use the IP on the command line, instead of the hostname? Nagios is going to use the IP there... Benny -- 86. I will make sure that my doomsday device is up to code and properly grounded. --Peter Anspach's list of things to do as an Evil Overlord ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From H.Blaauw at solweb.nl Mon Mar 24 14:59:35 2003 From: H.Blaauw at solweb.nl (Hans Blaauw) Date: Mon, 24 Mar 2003 14:59:35 +0100 Subject: hoststatus data & MySQL Message-ID: Hi everybody, I have compiled nagios with mysql support for hoststatus data, did a make all; created a database; created the tables en created a user with all privileges for this database. I changed cgi.cfg & resource.cfg according to the documentation, but nagios refuses to write anything to the appropriate tables. nagios.log says : [1048515195] Error: Could not lock status data tables in database '' It's probably something stupid i forgot, but can someone help me out ? Many thanks !!!! Best regards, Hans Blaauw ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. This footnote also confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevox2000 at yahoo.com Mon Mar 24 15:06:45 2003 From: stevox2000 at yahoo.com (=?iso-8859-1?q?Steve=20Dussaux?=) Date: Mon, 24 Mar 2003 15:06:45 +0100 (CET) Subject: How to monitor Disk and CPU with SNMP in RH Linux In-Reply-To: References: Message-ID: <20030324140645.50819.qmail@web10903.mail.yahoo.com> I advise you to search for OIDs by using a MIB browser. The Net-SNMP package delivers a Tk MIB browser, TkMib. To monitor Linux services you have to : - configure snmpd.conf - Browse the ucDavis MIB contained in Net-SNMP package This is the same procedure for all equipments. You have to enable the SNMP agent and then, if a specific MIB is provided by the equipment's vendor, copy the MIB to the SNMP monitoring server. You can look at www.mibdepot.com for vendors's specific MIBs. And if you need more Linux SNMP support subscribe at Net-SNMP sourceforge mailing list. Then you use Apan to integrate SNMP checks and graphs into Nagios. Steve --- Atul Shrivastava a ?crit?: > Hello all, > > Can anyone have some hands on of monitoring linux boxes using SNMP. > The basic services which need to be monitored are: CPU Load, Disk Space, > Memory Usage, Bandwidth Utilization, Per User Load etc > I have enaled snmpd in one testing linux box, but i don't know how to > configure the object ids for the above services. > Can we make graphs through apan of it........? For router it is possible > then for (linux + windows) boxes, i think that it is also there...... > > If anyone can help me than I am thankful > > Regards and have a nice day, > Atul Shrivastava > Info Structure Services > HCL INFOSYSTEMS LTD. > E - 4,5,6 Sector XI, > Noida - 201301 > Tel: 91-120-2526910,2443013 > > > > > > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Mon Mar 24 14:58:16 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Mon, 24 Mar 2003 07:58:16 -0600 (CST) Subject: Multiple Nagios processes In-Reply-To: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> References: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> Message-ID: <35900.24.72.6.129.1048514296.squirrel@webmail.bangtherockstogether.net> As a side note ... On the monitoring machine the load can climb as high as this: load average: 1.61, 5.58, 4.39 WARNING Here is the machine info: # cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 8 model name : Pentium III (Coppermine) stepping : 6 cpu MHz : 930.328 cache size : 256 KB # cat /proc/meminfo total: used: free: shared: buffers: cached: Mem: 260562944 233246720 27316224 0 25120768 24117248 Swap: 271392768 52436992 218955776 -- Lonny ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Mon Mar 24 15:13:55 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Mon, 24 Mar 2003 11:13:55 -0300 Subject: FW: Status map and 3D status map In-Reply-To: References: Message-ID: Where I find the (libjpeg62-dev files). I look in my system and don't found. When you installed the GD library, you put (--with-jpeg=/DIR) options ? Thank you. Hugo -----Original Message----- From: m.kauer at corag.de [mailto:m.kauer at corag.de] Sent: segunda-feira, 24 de mar?o de 2003 11:00 To: Hugo Rebello Subject: RE: FW: [Nagios-users] Status map and 3D status map Please have a look at http://www.boutell.com/gd/manual2.0.11.html gd 2.0.11 requires .......... libpng, if you want PNG zlib, if you want PNG jpeg-6b if you want JPEG If you want to use the TrueType font support, you must also install the FreeType 2.x library, including the header files...... So FreeType is only needed, if you want to use the TTFs. You don't need it for JPEG to work. When I compiled gd I also got the message "Support for JPEG library: no" AFTER I installed JPEG. Have a look at the first line if your log: checking for jpeg_set_defaults in -ljpeg... no I think you're missing the Development files for the IJG JPEG library (libjpeg62-dev files). I installed them and got Support for JPEG library: yes! Marcus "Hugo Rebello" , "'Nagios Users (E-mail) '" danzas.com> cc: 24.03.2003 15:06 Subject: RE: FW: [Nagios-users] Status map and 3D status map I installed jpeg-6b, but when compile gd I receive the following notification: ******************************************************************** checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands ***************************************************************** I need to install the Freetype for JPEG work ? Thank you. Hugo -----Original Message----- From: m.kauer at corag.de [mailto:m.kauer at corag.de] Sent: segunda-feira, 24 de mar?o de 2003 10:33 To: Hugo Rebello Subject: Re: FW: [Nagios-users] Status map and 3D status map Hi Hugo, for my configuration I use gd 2.0.11 This neeeds libpng, zlib, jpeg-6b and Freetype. I don't use XPM. for JPEG look at: http://www.ijg.org/files/ Download jpegsrc.v6b.tar.gz, unpack it and read the docs. On my Debian system I also needed to install libjpeg62-dev for Freetype look at http://sourceforge.net/project/showfiles.php?group_id=3157 Download freetype-2.1.3.tar.gz, unpack it and follow the docs. Hope this help! Good luck, Marcus "Hugo Rebello" To: "'Nagios Users (E-mail) '" Sent by: cc: nagios-users-admin at lists.sour Subject: FW: [Nagios-users] Status map and 3D status map ceforge.net 24.03.2003 14:23 Please, anybody help me ? I didn't to get solve this problem yet. Thanks, Hugo -----Original Message----- From: Hugo Rebello [mailto:hugo.rebello at br.danzas.com] Sent: sexta-feira, 21 de mar?o de 2003 14:35 To: Pascal RENAUT/GROUPE-ES Subject: RE: R?f. : [Nagios-users] Status map and 3D status map I compiled with this option ( ./configure --prefix=/usr), so I continue receiving the notification below. **************************************************************************** ************************ checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ******************** I'm thinking put (--with-jpeg=DIR) option, but what DIR I must use ? Thanks, Hugo -----Original Message----- From: Pascal RENAUT/GROUPE-ES [mailto:pascal.renaut at electricite-strasbourg.fr] Sent: sexta-feira, 21 de mar?o de 2003 12:46 To: Hugo Rebello Subject: R?f. : [Nagios-users] Status map and 3D status map If you compile the lastest gd library (gd2.0.11 on www.boutell.com) with this option : ./configure --prefix=/usr (because you are a old gd version) then all it's OK - no problem Freetype, jpeg and Xpm libraries ............................................................................ ......................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr "Hugo Rebello" Pour : "'Nagios Users (E-mail) '" Envoy? par : nagios-users-admin at lists.sourc cc : (ccc : Pascal RENAUT/GROUPE-ES) eforge.net Objet : [Nagios-users] Status map and 3D status map 21/03/2003 15:48 Please, anybody help me ? I'm upgrading the Nagios 1.0b6 to 1.0, but I don't to get install gd library with support to jpeg. Where is jpeg library in machine ? I tried configure with support for jpeg library using the following command ( ./configure --with-jpeg=/usr/local/bin or /usr/lib), but don't work. Look the message that I receive when running the command: **************************************************************************** *************** checking for png_create_read_struct in -lpng... yes checking for freetype-config... no checking for FT_Init_FreeType in -lfreetype... no configure: WARNING: not found - disabling freetype support checking freetype/freetype.h usability... no checking freetype/freetype.h presence... no checking for freetype/freetype.h... no checking for jpeg_set_defaults in -ljpeg... no checking for XpmReadFileToXpmImage in -lXpm... no ** Configuration summary for gd 2.0.11: Support for PNG library: yes Support for JPEG library: no Support for Freetype 2.x library: no Support for Xpm library: no configure: creating ./config.status config.status: creating Makefile config.status: creating config/Makefile config.status: creating config/gdlib-config config.status: creating test/Makefile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands **************************************************************************** ****************************** Thank you for advanced Hugo ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bernardo at centennialrd.com Mon Mar 24 15:19:05 2003 From: bernardo at centennialrd.com (Jose Bernardo Ortega) Date: Mon, 24 Mar 2003 10:19:05 -0400 Subject: Unsubscribe me Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: From chris.stankaitis at datawire.net Mon Mar 24 15:25:32 2003 From: chris.stankaitis at datawire.net (Chris Stankaitis) Date: Mon, 24 Mar 2003 09:25:32 -0500 Subject: Quick Timeperiod Question In-Reply-To: <3E7703DC.4030901@avedya.com> References: <3E7703DC.4030901@avedya.com> Message-ID: <3E7F155C.40908@datawire.net> Hey there, We have a service which submits passive results back to Nagios via NSCA and it basically does a DB check which monitors if there has been any customer traffic in the last XX amount of time, and is set to page if there has been no traffic, No Traffic USUALLY means that there is a problem with the software and that it needs a kick in the pants, however we do acknowledge that betweeen say 4:30 and 6:00 in the morning it's quite likley that 0 traffic really means 0 transactions. So I tried to setup a custom time period that would send Notification during all times EXCEPT between 4:30 am and 6:00 am when we decided it would be ok not to be notified about situations which more often then not were false alarms (i.e. 0 traffic but software working fine) It shoudln't make a difference but the Cal server is set to GMT and the Nagios Server is set to EST (GMT -5) it is my understanding that the Nagios server uses it's time to define time and ignores what time the passive checks come in... I.E. On Server the passive check is submitted at 3:00am but since the Nagios server's time is 5:00am due to the time difference it will use the notification logic for 5:00am not for the GMT server time that the external server sent the check. I did the following but I am still getting notified 24x7 by the looks of my pager and the lack of sleep I have been getting. Please give me a hand in finding out how I got my logic backwards on this. # 'cal' timeperiod definition define timeperiod{ timeperiod_name cal alias Special Time For Cal Server sunday 00:00-04:30,06:00-24:00 monday 00:00-04:30,06:00-24:00 tuesday 00:00-04:30,06:00-24:00 wednesday 00:00-04:30,06:00-24:00 thursday 00:00-04:30,06:00-24:00 friday 00:00-04:30,06:00-24:00 saturday 00:00-04:30,06:00-24:00 } # define service{ use passive-service host_name calserver.mydomain.com service_description DB-CHECK is_volatile 0 check_period 24x7 max_check_attempts 2 normal_check_interval 2 retry_check_interval 1 contact_groups oncall notification_interval 2 notification_period cal notification_options u,c,r check_command not_fresh } -- Chris ------------------------------------------------------- This SF.net email is sponsored by: Does your code think in ink? You could win a Tablet PC. Get a free Tablet PC hat just for playing. What are you waiting for? http://ads.sourceforge.net/cgi-bin/redirect.pl?micr5043en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pablo.morales at abitab.com.uy Mon Mar 24 15:24:28 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Mon, 24 Mar 2003 11:24:28 -0300 Subject: Cannot load the pages. Message-ID: <009c01c2f211$13ea4040$0229c80a@abtec412> Can someone help me with this please? I've installed nagios in my FreeBSD 4.7 box, I installed it from the ports tree, I also had to install the web server, now I can do a http://localhost/nagios and the main menu it's displayed, I can see the documentation, but If I select another option like system status or something like that , that implies a cgi request, I've get garbage, the only thing readable it's at the en of the page that says, generated by nagios. I tryed to see it as root, using different browsers, It's like when you haven't installed the correct laguage codding support and the web page cannot be read, it loads., but in russian for example :) What's wrong? Bytes ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 15:31:05 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 09:31:05 -0500 (EST) Subject: Unsubscribe me In-Reply-To: <5.1.0.14.0.20030324095122.00b5be58@pop.icnet.com.ve> References: <5.1.0.14.0.20030324095122.00b5be58@pop.icnet.com.ve> Message-ID: > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users Please follow instructions on the website above.. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Kurzer at c-bs.de Mon Mar 24 15:32:24 2003 From: Kurzer at c-bs.de (Matthias Kurzer) Date: Mon, 24 Mar 2003 15:32:24 +0100 Subject: service check intervall In-Reply-To: <3E7F06AF.6090402@conova.com> References: <20030320132000.54028.qmail@web10903.mail.yahoo.com> <3E79D89C.4010908@c-bs.de> <3E7F06AF.6090402@conova.com> Message-ID: <3E7F16F8.5010600@c-bs.de> Moser Wolfgang wrote: > Try to enable following in the nagios.cfg. > > ################### > # ORPHANED SERVICE CHECK OPTION > # This determines whether or not Nagios will periodically > # check for orphaned services. Since service checks are not > # rescheduled until the results of their previous execution > # instance are processed, there exists a possibility that some > # checks may never get rescheduled. This seems to be a rare > # problem and should not happen under normal circumstances. > # If you have problems with service checks never getting > # rescheduled, you might want to try enabling this option. > # Values: 1 = enable checks, 0 = disable checks > > check_for_orphaned_services=1 > ################### > > The explanation is in the sample-nagios.cfg. > I did a simple cut and paste. > > I hope this help you!! Sorry, but it did not solve my problem. But I get a new one. With this option enabled I get the message: Wed Mar 12 17:08:09 2003 Warning: The check of service 'SSH' on host 'quiz' looks like it was orphaned (results never came back). I'm scheduling an immediate check of the service... and after a few minutes I have hundreds of nagios processes, no more memory and a high CPU-Utilisation. Even if I set max_concurrent_checks=50 But I did not find a way to log every check nagios is made. In my logfile is only the line Sun Mar 23 11:04:23 2003 Auto-save of retention data completed successfully. and of course alerts. Maybe I can see then something in the logs. -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Mon Mar 24 15:40:45 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Mon, 24 Mar 2003 15:40:45 +0100 Subject: How to monitor Disk and CPU with SNMP in RH Linux References: Message-ID: <3E7F18ED.5070005@datavis.se> Apan uses standard iod's. It should work on Linux and Windows as well as Cisco. Atul Shrivastava wrote: >Hello all, > >Can anyone have some hands on of monitoring linux boxes using SNMP. >The basic services which need to be monitored are: CPU Load, Disk Space, >Memory Usage, Bandwidth Utilization, Per User Load etc >I have enaled snmpd in one testing linux box, but i don't know how to >configure the object ids for the above services. >Can we make graphs through apan of it........? For router it is possible >then for (linux + windows) boxes, i think that it is also there...... > >If anyone can help me than I am thankful > >Regards and have a nice day, > Atul Shrivastava > Info Structure Services > HCL INFOSYSTEMS LTD. > E - 4,5,6 Sector XI, > Noida - 201301 > Tel: 91-120-2526910,2443013 > > > > > > > > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Kurzer at c-bs.de Mon Mar 24 15:42:35 2003 From: Kurzer at c-bs.de (Matthias Kurzer) Date: Mon, 24 Mar 2003 15:42:35 +0100 Subject: Multiple Nagios processes In-Reply-To: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> References: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> Message-ID: <3E7F195B.6070809@c-bs.de> Lonny Selinger wrote: > I was just wondering if anyone has had an issue with (what seems to be) an excessive > number of nagios processes. I currently am running at around 260 and climbing > slowly. Eventually it takes the load on the machine quite high. The machine is a > linux box and currently is running Netsaint in production and Nagios in test (I'm > working on transitioning Nagios into production right now), and most of the checks > are done via nrpe so they way I have it set up right now is with both running > grabbing information from the same nrpe daemon which is already running on other > machines. > > I'm not sure if that could be the cause but I do know that Netsaint is currently > only sitting at 37 processed and doesn't seem to be causing much impact. > Notifications are dissabled for Nagios right now until I move it into production but > I wanted to verify this behaviour was normal before finishing the transition. No, I think it is not normal. Did nagios made all your checks in the given time? Looks like I have the same problem. But I use nagios with linux (SuSe 8.1, Kernel 2.4.19) too. Maybe that is the problem? -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 15:33:42 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 09:33:42 -0500 (EST) Subject: Multiple Nagios processes In-Reply-To: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> References: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> Message-ID: On Mon, 24 Mar 2003, Lonny Selinger wrote: > Hello all, > > I was just wondering if anyone has had an issue with (what seems to be) an excessive > number of nagios processes. I currently am running at around 260 and climbing > slowly. Eventually it takes the load on the machine quite high. The machine is a > linux box and currently is running Netsaint in production and Nagios in test (I'm > working on transitioning Nagios into production right now), and most of the checks > are done via nrpe so they way I have it set up right now is with both running > grabbing information from the same nrpe daemon which is already running on other > machines. > > I'm not sure if that could be the cause but I do know that Netsaint is currently > only sitting at 37 processed and doesn't seem to be causing much impact. > Notifications are dissabled for Nagios right now until I move it into production but > I wanted to verify this behaviour was normal before finishing the transition. > > Any help/suggestions are apreciated! > > Lonny Selinger LPIC-1 > This is not normal behaviour - the number of nagios processes should vary over time - but nevere consistently increase. Expect for the main daemon - all other processes should die after timeout. Try restarting the whole process famliy - and take a look in the docs about obssessing and reaping. -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 15:45:09 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 09:45:09 -0500 (EST) Subject: How to monitor Disk and CPU with SNMP in RH Linux In-Reply-To: References: Message-ID: On Mon, 24 Mar 2003, Atul Shrivastava wrote: > Hello all, > > Can anyone have some hands on of monitoring linux boxes using SNMP. > The basic services which need to be monitored are: CPU Load, Disk Space, > Memory Usage, Bandwidth Utilization, Per User Load etc > I have enaled snmpd in one testing linux box, but i don't know how to > configure the object ids for the above services. > Can we make graphs through apan of it........? For router it is possible > then for (linux + windows) boxes, i think that it is also there...... > > If anyone can help me than I am thankful > Did you take a look at the commands.cfg that ships with the plugins? look for the command names prefixed with "snmp_" -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Robert.Wagner at wausaubenefits.com Mon Mar 24 16:01:50 2003 From: Robert.Wagner at wausaubenefits.com (Robert Wagner) Date: Mon, 24 Mar 2003 09:01:50 -0600 Subject: NRPE Binaries Message-ID: I'm wondering if anyone can help me out... I've got an old system in our voice networking area running UnixWare 2.1.2, unfortunately with no compiler. Our last monitoring package (of which I'll not mention its name on this list) was in the same boat, but we managed to find someone who had compiled it up. My request: If anybody has compiled up NRPE for a fairly old UnixWare, please let me know.. I'd love to get my hands on a binary. Rob Wagner, Server Support Wausau Benefits, Inc. This communication is intended only for the recipient(s) named above; may be confidential and/or legally privileged; and, must be treated as such in accordance with state and federal laws. If you are not the intended recipient, you are hereby notified that any use of this communication, or any of its contents, is prohibited. If you have received this communication in error, please return it to Robert Wagner and delete the message from your computer system. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Mon Mar 24 16:14:20 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Mon, 24 Mar 2003 09:14:20 -0600 (CST) Subject: Multiple Nagios processes In-Reply-To: References: Message-ID: <53111.24.72.6.129.1048518860.squirrel@webmail.bangtherockstogether.net> > This is not normal behaviour - the number of nagios processes should vary over > time - but nevere consistently increase. Expect for the main daemon - all other > processes should die after timeout. > > Try restarting the whole process famliy - and take a look in the docs about > obssessing and reaping. I think I may have solved this issue. After watching children spawn for a few minutes and at a time when a LOT of checks were being initialized, I noticed that my timeout for remote checks was pretty low. I increased the interval to about double in the the check and watched the next high impact check interval ... the load was considerably low and the number of children (at peak) dropped quite significantly. This seemed kind of odd, I thought increasing the timeout would back up even more children while it waited for a timeout from the plugin, but as it turns out, it takes less time to succeed within 20 seconds then it does to timeout 3 times at 10 seconds. -- Lonny ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Mon Mar 24 16:05:30 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Mon, 24 Mar 2003 09:05:30 -0600 (CST) Subject: Multiple Nagios processes Message-ID: <50460.24.72.6.129.1048518330.squirrel@webmail.bangtherockstogether.net> > No, I think it is not normal. Did nagios made all your checks in the given > time? Looks like I have the same problem. But I use nagios with linux (SuSe > 8.1, Kernel 2.4.19) too. Maybe that is the problem? Well so far at first glance this is what I'm showing for execution times according to nagios: Time Frame Checks Completed <= 1 minute: 72 (15.1%) <= 5 minutes: 396 (83.2%) <= 15 minutes: 475 (99.8%) <= 1 hour: 475 (99.8%) Since program start: 475 (99.8%) so the <=1 minute is sufferring but I'm also not sure the best way to interpret this output ... (real time?, based on check interval? etc). On another side note ... for anyone running Nagios on AIX, Chris Rothecker and myself should be done the new suite of check commands geared for AIX very soon ... we're just doing some slight debugging (apart from this that is) ;) Thanks again for all the help, Lonny ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Kurzer at c-bs.de Mon Mar 24 17:03:13 2003 From: Kurzer at c-bs.de (Matthias Kurzer) Date: Mon, 24 Mar 2003 17:03:13 +0100 Subject: Multiple Nagios processes In-Reply-To: <50460.24.72.6.129.1048518294.squirrel@webmail.bangtherockstogether.net> References: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> <3E7F195B.6070809@c-bs.de> <50460.24.72.6.129.1048518294.squirrel@webmail.bangtherockstogether.net> Message-ID: <3E7F2C41.6050902@c-bs.de> Lonny Selinger wrote: > Well so far at first glance this is what I'm showing for execution times according > to nagios: > > Time Frame Checks Completed > <= 1 minute: 72 (15.1%) > <= 5 minutes: 396 (83.2%) > <= 15 minutes: 475 (99.8%) > <= 1 hour: 475 (99.8%) > Since program start: 475 (99.8%) > > so the <=1 minute is sufferring but I'm also not sure the best way to interpret this > output ... (real time?, based on check interval? etc). I think I got it. I set service_reaper_frequency=1 (before service_reaper_frequency=10) and now there is most times only one nagios prozess and all checks are processed in the given time. But CPU-Utilisation is low as before. <= 1 minute:20 (26.3%) <= 5 minutes:67 (88.2%) <= 15 minutes:75 (98.7%) <= 1 hour:76 (100.0%) Since program start: 76 (100.0%) Look's very good.:-) -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From w.moser at conova.com Mon Mar 24 16:34:42 2003 From: w.moser at conova.com (Moser Wolfgang) Date: Mon, 24 Mar 2003 16:34:42 +0100 Subject: service check intervall References: <20030320132000.54028.qmail@web10903.mail.yahoo.com> <3E79D89C.4010908@c-bs.de> <3E7F06AF.6090402@conova.com> <3E7F16F8.5010600@c-bs.de> Message-ID: <3E7F2592.508@conova.com> Matthias Kurzer wrote: > Moser Wolfgang wrote: > >> Try to enable following in the nagios.cfg. >> >> ################### >> # ORPHANED SERVICE CHECK OPTION >> # This determines whether or not Nagios will periodically >> # check for orphaned services. Since service checks are not >> # rescheduled until the results of their previous execution >> # instance are processed, there exists a possibility that some >> # checks may never get rescheduled. This seems to be a rare >> # problem and should not happen under normal circumstances. >> # If you have problems with service checks never getting >> # rescheduled, you might want to try enabling this option. >> # Values: 1 = enable checks, 0 = disable checks >> >> check_for_orphaned_services=1 >> ################### >> >> The explanation is in the sample-nagios.cfg. >> I did a simple cut and paste. >> >> I hope this help you!! > > > Sorry, but it did not solve my problem. But I get a new one. With this > option enabled I get the message: > > Wed Mar 12 17:08:09 2003 Warning: The check of service 'SSH' on host > 'quiz' looks like it was orphaned (results never came back). I'm > scheduling an immediate check of the service... > This looks ok, Nagios realised that this check is orphaned an as it says , reschedules a new check. You check's may get orphaned every time. Check if the checks work fine at the command-line. > and after a few minutes I have hundreds of nagios processes, no more > memory and a high CPU-Utilisation. Even if I set > > max_concurrent_checks=50 > > But I did not find a way to log every check nagios is made. In my > logfile is only the line > > Sun Mar 23 11:04:23 2003 Auto-save of retention data completed > successfully. > > and of course alerts. > > Maybe I can see then something in the logs. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Emily.Zhou at algonquincollege.com Mon Mar 24 16:15:13 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Mon, 24 Mar 2003 10:15:13 -0500 Subject: Check memory & cpu in Unix References: <1048275831000066d8@imgxs42> <3E7B930E.9EC1429D@algonquincollege.com> <3E7B9A14.6010603@sbcglobal.net> Message-ID: <3E7F2101.96FFD1DE@algonquincollege.com> Hi Sean, I should have told I'm using NRPE to monitor remote unix box, so far check_disk is working as I expected. But I don't like those load (from UPTIME, it's not make much sense) and user check, I'd like to check Cpu and Mem utilization similar data polling from Sar and Vmstat result respectively. I'm not sure how the check_snmp goes, it sounds SNMP isn't that secure, usually it's disabled. I didn't know check_by_ssh can be used for Cpu or Mem check, I only use it to check sshd2 daemon. Could you give me a further clue, thanks. Emily Sean Knox wrote: > You have a few options: > > 1) nagios-statd will check disk, load, proc, swap, users > 2) checks via snmp (and thus check_snmp) > 3) custom scripts on each host checked via check_by_ssh > > I'd opt for #2 or #3 myself. > > Sean > > emily zhou wrote: > > >Hi all, > >Has someone found out the plugins about CPU&Mem checking under Unix? Now I only have check_disk, hope more resources can be monitored. Like check_nt supports lots of checks. > > > >Thanks, > >Emily > > > > > > > >------------------------------------------------------- > >This SF.net email is sponsored by:Crypto Challenge is now open! > >Get cracking and register here for some mind boggling fun and > >the chance of winning an Apple iPod: > >http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > >_______________________________________________ > >Nagios-users mailing list > >Nagios-users at lists.sourceforge.net > >https://lists.sourceforge.net/lists/listinfo/nagios-users > >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > >::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by:Crypto Challenge is now open! > Get cracking and register here for some mind boggling fun and > the chance of winning an Apple iPod: > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0031en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From twebster at daksoft.com Mon Mar 24 17:16:14 2003 From: twebster at daksoft.com (twebster at daksoft.com) Date: Mon, 24 Mar 2003 09:16:14 -0700 Subject: Multiple Nagios processes In-Reply-To: References: Message-ID: I have also had this problem. When I issue /etc/init.d/nagios stop, it sometime never stop all processes, so I have to kill the remain processes. So, when I issue a restart, the nagios process will gradully increase in number and worse yet, won't read any new config changes in. Tony |---------+----------------------------------------> | | Subhendu Ghosh | | | | | | Sent by: | | | nagios-users-admin at lists.sour| | | ceforge.net | | | | | | | | | 03/24/2003 07:33 AM | |---------+----------------------------------------> >------------------------------------------------------------------------------------------------------------------------------| | | | To: nagios-users at lists.sourceforge.net | | cc: | | Subject: Re: [Nagios-users] Multiple Nagios processes | >------------------------------------------------------------------------------------------------------------------------------| On Mon, 24 Mar 2003, Lonny Selinger wrote: > Hello all, > > I was just wondering if anyone has had an issue with (what seems to be) an excessive > number of nagios processes. I currently am running at around 260 and climbing > slowly. Eventually it takes the load on the machine quite high. The machine is a > linux box and currently is running Netsaint in production and Nagios in test (I'm > working on transitioning Nagios into production right now), and most of the checks > are done via nrpe so they way I have it set up right now is with both running > grabbing information from the same nrpe daemon which is already running on other > machines. > > I'm not sure if that could be the cause but I do know that Netsaint is currently > only sitting at 37 processed and doesn't seem to be causing much impact. > Notifications are dissabled for Nagios right now until I move it into production but > I wanted to verify this behaviour was normal before finishing the transition. > > Any help/suggestions are apreciated! > > Lonny Selinger LPIC-1 > This is not normal behaviour - the number of nagios processes should vary over time - but nevere consistently increase. Expect for the main daemon - all other processes should die after timeout. Try restarting the whole process famliy - and take a look in the docs about obssessing and reaping. -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From slartibartfast at awardsforfjords.com Mon Mar 24 20:19:23 2003 From: slartibartfast at awardsforfjords.com (Todd A. Green) Date: 24 Mar 2003 13:19:23 -0600 Subject: Issue with not having $ARG?$ in host check commands Message-ID: <1048533563.21754.15.camel@desktop> I've run into a circumstance where I need to be able to pass arguments to a host check command. I'm doing host check commands on firewall(s). I can ping the internal interface, but have to use SNMP to check the status of the external one. This means that the host check command for the external interface has to check the status of the interface using the IP address of the internal interface. Since host check commands cannot accept arguments I would have to write a custom host check command for each instance of this. I have additional (and numerous) applications of this same logic relating to switch interfaces so a scalable solution is preferred. 1. I'm wondering why $ARG?$ aren't available to host check commands. 2. A scalable way around the issue. Thanks -- Todd A. Green ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Mon Mar 24 20:46:43 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Mon, 24 Mar 2003 16:46:43 -0300 Subject: status map error Message-ID: I upgraded Nagios 1.0b6 to 1.0 with support to GD library (PNG and JPEG) The "3-D status map" is work, but the "Status Map", "Reporting - Trends" and "Reporting - Alert Histogram" doesn't work. My question is....What I need to do ? When select "Status Map" I have to receive the following error : **************************************************************************** ************** Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. **************************************************************************** ************** Thank you. Hugo ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tagreen at mhsnetworks.net Mon Mar 24 21:09:54 2003 From: tagreen at mhsnetworks.net (Todd A. Green) Date: 24 Mar 2003 14:09:54 -0600 Subject: statusmap question Message-ID: <1048536593.21758.24.camel@desktop> Didn't see this in the FAQ, if the answer lies elsewhere please point it out. In the Status Map CGI using the Circular (Marked Up) layout the edges of the circles are being chopped off. I've attempted to change the canvas_width and canvas_height parameters to no avail. Suggestions. -- Todd A. Green Managed Hosting Soutions, Inc. ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mandrade at sao-co.br.dhl.com Mon Mar 24 21:02:02 2003 From: mandrade at sao-co.br.dhl.com (Marcel Thimm Andrade) Date: Mon, 24 Mar 2003 17:02:02 -0300 Subject: CHECK_NRPE: Socket timeout after 10 seconds Message-ID: <5.1.0.14.0.20030324165957.00a4ba50@saoco> I am using nrpe under HP-UX 10.20, some Services are getting the folloing Status Information : CHECK_NRPE: Socket timeout after 10 seconds Where do I set up this to timeouts grater than 10 seconds ? tks Marcel Andrade ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nny at questionsleep.net Mon Mar 24 21:32:51 2003 From: nny at questionsleep.net (nny) Date: Mon, 24 Mar 2003 14:32:51 -0600 Subject: check_by_ssh troubles In-Reply-To: References: Message-ID: <000001c2f244$9b523870$6901a8c0@blister> how are you calling that service check from your services.cfg or whatever file you have specified it in? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Andy Harrison Sent: Monday, March 24, 2003 2:24 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] check_by_ssh troubles -----BEGIN PGP SIGNED MESSAGE----- Any idea why this works: (2)[nagios] [~] > /usr/local/libexec/nagios/check_by_ssh -H bsd.nachoz.com -C '/usr/local/libexec/nagios/check_disk -w 15% -c 5% -m /' DISK OK - [879406 kB (93%) free on /] But nagios simply shows status "Warning!" and status information "Aborted by user!" I'm definitely testing it as the nagios user. I can see that the process is running as nagios: (7)[nagios] [~] > ps -uax | grep nagios.cfg | grep -v grep nagios 4406 0.0 0.2 2360 2096 ?? Ss Wed04PM 4:46.08 /usr/local/bin/nagios -d /usr/local/etc/nagios/nagios.cfg and I can definitely log in without a pw from the nagios server when using the nagios login: (8)[nagios] [~] > ssh bsd.nachoz.com Last login: Wed Mar 19 16:14:11 2003 from xxxxxxxxxxxx Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RELEASE (ANDY) #0: Mon Feb 17 00:09:28 EST 2003 Welcome to FreeBSD! Before seeking technical support, please use the following resources: o Security advisories and updated errata information for all releases are at http://www.FreeBSD.org/releases/ - always consult the ERRATA section for your release first as it's updated frequently. o The Handbook and FAQ documents are at http://www.FreeBSD.org/ and, along with the mailing lists, can be searched by going to http://www.FreeBSD.org/search/. If the doc distribution has been installed, they're also available formatted in /usr/share/doc. If you still have a question or problem, please take the output of `uname -a', along with any relevant error messages, and email it as a question to the questions at FreeBSD.org mailing list. If you are unfamiliar with FreeBSD's directory layout, please refer to the hier(7) man page. If you are not familiar with man pages, type `man man'. You may also use sysinstall(8) to re-enter the installation and configuration utility. Edit /etc/motd to change this login announcement. > Any clues? ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPn9pblPEkLgodAWVAQHJjQP+L2e3Utn3dw3H1iG47SYQycHFu6w0tyrb 7IFq+BLRzBub0spIRskd1hvwjvrH/Wsclz+DLto6drOEtnmcYzLBt/OmkFD+OIKl 00h2DR+yyfLw/dPtIPExoVGP+bAcKrkC9WY8RZqyQT8DhHWR4l09LZkPg2qH67bL 3rI9esNrDjQ= =/EsH -----END PGP SIGNATURE----- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Mon Mar 24 21:24:15 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Mon, 24 Mar 2003 15:24:15 -0500 (EST) Subject: check_by_ssh troubles Message-ID: -----BEGIN PGP SIGNED MESSAGE----- Any idea why this works: (2)[nagios] [~] > /usr/local/libexec/nagios/check_by_ssh -H bsd.nachoz.com -C '/usr/local/libexec/nagios/check_disk -w 15% -c 5% -m /' DISK OK - [879406 kB (93%) free on /] But nagios simply shows status "Warning!" and status information "Aborted by user!" I'm definitely testing it as the nagios user. I can see that the process is running as nagios: (7)[nagios] [~] > ps -uax | grep nagios.cfg | grep -v grep nagios 4406 0.0 0.2 2360 2096 ?? Ss Wed04PM 4:46.08 /usr/local/bin/nagios -d /usr/local/etc/nagios/nagios.cfg and I can definitely log in without a pw from the nagios server when using the nagios login: (8)[nagios] [~] > ssh bsd.nachoz.com Last login: Wed Mar 19 16:14:11 2003 from xxxxxxxxxxxx Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-RELEASE (ANDY) #0: Mon Feb 17 00:09:28 EST 2003 Welcome to FreeBSD! Before seeking technical support, please use the following resources: o Security advisories and updated errata information for all releases are at http://www.FreeBSD.org/releases/ - always consult the ERRATA section for your release first as it's updated frequently. o The Handbook and FAQ documents are at http://www.FreeBSD.org/ and, along with the mailing lists, can be searched by going to http://www.FreeBSD.org/search/. If the doc distribution has been installed, they're also available formatted in /usr/share/doc. If you still have a question or problem, please take the output of `uname -a', along with any relevant error messages, and email it as a question to the questions at FreeBSD.org mailing list. If you are unfamiliar with FreeBSD's directory layout, please refer to the hier(7) man page. If you are not familiar with man pages, type `man man'. You may also use sysinstall(8) to re-enter the installation and configuration utility. Edit /etc/motd to change this login announcement. > Any clues? ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPn9pblPEkLgodAWVAQHJjQP+L2e3Utn3dw3H1iG47SYQycHFu6w0tyrb 7IFq+BLRzBub0spIRskd1hvwjvrH/Wsclz+DLto6drOEtnmcYzLBt/OmkFD+OIKl 00h2DR+yyfLw/dPtIPExoVGP+bAcKrkC9WY8RZqyQT8DhHWR4l09LZkPg2qH67bL 3rI9esNrDjQ= =/EsH -----END PGP SIGNATURE----- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Mon Mar 24 21:49:51 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Mon, 24 Mar 2003 15:49:51 -0500 (EST) Subject: check_by_ssh troubles In-Reply-To: <000001c2f244$9b523870$6901a8c0@blister> References: <000001c2f244$9b523870$6901a8c0@blister> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 24-Mar-2003, nny wrote message "RE: [Nagios-users] check_by_ssh troubles" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > how are you calling that service check from your services.cfg or > whatever file you have specified it in? > Like so: services.cfg: define service { host_name bsd.nachoz.com service_description ssh_disk_root check_command ssh_disk_root use generic-service max_check_attempts 3 normal_check_interval 30 retry_check_interval 1 check_period 24x7 notification_interval 120 notification_period workhours notification_options w,u,c,r contact_groups system-ops } checkcommands.cfg define command { command_name ssh_disk_root command_line /usr/local/libexec/nagios/check_by_ssh -H $HOSTADDRESS$ -C '/usr/local/libexec/nagios/check_disk -w 15% -c 5% -m /' } > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Andy > Harrison > Sent: Monday, March 24, 2003 2:24 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_by_ssh troubles > > > -----BEGIN PGP SIGNED MESSAGE----- > > Any idea why this works: > > (2)[nagios] [~] > /usr/local/libexec/nagios/check_by_ssh -H > bsd.nachoz.com -C '/usr/local/libexec/nagios/check_disk -w 15% -c 5% -m > /' DISK OK - [879406 kB (93%) free on /] > > > But nagios simply shows status "Warning!" and status information > "Aborted by > user!" > > I'm definitely testing it as the nagios user. I can see that the > process is running as nagios: > > (7)[nagios] [~] > ps -uax | grep nagios.cfg | grep -v grep > nagios 4406 0.0 0.2 2360 2096 ?? Ss Wed04PM 4:46.08 > /usr/local/bin/nagios -d /usr/local/etc/nagios/nagios.cfg > > > and I can definitely log in without a pw from the nagios server when > using the nagios login: (8)[nagios] [~] > ssh bsd.nachoz.com Last login: > Wed Mar 19 16:14:11 2003 from xxxxxxxxxxxx Copyright (c) 1980, 1983, > 1986, 1988, 1990, 1991, 1993, 1994 > The Regents of the University of California. All rights > reserved. > > FreeBSD 5.0-RELEASE (ANDY) #0: Mon Feb 17 00:09:28 EST 2003 > > Welcome to FreeBSD! > > Before seeking technical support, please use the following resources: > > o Security advisories and updated errata information for all releases > are > at http://www.FreeBSD.org/releases/ - always consult the ERRATA > section > for your release first as it's updated frequently. > > o The Handbook and FAQ documents are at http://www.FreeBSD.org/ and, > along with the mailing lists, can be searched by going to > http://www.FreeBSD.org/search/. If the doc distribution has > been installed, they're also available formatted in /usr/share/doc. > > If you still have a question or problem, please take the output of > `uname -a', along with any relevant error messages, and email it as a > question to the questions at FreeBSD.org mailing list. If you are > unfamiliar with FreeBSD's directory layout, please refer to the hier(7) > man page. If you are not familiar with man pages, type `man man'. > > You may also use sysinstall(8) to re-enter the installation and > configuration utility. Edit /etc/motd to change this login > announcement. > >> > > > > > Any clues? > > > > > ~~ > Andy Harrison > ah##@httpsite.com > ICQ: 123472 AIM/Y!: AHinMaine > homepage: http://www.nachoz.com > > -----BEGIN PGP SIGNATURE----- > Version: PGP 6.5.8 > > iQCVAwUBPn9pblPEkLgodAWVAQHJjQP+L2e3Utn3dw3H1iG47SYQycHFu6w0tyrb > 7IFq+BLRzBub0spIRskd1hvwjvrH/Wsclz+DLto6drOEtnmcYzLBt/OmkFD+OIKl > 00h2DR+yyfLw/dPtIPExoVGP+bAcKrkC9WY8RZqyQT8DhHWR4l09LZkPg2qH67bL > 3rI9esNrDjQ= > =/EsH > -----END PGP SIGNATURE----- > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPn9vblPEkLgodAWVAQFgegP/Sl22trlIy0m8OeVaNYBFa+n80z8tRuxd 7eP/YICrW0bCsPXCnIjefS9vfI4wrhrVwgH2BZUGx3M0nNJjjgzrETYbft/I6qqY Udsf/Y7Jh18hO39D8O2a5JSsdozLDfORygQ6QnM8Kj3jX4jW2oOfZkZgbZNOLIje IoXvMbFaB5E= =yo2l -----END PGP SIGNATURE----- ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sean.mcavoy at megawheels.com Mon Mar 24 22:05:34 2003 From: sean.mcavoy at megawheels.com (Sean McAvoy) Date: 24 Mar 2003 16:05:34 -0500 Subject: Service notifications not being sent (host notifications are) Message-ID: <1048539934.1011.3.camel@tech03.toronto.drive-megawheels.net> Hello, I'm having problems getting service alerts. I've attached my configs for 1 service. I've got 2 distributed servers, and one central that does all notification (but no active checks, just host checks). I'm receiving host notifications, but no service ones. The services are in a non-ok state, host notifications is turned on, as well as service notifications. I've gone over the filter that decides whether to send out a notification, and everything *seems* ok. I've attached a service, as well as the template it uses. Any ideas where I can look to see why they're not being sent? Any help would be appreciated! -Sean -------------- next part -------------- define service{ name client-low active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 1 freshness_threshold 2100 check_command notify-by-email notifications_enabled 1 event_handler_enabled 0 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 max_check_attempts 3 normal_check_interval 15 retry_check_interval 2 contact_groups technical-support check_period 24x7 notification_interval 30 notification_period workhours notification_options w,c,r register 0 } -------------- next part -------------- define service{ use client-low host_name vpn.clienta service_description Office - clienta tunnel check_command check_ipsec_tunnel!192.168.109.1 } From sghosh at sghosh.org Mon Mar 24 22:26:06 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 16:26:06 -0500 (EST) Subject: CHECK_NRPE: Socket timeout after 10 seconds In-Reply-To: <5.1.0.14.0.20030324165957.00a4ba50@saoco> References: <5.1.0.14.0.20030324165957.00a4ba50@saoco> Message-ID: On Mon, 24 Mar 2003, Marcel Thimm Andrade wrote: > I am using nrpe under HP-UX 10.20, some Services are getting the folloing > Status Information : > CHECK_NRPE: Socket timeout after 10 seconds > Where do I set up this to timeouts grater than 10 seconds ? > tks > Marcel Andrade -h is your friend -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 22:25:23 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 16:25:23 -0500 (EST) Subject: check_ntp -> (No output!) - Solved In-Reply-To: <104854099500004f78@imgxs42> References: <104854099500004f78@imgxs42> Message-ID: A properly compiled and installed plugin should have the lib set automatically. You shouldn't have to do it separately. -sg On Mon, 24 Mar 2003, Babak Pasdar wrote: > > OK it ended up being the PERLLIB environment setting: > > I had to set the following environment setting for utils.pm: > > PERLLIB=/usr/local/nagios/libexec/ > export PERLLIB > > With this check_ntp works fine. > > Thanks for everyone's help. > > Babak > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pablo.morales at abitab.com.uy Mon Mar 24 23:27:06 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Mon, 24 Mar 2003 19:27:06 -0300 Subject: cgi Message-ID: <00fb01c2f254$8032c220$0229c80a@abtec412> Can someone help me with this please? I've installed nagios in my FreeBSD 4.7 box, I installed it from the ports tree, I also had to install the web server, now I can do a http://localhost/nagios and the main menu it's displayed, I can see the documentation, but If I select another option like system status or something like that , that implies a cgi request, I've get garbage, the only thing readable it's at the en of the page that says, generated by nagios. I tryed to see it as root, using different browsers, It's like when you haven't installed the correct laguage codding support and the web page cannot be read, it loads., but in russian for example :) What's wrong? Bytes ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jason at visionxtreme.net Mon Mar 24 23:52:32 2003 From: jason at visionxtreme.net (Jason Whitson) Date: Mon, 24 Mar 2003 16:52:32 -0600 Subject: No /etc directory created Message-ID: <002701c2f258$0e2cdc20$ac0110ac@x172admin> RedHat 7.3 Nagios 1.0 I have reinstalled 2 times and even re-downloaded. The /etc dir in /usr/local/nagios never get's created, but everything else does. I have the newest plugins, and can get the "home" screen via http://localhost/nagios/ Every page screams that it cannot find the /etc dir. ideas? Jason Whitson VisionXtreme Computers www.visionxtreme.net ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Mon Mar 24 23:54:34 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Mon, 24 Mar 2003 14:54:34 -0800 Subject: Distributed host checks Message-ID: <951EA7BE-5E4B-11D7-9F06-000A95775192@med.ge.com> Hi, Does anyone have a good strategy for doing distributed host checks? In my situation, I have a central Nagios server that accepts passive checks from distributed Nagios servers that are located in other networks. There is absolutely no way that the central Nagios server can directly access the hosts that are monitored by the distributed servers, not even for ping. I have service checks working well using NSCA to feed passive service check results to the central server. However, I can't come up with a good way to do host checking in this circumstance. Obviously I could use NRPE on my distributed servers to run ping commands, but due to the fact that I can't pass macros through to an NRPE command, I would need to define a command for each and every host I monitor. I would really like to avoid that if at all possible. What are some things that other people are using in this situation? Right now I just have host-checking off, but it would be nice to check the host and get one notification rather than one for each service on the host. Chad White Systems Administrator GE Medical Systems - IT chad.white at med.ge.com Visit us at http://www.gemedicalsystems.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rburnson at cps.k12.il.us Tue Mar 25 00:08:20 2003 From: rburnson at cps.k12.il.us (Burnson, Richard) Date: Mon, 24 Mar 2003 17:08:20 -0600 Subject: No /etc directory created Message-ID: You need to run "make install-config" to install the sample configs (and therefore create the etc directory). Otherwise simply create the directory manually and create your own configs. Richard -----Original Message----- From: Jason Whitson [mailto:jason at visionxtreme.net] Sent: Monday, March 24, 2003 4:53 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] No /etc directory created RedHat 7.3 Nagios 1.0 I have reinstalled 2 times and even re-downloaded. The /etc dir in /usr/local/nagios never get's created, but everything else does. I have the newest plugins, and can get the "home" screen via http://localhost/nagios/ Every page screams that it cannot find the /etc dir. ideas? Jason Whitson VisionXtreme Computers www.visionxtreme.net ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Tue Mar 25 00:05:51 2003 From: mpowell at ena.com (Marc Powell) Date: Mon, 24 Mar 2003 17:05:51 -0600 Subject: cgi Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED75A@mismail.ena.com> It sounds like possibly your web server doesn't know that it's supposed to RUN cgi's and is just displaying it instead? What web server is running on your machine? If it's apache, you might want to look for the following in your httpd.conf: LoadModule cgi_module modules/mod_cgi.so AddModule mod_cgi.c AddHandler cgi-script .cgi AddHandler cgi-script .pl This is in addition to the directions for setting up the web interface located at http://nagios.sourceforge.net/docs/1_0/installweb.html. You'll need to restart apache if you make any modifications to the conf file of course. -- Marc > -----Original Message----- > From: Pablo Morales [mailto:pablo.morales at abitab.com.uy] > Sent: Monday, March 24, 2003 4:27 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] cgi > > Can someone help me with this please? > > > I've installed nagios in my FreeBSD 4.7 box, I installed it from the ports > tree, I also had to install the web server, now I can do a > http://localhost/nagios and the main menu it's displayed, I can see the > documentation, but If I select another option like system status or > something like that , that implies a cgi request, I've get garbage, the > only thing readable it's at the en of the page that says, generated by > nagios. I tryed to see it as root, using different browsers, It's like > when > you haven't installed the correct laguage codding support and the web page > cannot > be read, it loads., but in russian for example :) > > What's wrong? > > Bytes > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Tue Mar 25 00:09:07 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Mon, 24 Mar 2003 15:09:07 -0800 Subject: check_http via proxy? Message-ID: <9D3B4012-5E4D-11D7-9F06-000A95775192@med.ge.com> Also, does anyone know of a way I could do an http check via a proxy server? My goal is to check our websites from the outside. The way our network is laid out, the only way I can do that is via a proxy server. I realize it sounds bad but the proxy does basically no caching. I am currently doing this with Big Brother (which I am migrating away from due to the SO much nicer notification options provided by Nagios, BTW) and other than spurious alerts when the proxy servers go down it works fine. thx, Chad White Systems Administrator GE Medical Systems - IT chad.white at med.ge.com Visit us at http://www.gemedicalsystems.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark at woodstream.net Tue Mar 25 00:04:48 2003 From: mark at woodstream.net (mark) Date: Mon, 24 Mar 2003 18:04:48 -0500 (EST) Subject: Distributed host checks In-Reply-To: <951EA7BE-5E4B-11D7-9F06-000A95775192@med.ge.com> References: <951EA7BE-5E4B-11D7-9F06-000A95775192@med.ge.com> Message-ID: If you get the CVS version of NPRE (2.something) it accepts arguments. I use this setup for doing host checks and it works just fine. I just pass the $HOSTADDRESS$ as an argument to the NPRE check. That way I only have to have one command (check_host) defined on my distributed server. Mark On Mon, 24 Mar 2003, White, Chad (MED) wrote: > Hi, > Does anyone have a good strategy for doing distributed host checks? > > In my situation, I have a central Nagios server that accepts passive > checks from distributed Nagios servers that are located in other > networks. There is absolutely no way that the central Nagios server > can directly access the hosts that are monitored by the distributed > servers, not even for ping. > > I have service checks working well using NSCA to feed passive service > check results to the central server. However, I can't come up with a > good way to do host checking in this circumstance. Obviously I could > use NRPE on my distributed servers to run ping commands, but due to the > fact that I can't pass macros through to an NRPE command, I would need > to define a command for each and every host I monitor. I would really > like to avoid that if at all possible. > > What are some things that other people are using in this situation? > Right now I just have host-checking off, but it would be nice to check > the host and get one notification rather than one for each service on > the host. > > Chad White > Systems Administrator > GE Medical Systems - IT > chad.white at med.ge.com > Visit us at http://www.gemedicalsystems.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Tue Mar 25 00:18:28 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Mon, 24 Mar 2003 15:18:28 -0800 Subject: Distributed host checks In-Reply-To: References: Message-ID: On Monday, March 24, 2003, at 03:04 PM, mark wrote: > If you get the CVS version of NPRE (2.something) it accepts arguments. > I > use this setup for doing host checks and it works just fine. I just > pass > the $HOSTADDRESS$ as an argument to the NPRE check. That way I only > have > to have one command (check_host) defined on my distributed server. > > That's great, I'll give that a try. NRPE accepting arguments would solve a few other problems for me as well! thx, Chad White Systems Administrator GE Medical Systems - IT chad.white at med.ge.com Visit us at http://www.gemedicalsystems.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Tue Mar 25 00:28:32 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 18:28:32 -0500 (EST) Subject: No /etc directory created In-Reply-To: <002701c2f258$0e2cdc20$ac0110ac@x172admin> References: <002701c2f258$0e2cdc20$ac0110ac@x172admin> Message-ID: On Mon, 24 Mar 2003, Jason Whitson wrote: > RedHat 7.3 > Nagios 1.0 > > I have reinstalled 2 times and even re-downloaded. The /etc dir in > /usr/local/nagios never get's created, but everything else does. I have the > newest plugins, and can get the "home" screen via http://localhost/nagios/ > > Every page screams that it cannot find the /etc dir. > > ideas? > > did you run "make install-config" -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Tue Mar 25 00:34:06 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 18:34:06 -0500 (EST) Subject: Distributed host checks In-Reply-To: <951EA7BE-5E4B-11D7-9F06-000A95775192@med.ge.com> References: <951EA7BE-5E4B-11D7-9F06-000A95775192@med.ge.com> Message-ID: On Mon, 24 Mar 2003, White, Chad (MED) wrote: > Hi, > Does anyone have a good strategy for doing distributed host checks? > > In my situation, I have a central Nagios server that accepts passive > checks from distributed Nagios servers that are located in other > networks. There is absolutely no way that the central Nagios server > can directly access the hosts that are monitored by the distributed > servers, not even for ping. > > I have service checks working well using NSCA to feed passive service > check results to the central server. However, I can't come up with a > good way to do host checking in this circumstance. Obviously I could > use NRPE on my distributed servers to run ping commands, but due to the > fact that I can't pass macros through to an NRPE command, I would need > to define a command for each and every host I monitor. I would really > like to avoid that if at all possible. > > What are some things that other people are using in this situation? > Right now I just have host-checking off, but it would be nice to check > the host and get one notification rather than one for each service on > the host. > The current NRPE from CVS can support arguments and ssl connections ;) -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Tue Mar 25 00:43:42 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Tue, 25 Mar 2003 00:43:42 +0100 Subject: No /etc directory created In-Reply-To: <002701c2f258$0e2cdc20$ac0110ac@x172admin>; from jason@visionxtreme.net on Mon, Mar 24, 2003 at 04:52:32PM -0600 References: <002701c2f258$0e2cdc20$ac0110ac@x172admin> Message-ID: <20030325004342.F1545@hpce.nec.com> On Mon, Mar 24, 2003 at 04:52:32PM -0600, Jason Whitson wrote: > RedHat 7.3 > Nagios 1.0 > > I have reinstalled 2 times and even re-downloaded. The /etc dir in > /usr/local/nagios never get's created, but everything else does. I have the > newest plugins, and can get the "home" screen via http://localhost/nagios/ > > Every page screams that it cannot find the /etc dir. > > ideas? less INSTALLING [...] 1) If you want, you can install the sample config files into the {prefix}/etc directory with the following command: make install-config [...] Rasmus ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Tue Mar 25 01:08:52 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Mon, 24 Mar 2003 21:08:52 -0300 Subject: RES: WAP Interface In-Reply-To: <104854145700004fca@imgxs42> References: <104854145700004fca@imgxs42> Message-ID: I can't help about your palm phone and/or client, but to assure your Nagios WAP Server is ok, you may try this link: http://www.gelon.net Go there and put your full WAP URL and it will open a WAP emulator. It's what I use to see if everything is working fine... HTH, Sandro Merg Vaz -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Babak Pasdar Enviada em: segunda-feira, 24 de mar?o de 2003 18:31 Para: nagios-users at lists.sourceforge.net Assunto: [Nagios-users] WAP Interface I am trying to access the WAP interface. I connect to the: http://host/nagios/cgi-bin/statuswml.cgi however after I authenticate I get raw html or wml to my phone. I am using eudoraweb client on a Kyocera Palm Phone. Thanks Babak ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.463 / Virus Database: 262 - Release Date: 17/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.463 / Virus Database: 262 - Release Date: 17/3/2003 ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Tue Mar 25 01:41:26 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 24 Mar 2003 18:41:26 -0600 Subject: OT: looking for h/w, s/w inventory tracking system Message-ID: I'm wondering if anyone can recommend an inventory tracking system (and/or discourage me from considering a particular solution in this realm). More than just being able to have someone insert values into a web form, I'm very interested in something which can be scripted (on Solaris, Linux, Windows) to run local queries then send the results to a central server. The central server would then be able to create reports based on said data. Being a Nagiosphile, it would be great if Nagios could be extended to do this. I mention this so that I don't hear protests such as, "Well why not use Nagios?" I suspect that if this ability were created, the coupling could easily be quite loose. For one thing, Nagios plugins return a brief line of text, which is quite different from, say, 'prtdiag' under Solaris. Keeping versions of key files might be a plus, too. A quick browse of Sourceforge and Freshmeat revealed a number of web-based inventory tracking systems, but there's no sense of any sort of automated collection of data. If an admin installs a new package on one host, it would be nice to have a report which says that it's missing on other hosts. And being able to limit the report based on certain criteria, such as hardware (eg, E4500) would be a plus. Some combination of Perl/PHP/sh/ksh/bash for the majority of the executables would be a plus, or at least the ability to add extra reports without any grief. Suggestions? jc ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bpasdar at IGXGlobal.com Mon Mar 24 22:30:57 2003 From: bpasdar at IGXGlobal.com (Babak Pasdar) Date: Mon, 24 Mar 2003 16:30:57 -0500 Subject: WAP Interface References: <1048504724.15280.5.camel@miles.debisschop.net> Message-ID: <104854145700004fca@imgxs42> I am trying to access the WAP interface. I connect to the: http://host/nagios/cgi-bin/statuswml.cgi however after I authenticate I get raw html or wml to my phone. I am using eudoraweb client on a Kyocera Palm Phone. Thanks Babak ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tstocking at insynccom.com Mon Mar 24 22:31:03 2003 From: tstocking at insynccom.com (Thomas Stocking) Date: Mon, 24 Mar 2003 13:31:03 -0800 Subject: Escalations result in long delay of notifications Message-ID: <000d01c2f24c$acbe3ca0$6601a8c0@olympus.insynccom.com> Hi all, Using Nagios 1.0b6, I have an installation with 123 hosts, 487 active checks, and some 1600 escalations, all using an interval of 10 minutes. CPU is a dual Xenon at 2 GHz, and a gig of RAM. Running RH Linux 7.3. No issues with the OS or Nagios in general, but... The issue I'm having is that when I enable escalations, the time to notifications goes from 10 minutes to 35 (random delays from 0 -25 minutes). Especially long delays noted on cusp of escalations (that is, when I go from one stanza to another). Anyone have a suggestion? I'm getting the upgrade to 1.0 ready, but I am wondering if anyone had a place to look? Docs do not seem to suggest my config would be a problem... Thomas Thomas Stocking, GCIA, GCIH Captech Partners thomas at captech.com http://www.captech.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From kimj at aot.com.au Tue Mar 25 05:16:49 2003 From: kimj at aot.com.au (itataot) Date: 25 Mar 2003 04:16:49 -0000 Subject: Statusmap background and icons not loading In-Reply-To: <20030308003229.47577.qmail@web14107.mail.yahoo.com> References: <20030308003229.47577.qmail@web14107.mail.yahoo.com> Message-ID: <20030325041649.1216.qmail@pod-163.dolphin-server.co.uk> I believe the image you use as a background should be in *.gd2 format....don't know bout the icons, I'm struggling with this too. The page source shows that the statusmap.cgi is trying to use unknown.gif ...I have been unsuccessful so far.....make sure you have libgd libgd-devel libpng libpng-devel libjpeg libjpeg-devel zlib zlib-devel ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Mon Mar 24 22:07:23 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Mon, 24 Mar 2003 15:07:23 -0600 (CST) Subject: CHECK_NRPE: Socket timeout after 10 seconds In-Reply-To: <5.1.0.14.0.20030324165957.00a4ba50@saoco> References: <5.1.0.14.0.20030324165957.00a4ba50@saoco> Message-ID: <41948.24.72.6.129.1048540043.squirrel@webmail.bangtherockstogether.net> > I am using nrpe under HP-UX 10.20, some Services are getting the folloing Status > Information : > CHECK_NRPE: Socket timeout after 10 seconds > Where do I set up this to timeouts grater than 10 seconds ? > tks > Marcel Andrade You can change this in the command definition. Running check_nrpe without any options will give you the options available to you. Depending on the timeout you want ... you'll want something like this in your checkcommands.cfg: ; put a time out of 20 on check_nrpe for checks that take a little longer define command { command_name check_remote command_line /usr/local/nagios/libexec/check_nrpe $HOSTADDRESS$ -p 5552 -to 20 -c $ARG1$ } '-to' being the option for timeout -- Lonny Selinger LPIC-1 ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 24 22:21:46 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 24 Mar 2003 16:21:46 -0500 (EST) Subject: Issue with not having $ARG?$ in host check commands In-Reply-To: <1048533563.21754.15.camel@desktop> References: <1048533563.21754.15.camel@desktop> Message-ID: On 24 Mar 2003, Todd A. Green wrote: > I've run into a circumstance where I need to be able to pass arguments > to a host check command. > > I'm doing host check commands on firewall(s). I can ping the internal > interface, but have to use SNMP to check the status of the external > one. This means that the host check command for the external interface > has to check the status of the interface using the IP address of the > internal interface. Since host check commands cannot accept arguments I > would have to write a custom host check command for each instance of > this. I have additional (and numerous) applications of this same logic > relating to switch interfaces so a scalable solution is preferred. > > 1. I'm wondering why $ARG?$ aren't available to host check commands. > 2. A scalable way around the issue. > > Thanks > > I *think* $ARG?$ is available in post 1.0 but the code is not stable. Why don't you define the check of the external interface as a service and check the internal interface as the host check ? Firewall is up if the internal interface responds (machine is good) External interface down - service alert for the firewall admins. -- -sg ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bpasdar at IGXGlobal.com Mon Mar 24 22:23:15 2003 From: bpasdar at IGXGlobal.com (Babak Pasdar) Date: Mon, 24 Mar 2003 16:23:15 -0500 Subject: check_ntp -> (No output!) - Solved References: Message-ID: <104854099500004f78@imgxs42> OK it ended up being the PERLLIB environment setting: I had to set the following environment setting for utils.pm: PERLLIB=/usr/local/nagios/libexec/ export PERLLIB With this check_ntp works fine. Thanks for everyone's help. Babak Subhendu Ghosh wrote: > from the nagios source "./configure --help" > > > On Fri, 21 Mar 2003, Babak Pasdar wrote: > > > > > Can anyone offer me pointers on how to setup Nagios Debug? > > > > > > > > > > A while back I experienced a similar problem with a newer set of CVS > > > > plugins when I got the same problem and was only able to resolve it by > > > > replacing the check_ntp with an older version. Details are provided > > > > below. > > > > > > Between versions - make sure that your command.cfg syntax is same as the > one supported by the latest version. > > Some plugins only accept POSIX arguments where as older versions might > have accepted postional arguments. > > > -sg > > -- Babak Pasdar Founder/CTO IGX Global 389 Main St. Hackensack, NJ 07601 www.igxglobal.com (201) 498-0555 ext. 2205 The electronic message that you have received and any attachments are solely intended for the use of the addressee(s) and may contain information that is confidential. If you receive this email in error, please advise us by responding to NOC at igxglobal.com. You are required to delete the contents and destroy any copies immediately. IGX Global is not liable for the views expressed in this electronic message or for the consequences of any computer viruses that may be unknowingly transmitted within this message. This electronic message is also subject to standard copyright/ownership laws. It is not intended to be reproduced, or re-transmitted without the consent of the originator. www.igxglobal.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jens.Bergmann at nordCom.net Tue Mar 25 10:26:28 2003 From: Jens.Bergmann at nordCom.net (Jens.Bergmann at nordCom.net) Date: Tue, 25 Mar 2003 10:26:28 +0100 Subject: AW: Proces Nagios Message-ID: <3B9B6F9AD30D3040AD5541A1D005D98710DF40@nc-mail2.in.nordcom.net> Hi, > When i run nagios, i have 83 processes. IS it normal? Did you limit the number of maximum concurrent checks? Greetings Jens ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Tue Mar 25 10:31:01 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Tue, 25 Mar 2003 10:31:01 +0100 Subject: Proces Nagios References: <50921.193.144.34.186.1048582410.squirrel@webmail.cesga.es> Message-ID: <3E8021D5.7C266C4B@gcc.dhl.com> http://www.nagios.org/faqs/viewfaq.php?faq_id=123&expand=false&showdesc=true casperez at cesga.es wrote: > > Hello, > When i run nagios, i have 83 processes. IS it normal? > > Thank you > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From casperez at cesga.es Tue Mar 25 09:53:30 2003 From: casperez at cesga.es (casperez at cesga.es) Date: Tue, 25 Mar 2003 09:53:30 +0100 (CET) Subject: Proces Nagios Message-ID: <50921.193.144.34.186.1048582410.squirrel@webmail.cesga.es> Hello, When i run nagios, i have 83 processes. IS it normal? Thank you ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Kurzer at c-bs.de Tue Mar 25 08:54:24 2003 From: Kurzer at c-bs.de (Matthias Kurzer) Date: Tue, 25 Mar 2003 08:54:24 +0100 Subject: service check intervall In-Reply-To: <3E7F2592.508@conova.com> References: <20030320132000.54028.qmail@web10903.mail.yahoo.com> <3E79D89C.4010908@c-bs.de> <3E7F06AF.6090402@conova.com> <3E7F16F8.5010600@c-bs.de> <3E7F2592.508@conova.com> Message-ID: <3E800B30.80407@c-bs.de> Moser Wolfgang wrote: > This looks ok, Nagios realised that this check is orphaned an as it says > , reschedules a new check. > > > You check's may get orphaned every time. > Check if the checks work fine at the command-line. Yes, that is working. I solve the Problem with service_reaper_frequency=1 in nagios.cfg. Now everything is fine working. Most times only one nagios process and all check are completed in given time. -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Raj.Mudhar at nottingham.ac.uk Tue Mar 25 11:46:13 2003 From: Raj.Mudhar at nottingham.ac.uk (Raj Mudhar) Date: Tue, 25 Mar 2003 10:46:13 +0000 Subject: Hosts.cfg file for Nagios Message-ID: Hi, This maybe the stupidest question ever but where is this file (hosts.cfg) for nagios? and another like .. like in windows u can search for files and folders. .. what command do u use in linux to do this? I just installed the plugins and no errors came up seems to have gone well. The instructions say that check the hosts.cfg file for nagios to make sure the paths are correct. thanks. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Tue Mar 25 12:09:34 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Tue, 25 Mar 2003 03:09:34 -0800 (PST) Subject: Debugging '(no output)' error Message-ID: I've got a plugin that we've created to monitor some disk stats via SNMP; to the best of my knowledge, it works well -- returns some text and exits with status 0 when I run it from a shell. Nagios, though, complains that it's providing no output (or, more specifically, "(no output!") ) and generates a warning. A casual search through the FAQs and mailing list has so far not turned up any ideas on how to further debug this. Suggestions? -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Tue Mar 25 12:37:13 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Tue, 25 Mar 2003 12:37:13 +0100 Subject: Hosts.cfg file for Nagios In-Reply-To: ; from Raj.Mudhar@nottingham.ac.uk on Tue, Mar 25, 2003 at 10:46:13AM +0000 References: Message-ID: <20030325123713.C1454@hpce.nec.com> On Tue, Mar 25, 2003 at 10:46:13AM +0000, Raj Mudhar wrote: > > This maybe the stupidest question ever Not really. Have a look at the list archive, you're not alone. > but where is this file > (hosts.cfg) for nagios? and another like .. /etc/ > like in windows u can > search for files and folders. .. what command do u use in linux to do > this? I don't know what "u" can do under Windows, to search for files and directories under Linux you can usually use the "locate" command. > I just installed the plugins and no errors came up seems to have > gone well. The instructions say that check the hosts.cfg file for > nagios to make sure the paths are correct. The instruction "nagios-1.0/INSTALLING" says also: 1) If you want, you can install the sample config files into the {prefix}/etc directory with the following command: make install-config Rasmus ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mandrade at sao-co.br.dhl.com Tue Mar 25 12:49:02 2003 From: mandrade at sao-co.br.dhl.com (Marcel Thimm Andrade) Date: Tue, 25 Mar 2003 08:49:02 -0300 Subject: CHECK_NRPE: Socket timeout after 10 seconds In-Reply-To: <41948.24.72.6.129.1048540043.squirrel@webmail.bangtherocks together.net> References: <5.1.0.14.0.20030324165957.00a4ba50@saoco> <5.1.0.14.0.20030324165957.00a4ba50@saoco> Message-ID: <5.1.0.14.0.20030325084833.03c51220@saoco> Thanks, It1s working fine now ! Marcel. > > I am using nrpe under HP-UX 10.20, some Services are getting the > folloing Status > > Information : > > CHECK_NRPE: Socket timeout after 10 seconds > > Where do I set up this to timeouts grater than 10 seconds ? > > tks > > Marcel Andrade > >You can change this in the command definition. Running check_nrpe without any >options will give you the options available to you. Depending on the >timeout you >want ... you'll want something like this in your checkcommands.cfg: > >; put a time out of 20 on check_nrpe for checks that take a little longer > >define command { >command_name check_remote >command_line /usr/local/nagios/libexec/check_nrpe >$HOSTADDRESS$ -p >5552 -to 20 -c $ARG1$ >} > >'-to' being the option for timeout > >-- >Lonny Selinger LPIC-1 ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Daniel.Siegers at bauerverlag.de Tue Mar 25 15:10:57 2003 From: Daniel.Siegers at bauerverlag.de (Daniel Siegers) Date: Tue, 25 Mar 2003 15:10:57 +0100 Subject: Multiple nsca procs Message-ID: Hi, i ve got nsca running from inetd. after a while i have got multiple nsca proc running. it seems that old nsca procs don t close. Heres my inetd.conf: nsca stream tcp nowait nagios /usr/sbin/tcpd /usr/local/nagios/bin/nsca -i -c /usr/local/nagios/etc/nsca.cfg Here s my nsca.cfg: server_port=5667 server_address=XXX.XXX.XXX.XXX nsca_user=nagios nsca_group=nagios debug=0 command_file=/usr/local/nagios/var/rw/nagios.cmd alternate_dump_file=/usr/local/nagios/var/rw/nsca.dump aggregate_writes=0 append_to_file=0 max_packet_age=30 decryption_method=1 Has anyone an idea how that comes ? Mit freundlichen Gr??en / Kind regards Daniel Siegers Systemadministrator Heinrich Bauer Dienstleistungs KG Brieffach 4620 Burchardstra?e 11 D-20077 Hamburg Telefon +49 (40)-3019-1991 Fax +49 (40)-3019-140-1991 E-Mail Daniel.Siegers at Bauerverlag.de -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Daniel Siegers.vcf Type: text/x-vcard Size: 227 bytes Desc: not available URL: From lonny at bangtherockstogether.net Tue Mar 25 15:04:17 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Tue, 25 Mar 2003 08:04:17 -0600 (CST) Subject: Debugging '(no output)' error In-Reply-To: References: Message-ID: <38103.24.72.6.129.1048601057.squirrel@webmail.bangtherockstogether.net> I know this may sound obvious but just in case ;) Have you checked permissions on the plugin? When you run it from the command line who are you running it as? And what is the format of your output (line breaks etc). I dont *think* you'd get a no output error if it was a permissions thing but it may be possible. I only recieved that error once when I was writing plugins and it was because all my plugins are written in PERL. On one of the checks I wasn't returning output from the shell to the interpretter properly and even though the shell reported the proper output on the command line, the exit from the perl code was a NULL value. Just a few things to check :) -- Lonny > I've got a plugin that we've created to monitor some disk stats via SNMP; to the > best of my knowledge, it works well -- returns some text and exits with status 0 > when I run it from a shell. > > Nagios, though, complains that it's providing no output (or, more > specifically, "(no output!") ) and generates a warning. > > A casual search through the FAQs and mailing list has so far not turned up any > ideas on how to further debug this. Suggestions? > > -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Tue Mar 25 15:19:19 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Tue, 25 Mar 2003 08:19:19 -0600 Subject: check_http via proxy? Message-ID: <352B04312822444A962714393AED8A4D1137F8@ADAEVS01.int.chickasaw.net> Im also interested to know if this is feasbily done. I too need to check some web sites through our proxy servers. -----Original Message----- From: White, Chad (MED) [mailto:chad.white at med.ge.com] Sent: Monday, March 24, 2003 5:09 PM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] check_http via proxy? Also, does anyone know of a way I could do an http check via a proxy server? My goal is to check our websites from the outside. The way our network is laid out, the only way I can do that is via a proxy server. I realize it sounds bad but the proxy does basically no caching. I am currently doing this with Big Brother (which I am migrating away from due to the SO much nicer notification options provided by Nagios, BTW) and other than spurious alerts when the proxy servers go down it works fine. thx, Chad White Systems Administrator GE Medical Systems - IT chad.white at med.ge.com Visit us at http://www.gemedicalsystems.com ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Tue Mar 25 15:45:05 2003 From: mpowell at ena.com (Marc Powell) Date: Tue, 25 Mar 2003 08:45:05 -0600 Subject: check_http via proxy? Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED763@mismail.ena.com> All All, I use the following to check the condition of about 200 caches on our network. It should be trivial to modify the command definition and service definition to work with a static proxy but different URLs or you could define a command for each specific site... YMMV. # 'check_caching' command definition define command{ command_name check_caching command_line $USER1$/check_http -H $HOSTADDRESS$ --onredirect follow -p 8080 -wt 20 -ct 30 -to 35 -u http://my.url.to.get.com -s \/html } define service { use generic-service host_name my_proxy_server service_description CACHING contact_groups contactgroup check_command check_caching } -- Marc > -----Original Message----- > From: Jeremy Russell [mailto:Jeremy.Russell at chickasaw.net] > Sent: Tuesday, March 25, 2003 8:19 AM > To: White, Chad (MED); nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] check_http via proxy? > > Im also interested to know if this is feasbily done. I too need to > check some web sites through our proxy servers. > > -----Original Message----- > From: White, Chad (MED) [mailto:chad.white at med.ge.com] > Sent: Monday, March 24, 2003 5:09 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_http via proxy? > > > Also, does anyone know of a way I could do an http check via a proxy > server? My goal is to check our websites from the outside. The way > our network is laid out, the only way I can do that is via a proxy > server. > > I realize it sounds bad but the proxy does basically no caching. I am > currently doing this with Big Brother (which I am migrating away from > due to the SO much nicer notification options provided by Nagios, BTW) > and other than spurious alerts when the proxy servers go down it works > fine. > > thx, > Chad White > Systems Administrator > GE Medical Systems - IT > chad.white at med.ge.com > Visit us at http://www.gemedicalsystems.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pablo.morales at abitab.com.uy Tue Mar 25 15:41:21 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Tue, 25 Mar 2003 11:41:21 -0300 Subject: CGI Message-ID: <000b01c2f2dc$9a2b4890$0229c80a@abtec412> Hi there, I've get the following message when I try to select an option from the nagios main screen * It appears as though you don't have permission to view information for any of the services you requested * I'm running as root, what's wrong? it's the apache configuration of it's nagios configuration?, were did I go wrong? Thanx ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Tue Mar 25 15:58:06 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Tue, 25 Mar 2003 08:58:06 -0600 (CST) Subject: Multiple Nagios processes In-Reply-To: <3E7F2C41.6050902@c-bs.de> References: <64678.24.72.6.129.1048512949.squirrel@webmail.bangtherockstogether.net> <3E7F195B.6070809@c-bs.de> <50460.24.72.6.129.1048518294.squirrel@webmail.bangtherockstogether.net> <3E7F2C41.6050902@c-bs.de> Message-ID: <46082.24.72.6.129.1048604286.squirrel@webmail.bangtherockstogether.net> Not sure if I replied to this yet but that did the trick for me as well!! Thanks! -- Lonny > I think I got it. I set > > service_reaper_frequency=1 > > (before service_reaper_frequency=10) > > and now there is most times only one nagios prozess and all checks are processed > in the given time. But CPU-Utilisation is low as before. <= 1 minute:20 (26.3%) > <= 5 minutes:67 (88.2%) > <= 15 minutes:75 (98.7%) > <= 1 hour:76 (100.0%) > Since program start: 76 (100.0%) > > Look's very good.:-) > > > -- > Matthias Kurzer/IT Systemadministrator > c: Channel Business Service GmbH > Tel.: +49 40 76629-1966 > Mail: kurzer at c-bs.de > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any > issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Tue Mar 25 14:57:33 2003 From: karl at debisschop.net (Karl DeBisschop) Date: Tue, 25 Mar 2003 08:57:33 -0500 Subject: check_http via proxy? In-Reply-To: <352B04312822444A962714393AED8A4D1137F8@ADAEVS01.int.chickasaw.net> References: <352B04312822444A962714393AED8A4D1137F8@ADAEVS01.int.chickasaw.net> Message-ID: Jeremy Russell writes: > Im also interested to know if this is feasbily done. I too need to > check some web sites through our proxy servers. It has been discussed several times before. It can depend on what type of proxy server you have. In some cases, the following works: check_http -I -H You might need to include a query as well, to defeat caching. Unfortunately, I don't recall the other method that is in use. -- Karl > -----Original Message----- > From: White, Chad (MED) [mailto:chad.white at med.ge.com] > Sent: Monday, March 24, 2003 5:09 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_http via proxy? > > > Also, does anyone know of a way I could do an http check via a proxy > server? My goal is to check our websites from the outside. The way > our network is laid out, the only way I can do that is via a proxy > server. > > I realize it sounds bad but the proxy does basically no caching. I am > currently doing this with Big Brother (which I am migrating away from > due to the SO much nicer notification options provided by Nagios, BTW) > and other than spurious alerts when the proxy servers go down it works > fine. > > thx, > Chad White > Systems Administrator > GE Medical Systems - IT > chad.white at med.ge.com > Visit us at http://www.gemedicalsystems.com > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at alienn.net Tue Mar 25 16:12:10 2003 From: nagios-users at alienn.net (Nicki Messerschmidt, Linksystem Muenchen GmbH) Date: Tue, 25 Mar 2003 16:12:10 +0100 Subject: in search for plugins Message-ID: <017901c2f2e1$064c9200$d0551ec3@linkm.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, are there any known plugins outthere which are capable of checking the following protocols: - - https - - imaps (with login) - - secure smtp - - smtp auth (with login) - - pop3s (with login) I would appreciate any hints. Thanks and cheers Nicki - -- Linksystem Muenchen GmbH info at link-m.de Schloerstrasse 10 http://www.link-m.de 80634 Muenchen Tel. 089 / 890 518-0 We make the Net work. Fax 089 / 890 518-77 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use Comment: Keys at: https://www.link-m.de/pgp iQA/AwUBPoBjues1nPm17iBDEQJifwCfbj+t3bqGxI91Ux5rD1z0l2HqDdgAnR54 ZDRVuJmAcsjTihwu4OOm/6xm =mIP2 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Tue Mar 25 16:01:38 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Tue, 25 Mar 2003 16:01:38 +0100 Subject: check_http via proxy? References: <352B04312822444A962714393AED8A4D1137F8@ADAEVS01.int.chickasaw.net> Message-ID: <3E806F52.F1FA9E0D@gcc.dhl.com> /usr/local/nagios/libexec/check_http -H your.proxyserver.com -p yourproxyport -u http://www.google.com -s Images Jeremy Russell wrote: > > Im also interested to know if this is feasbily done. I too need to > check some web sites through our proxy servers. > > -----Original Message----- > From: White, Chad (MED) [mailto:chad.white at med.ge.com] > Sent: Monday, March 24, 2003 5:09 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_http via proxy? > > Also, does anyone know of a way I could do an http check via a proxy > server? My goal is to check our websites from the outside. The way > our network is laid out, the only way I can do that is via a proxy > server. > > I realize it sounds bad but the proxy does basically no caching. I am > currently doing this with Big Brother (which I am migrating away from > due to the SO much nicer notification options provided by Nagios, BTW) > and other than spurious alerts when the proxy servers go down it works > fine. > > thx, > Chad White > Systems Administrator > GE Medical Systems - IT > chad.white at med.ge.com > Visit us at http://www.gemedicalsystems.com > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pascal.renaut at electricite-strasbourg.fr Tue Mar 25 16:29:49 2003 From: pascal.renaut at electricite-strasbourg.fr (Pascal RENAUT/GROUPE-ES) Date: Tue, 25 Mar 2003 16:29:49 +0100 Subject: check_nrpe : Received 0 bytes. Are you allowed to connect to the host ? Message-ID: Hi * My pb is resume in object. When I run check_nrpe, I've got this message : check_nrpe : Received 0 bytes. Are you allowed to connect to the host ? The checks on my remote server (under AIX) are ok and the nrpe file is running as daemon (ok). When I ping my remote server, it's ok (hence both server Nagios and remote server know themselves) but when I want to make a telnet my_remote_server 5666, the connection is refused. I need help... Thanks ..................................................................................................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jason at cannonfodder.org Tue Mar 25 16:37:14 2003 From: jason at cannonfodder.org (jason at cannonfodder.org) Date: Tue, 25 Mar 2003 09:37:14 -0600 Subject: in search for plugins In-Reply-To: <017901c2f2e1$064c9200$d0551ec3@linkm.de> References: <017901c2f2e1$064c9200$d0551ec3@linkm.de> Message-ID: <20030325153714.GA5207@neospire.net> on Tue Mar 25 Nicki Messerschmidt, Linksystem Muenchen GmbH spoke forth with the blessed manuscript > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > Hi, > are there any known plugins outthere which are capable of checking the > following protocols: > - - https define command{ command_name check_https command_line $USER1$/check_http -I $HOSTADDRESS$ -S -e "HTTP/1." -t 30 -C 30 } You can check https with the check_http plugin, just make sure you have all the requirements met before compiling. > - - smtp auth (with login) We are actually testing this right now, I have a postponed email with a patch in it that I was going to send out as soon as we were comfortable with it. We just added the functionality to check_smtp email me off list if you are brave enough to go ahead and give the check_smtp plugin a try, I should be done testing this week though, if you'd rather wait. > I would appreciate any hints. > Thanks and cheers > Nicki > - -- > Linksystem Muenchen GmbH info at link-m.de > Schloerstrasse 10 http://www.link-m.de > 80634 Muenchen Tel. 089 / 890 518-0 > We make the Net work. Fax 089 / 890 518-77 > -----BEGIN PGP SIGNATURE----- > Version: PGPfreeware 6.5.3 for non-commercial use > Comment: Keys at: https://www.link-m.de/pgp > iQA/AwUBPoBjues1nPm17iBDEQJifwCfbj+t3bqGxI91Ux5rD1z0l2HqDdgAnR54 > ZDRVuJmAcsjTihwu4OOm/6xm > =mIP2 > -----END PGP SIGNATURE----- > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -- Jason Burnett Senior Engineer http://www.neospire.net voice 214-720-1442 jason at neospire.net fax 214-720-1836 ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nadine.vandois at bull.net Tue Mar 25 16:46:39 2003 From: nadine.vandois at bull.net (nadine.vandois at bull.net) Date: Tue, 25 Mar 2003 16:46:39 +0100 Subject: check_load and smp servers Message-ID: Hello, I would like to monitor cpuss load on a SMP server (i.e. a multi-processor server). I see, check_load allows to get the average cpu load, but if i understand, it is for 1 cpu. How, can I get the average cpu load, for each cpu on a SMP server ? Another question: is there a way to minitor the average memory load ? Regards, Nadine VANDOIS ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Tue Mar 25 17:10:50 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Tue, 25 Mar 2003 11:10:50 -0500 (EST) Subject: check_by_ssh troubles In-Reply-To: <52477F956561A24F96504531194909A71B4EBB@exchange1.p-inet.com> References: <52477F956561A24F96504531194909A71B4EBB@exchange1.p-inet.com> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 25-Mar-2003, Ben Garcia wrote message "RE: [Nagios-users] check_by_ssh troubles" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Andy, > > Could it be because you're using $HOSTADDRESS$ in the -H argument rather than > $HOSTNAME$ ? I guess I should word that differently -- is $HOSTADDRESS$ > bsd.nachoz.com or is it the IP of the box? $HOSTADDRESS$ is going to be > whatever you defined for the address field in the hosts.cfg. > > Just a thought... > > --Ben Wow, great instincts Ben. I was only using HOSTADDRESS because pretty much everything else was (apan is the only thing in my list that doesn't). Switched it to HOSTNAME and got instant results. Thanx! Sounds like a good one for the docs. ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPoB/ilPEkLgodAWVAQHWTAQAgvoc94E1A0ekQTn0bLPF4Fp4Z5M7Vwxn PLRulMXrPrzTxFu9k2ZHMzNkZwaHekgVWpUo10JOPSSnskNTsBOCELuPB7RFa6jI tqgvoHKWYCGLhCgfp2RlvKkWDMuuKn6mHueMxFvtP8uiGXzOiHtBb2Pcp3uJFInZ c/R4x28NKEE= =S7Vy -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Tue Mar 25 17:04:36 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Tue, 25 Mar 2003 13:04:36 -0300 Subject: status map error Message-ID: I upgraded Nagios 1.0b6 to 1.0 with support to GD library (PNG and JPEG) The "3-D status map" is work, but the "Status Map", "Reporting - Trends" and "Reporting - Alert Histogram" doesn't work. My question is....What I need to do ? When select "Status Map" I have to receive the following error : **************************************************************************** ************** Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. **************************************************************************** ************** Thank you. Hugo ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From p.miquet at hafiba.fr Tue Mar 25 18:02:49 2003 From: p.miquet at hafiba.fr (Pascal Miquet) Date: 25 Mar 2003 18:02:49 +0100 Subject: check_nrpe : Received 0 bytes. Are you allowed to connect to the host ? In-Reply-To: References: Message-ID: <1048611745.5464.11.camel@moishe> This look of a security protection... You should be able to get a telnet connection. Did you checks the messages logs of your server ? I've installed NRPE through xinetd on a Linux box and all is right. And private checks developped on my box was running very fine. HTH Regards Le mar 25/03/2003 ? 16:29, Pascal RENAUT/GROUPE-ES a ?crit : > Hi * > My pb is resume in object. When I run check_nrpe, I've got this message : > check_nrpe : Received 0 bytes. Are you allowed to connect to the host ? > The checks on my remote server (under AIX) are ok and the nrpe file is > running as daemon (ok). When I ping my remote server, it's ok (hence both > server Nagios and remote server know themselves) but when I want to make a > telnet my_remote_server 5666, the connection is refused. I need help... > Thanks ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Tue Mar 25 17:56:59 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-1?q?H=FCttig?=) Date: Tue, 25 Mar 2003 17:56:59 +0100 Subject: check_http via proxy? In-Reply-To: <3E806F52.F1FA9E0D@gcc.dhl.com> References: <352B04312822444A962714393AED8A4D1137F8@ADAEVS01.int.chickasaw.net> <3E806F52.F1FA9E0D@gcc.dhl.com> Message-ID: <200303251757.00028.Michael.Huettig@Medien-Systempartner.de> Am Dienstag, 25. M?rz 2003 16:01 schrieb Tom DE BLENDE: > /usr/local/nagios/libexec/check_http -H your.proxyserver.com -p > yourproxyport -u http://www.google.com -s Images > Looks fine, but how do i check some URL with PROXY_AUTH, -a won't work??? Greets Michael > Jeremy Russell wrote: > > Im also interested to know if this is feasbily done. I too need to > > check some web sites through our proxy servers. > > > > -----Original Message----- > > From: White, Chad (MED) [mailto:chad.white at med.ge.com] > > Sent: Monday, March 24, 2003 5:09 PM > > To: nagios-users at lists.sourceforge.net > > Subject: [Nagios-users] check_http via proxy? > > > > Also, does anyone know of a way I could do an http check via a proxy > > server? My goal is to check our websites from the outside. The way > > our network is laid out, the only way I can do that is via a proxy > > server. > > > > I realize it sounds bad but the proxy does basically no caching. I am > > currently doing this with Big Brother (which I am migrating away from > > due to the SO much nicer notification options provided by Nagios, BTW) > > and other than spurious alerts when the proxy servers go down it works > > fine. > > > > thx, > > Chad White > > Systems Administrator > > GE Medical Systems - IT > > chad.white at med.ge.com > > Visit us at http://www.gemedicalsystems.com > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ::: Please include Nagios version, plugin version (-v) and OS when > > > > reporting any issue. > > > > ::: Messages without supporting info will risk being sent to /dev/null > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > > > ::: Please include Nagios version, plugin version (-v) and OS when > > ::: reporting any issue. Messages without supporting info will risk being > > ::: sent to /dev/null > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From unknown at unknown.invalid Tue Mar 25 18:42:30 2003 From: unknown at unknown.invalid (Unknown) Date: Tue, 25 Mar 2003 17:42:30 +0000 (UTC) Subject: »ç¶ûÇÏ´Â Á¤¼÷¾Æ! Message-ID: An HTML attachment was scrubbed... URL: From mark at cloud9.net Tue Mar 25 18:39:16 2003 From: mark at cloud9.net (Mark Hennessy) Date: Tue, 25 Mar 2003 12:39:16 -0500 (EST) Subject: Just installed Nagios 1.0 and suddenly having trouble with authentication Message-ID: Here's the situation: Running FreeBSD 4.6.2 Apache 1.3.27 with OpenSSL Installed Nagios 1.0b5 from source, configured, all working fine. Today, I installed Nagios 1.0 over the 1.0b5 configuration, and suddenly, authentication at the cgi level doesn't seem to be working right anymore. To elaborate: I checked the permissions of the htaccess and htpasswd/htusers files, they all check out and are viewable by the user that the web server runs as. I can do HTTP authentication, and Nagios reflects this by showing the proper logged in user, but I get the following error right underneath that (this happens for all of the Nagios cgis, obviously the message is specific to the Nagios cgi I'm using as an example): It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. I tried disabling authentication in cgi.cfg, no change. All of the nagios paths are the defaults. I even ran a couple of the .cgi scripts from the commandline with the appropriate environment settings, and got the same message. Where can I check next? I couldn't find any debugging options for cgis in the documentation, and everything I found in the documentation regarding authentication appears to be in place properly already. -- Mark P. Hennessy mark at cloud9.net ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Tue Mar 25 19:46:30 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Tue, 25 Mar 2003 13:46:30 -0500 (EST) Subject: Just installed Nagios 1.0 and suddenly having trouble with authentication In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 25-Mar-2003, Mark Hennessy wrote message "[Nagios-users] Just installed Nagios 1.0 and suddenly having tro" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > Where can I check next? I couldn't find any debugging options for cgis in > the documentation, and everything I found in the documentation regarding > authentication appears to be in place properly already. The httpd error log would of course be helpful... ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPoCkBlPEkLgodAWVAQHhQQP/b94yXI2CBtaqDlVtXzN91bEd8m7hwsHa 6IMPBUXQzMiDFdcbVwdWfb3fF1z69fJR2ykKfdVy4FhAtav7j4Awr4Be0KWIeMX4 onI3IYccr6di29tCcukIeOApoR1mKdS8F9UGWHQCLYUZg/jriGGEjcUifutC0t6F FXl7sAI7cRQ= =sTVn -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark at cloud9.net Tue Mar 25 20:07:46 2003 From: mark at cloud9.net (Mark Hennessy) Date: Tue, 25 Mar 2003 14:07:46 -0500 (EST) Subject: Just installed Nagios 1.0 and suddenly having trouble with authentication In-Reply-To: References: Message-ID: There's nothing in it. As I wrote earlier, HTTP authentication succeeds. -- Mark P. Hennessy mark at cloud9.net On Tue, 25 Mar 2003, Andy Harrison wrote: > Date: Tue, 25 Mar 2003 13:46:30 -0500 (EST) > From: Andy Harrison > To: Nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Just installed Nagios 1.0 and suddenly having > trouble with authentication > > -----BEGIN PGP SIGNED MESSAGE----- > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > On 25-Mar-2003, Mark Hennessy wrote message "[Nagios-users] Just installed > Nagios 1.0 and suddenly having tro" > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > Where can I check next? I couldn't find any debugging options for cgis in > > the documentation, and everything I found in the documentation regarding > > authentication appears to be in place properly already. > > > The httpd error log would of course be helpful... > > > > ~~ > Andy Harrison > ah##@httpsite.com > ICQ: 123472 AIM/Y!: AHinMaine > homepage: http://www.nachoz.com > > -----BEGIN PGP SIGNATURE----- > Version: PGP 6.5.8 > > iQCVAwUBPoCkBlPEkLgodAWVAQHhQQP/b94yXI2CBtaqDlVtXzN91bEd8m7hwsHa > 6IMPBUXQzMiDFdcbVwdWfb3fF1z69fJR2ykKfdVy4FhAtav7j4Awr4Be0KWIeMX4 > onI3IYccr6di29tCcukIeOApoR1mKdS8F9UGWHQCLYUZg/jriGGEjcUifutC0t6F > FXl7sAI7cRQ= > =sTVn > -----END PGP SIGNATURE----- > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Tue Mar 25 20:37:12 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Tue, 25 Mar 2003 14:37:12 -0500 (EST) Subject: Just installed Nagios 1.0 and suddenly having trouble with authentication In-Reply-To: References: Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 25-Mar-2003, Mark Hennessy wrote message "Re: [Nagios-users] Just installed Nagios 1.0 and suddenly having" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > There's nothing in it. > > As I wrote earlier, HTTP authentication succeeds. > HTTP authentication succeeding would have absolutely NOTHING to do with whether or not there were *other* errors in log, smart ass... Now, if you installed 1.0b5 from source, did you also install 1.0 from source? You say all of the nagios paths are default, but this needs clarification since freebsd does not use the nagios default of /usr/local/nagios. And judging from these problems, it's sounding like a distinct possibility you might be editing a config file that is not actually being used. ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPoCv51PEkLgodAWVAQFcnQP9EaObHd60FNxc8f8jkH6RY6LrnmIg2rfK yTwZ6XI8Ij2ODJLywPimHAIBH452UfgcnJr6ZphiGACLSlnHVwCMVjrU5jqCadNz HHOduoe6mDfChMrKRe1At1TSklrmTc6eF1jgytdCuTRWhTqtewYAp9K6Lzyx2fBL 6lHjZEQAYKs= =gmdY -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Tue Mar 25 20:33:11 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Tue, 25 Mar 2003 16:33:11 -0300 Subject: Status Map Message-ID: What's happened, when I select "Status Map" and receive the follow error : ************************************************** Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. Apache/1.3.27 Server at nagios Port 80 **************************************************************************** ** Thank you. Hugo ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Tue Mar 25 20:52:37 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Tue, 25 Mar 2003 11:52:37 -0800 (PST) Subject: Debugging '(no output)' error In-Reply-To: <38103.24.72.6.129.1048601057.squirrel@webmail.bangtherockstogether.net> References: <38103.24.72.6.129.1048601057.squirrel@webmail.bangtherockstogether.net> Message-ID: On Tue, 25 Mar 2003, Lonny Selinger wrote: > I know this may sound obvious but just in case ;) Have you checked permissions on > the plugin? When you run it from the command line who are you running it as? And > what is the format of your output (line breaks etc). None of this was the issue (I tried running the script as the Nagios user without a problem, and it returns one line of output). Turns out I had accidentally commented out the resource.cfg entry in nagios.cfg; this meant that the command entry referring to $USER1$ could not work because Nagios didn't know what $USER1$ was. Surprisingly, instead of providing some sort of error ('$USER1$ not defined') it just gave me the '(no output)' error. -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From marcos.dias at intelignet.com.br Tue Mar 25 21:10:06 2003 From: marcos.dias at intelignet.com.br (Marcos Dias) Date: Tue, 25 Mar 2003 17:10:06 -0300 Subject: Event Log / Trends, everything that generates graphics and reports Message-ID: <014201c2f30a$87be1880$03000000@wksssph20155> Hello folks, My Nagios isn't generating events logs trends and everything that generate reports here are my configure: ./configure --sysconfdir=/etc/nagios --localstatedir=/var --with-nagios-user=nagios --with-nagios-grp=nagios --with-command -user=nagios --with-command-grp=nagios --with-init-dir=/etc/init.d --with-lockfile=/var/lock/nagios.lock --with-mysql-xdata -- with-file-perfdata --with-cgiurl=/cgi-bin --enable-embedded-perl --with-perlcache --with-htmurl= Someone could help me!? []'s Marcos Dias -------------- next part -------------- An HTML attachment was scrubbed... URL: From mark at cloud9.net Tue Mar 25 21:26:11 2003 From: mark at cloud9.net (Mark Hennessy) Date: Tue, 25 Mar 2003 15:26:11 -0500 (EST) Subject: Just installed Nagios 1.0 and suddenly having trouble with authentication In-Reply-To: References: Message-ID: I'm new to the list and I mean no disrespect. I wrote to the list trying to be specific as possible as to the trouble I was seeing. I simply informed you that error_log didn't show anything per my first e-mail. If being succinct and not repeating oneself is an indication of being a smartass, so be it. Your list decorum leaves much to be desired. Remember, there are human beings on both sides of this conversation. Now, to respond to the rational portion of the message: I installed 1.0 from source and not from ports. I installed on top of the existing installation. All of the config files are otherwise the same. I tried installing to a new/different prefix and moving the files/Search/Replace paths and the problem seems to have gone away. That suggests to me probably a permissions issue somewhere during the upgrade. It would be a neat thing to try to trace back so it can be documented and others can avoid it. To all members of this list, thank you for your kind consideration in this matter. -- Mark P. Hennessy mark at cloud9.net On Tue, 25 Mar 2003, Andy Harrison wrote: > Date: Tue, 25 Mar 2003 14:37:12 -0500 (EST) > From: Andy Harrison > To: Nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Just installed Nagios 1.0 and suddenly having > trouble with authentication > > -----BEGIN PGP SIGNED MESSAGE----- > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > On 25-Mar-2003, Mark Hennessy wrote message "Re: [Nagios-users] Just installed > Nagios 1.0 and suddenly having" > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > There's nothing in it. > > > > As I wrote earlier, HTTP authentication succeeds. > > > > > HTTP authentication succeeding would have absolutely NOTHING to do with whether > or not there were *other* errors in log, smart ass... > > Now, if you installed 1.0b5 from source, did you also install 1.0 from source? > You say all of the nagios paths are default, but this needs clarification since > freebsd does not use the nagios default of /usr/local/nagios. And judging > from these problems, it's sounding like a distinct possibility you might be > editing a config file that is not actually being used. > > > > ~~ > Andy Harrison > ah##@httpsite.com > ICQ: 123472 AIM/Y!: AHinMaine > homepage: http://www.nachoz.com > > -----BEGIN PGP SIGNATURE----- > Version: PGP 6.5.8 > > iQCVAwUBPoCv51PEkLgodAWVAQFcnQP9EaObHd60FNxc8f8jkH6RY6LrnmIg2rfK > yTwZ6XI8Ij2ODJLywPimHAIBH452UfgcnJr6ZphiGACLSlnHVwCMVjrU5jqCadNz > HHOduoe6mDfChMrKRe1At1TSklrmTc6eF1jgytdCuTRWhTqtewYAp9K6Lzyx2fBL > 6lHjZEQAYKs= > =gmdY > -----END PGP SIGNATURE----- > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Tue Mar 25 22:19:00 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Tue, 25 Mar 2003 16:19:00 -0500 (EST) Subject: Just installed Nagios 1.0 and suddenly having trouble with authentication In-Reply-To: References: Message-ID: Are the *cfg files readable by the apache user? I think the cgi cannot read the hsot.cfg/service.cfg to find out if you are a valid contact. -sg On Tue, 25 Mar 2003, Mark Hennessy wrote: > Here's the situation: > Running FreeBSD 4.6.2 > Apache 1.3.27 with OpenSSL > > Installed Nagios 1.0b5 from source, configured, all working fine. > > Today, I installed Nagios 1.0 over the 1.0b5 configuration, and suddenly, > authentication at the cgi level doesn't seem to be working right anymore. > > To elaborate: > I checked the permissions of the htaccess and htpasswd/htusers files, they > all check out and are viewable by the user that the web server runs as. > > I can do HTTP authentication, and Nagios reflects this by showing the > proper logged in user, but I get the following error right underneath > that (this happens for all of the Nagios cgis, obviously the message is > specific to the Nagios cgi I'm using as an example): > > It appears as though you do not have permission to view information for > any of the hosts you requested... > If you believe this is an error, check the HTTP server authentication > requirements for accessing this CGI > and check the authorization options in your CGI configuration file. > > I tried disabling authentication in cgi.cfg, no change. > > All of the nagios paths are the defaults. > > I even ran a couple of the .cgi scripts from the commandline with the > appropriate environment settings, and got the same message. > > Where can I check next? I couldn't find any debugging options for cgis in > the documentation, and everything I found in the documentation regarding > authentication appears to be in place properly already. > > -- > Mark P. Hennessy mark at cloud9.net > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jarkolicious at yahoo.com Tue Mar 25 23:40:29 2003 From: jarkolicious at yahoo.com (jark) Date: 25 Mar 2003 22:40:29 -0000 Subject: GD compile issues with Nagios Message-ID: <20030325224029.23436.qmail@pod-163.dolphin-server.co.uk> I have successfully setup Nagios on a SuSE 8.1 box and got it all up and running, with one exception: statusmap. I have installed GB, libpng, libjpeg and zlib, all without issue. In fact, a number of other applications are using them fine. If I run ./configure as follows then I get an error during compile: ./configure --prefix=/usr/local/nagios --with-mysql-xdata --with-mysql-status --with-mysql-comments --with-mysql-retention --with-mysql-downtime --with-htmurl=/nagios --with-cgiurl=/cgi-bin --disable-statuswrl --with-gd-lib=../gd-2.0.11 --with-gd-inc=../gd-2.0.11 The error that I get during compile is as follows: gcc -g -O2 -I../gd-2.0.11 -DHAVE_CONFIG_H -DNSCGI -L../gd-2.0.11 -lmysqlclient statusmap.c getcgi.o cgiutils.o auth.o popen.o ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/xsddb.c -lgd -lz -lm -lpng -ljpeg edata.o ../xdata/xeddb.c -o statusmap.cgi /tmp/ccs1Eh2T.o: In function `load_image_from_file': /home/jark/nagios-1.0/cgi/statusmap.c:2220: undefined reference to `gdImageCreateFromPng' /tmp/ccs1Eh2T.o: In function `write_graphics': /home/jark/nagios-1.0/cgi/statusmap.c:2253: undefined reference to `gdImagePng' collect2: ld returned 1 exit status make[1]: *** [statusmap.cgi] Error 1 make[1]: Leaving directory `/home/jark/nagios-1.0/cgi' make: *** [all] Error 2 If I run ./configure as follows then it can not locate GD, even though it does reside there: ./configure --prefix=/usr/local/nagios --with-mysql-xdata --with-mysql-status --with-mysql-comments --with-mysql-retention --with-mysql-downtime --with-htmurl=/nagios --with-cgiurl=/cgi-bin --disable-statuswrl --with-gd-lib=/usr/local/lib --with-gd-inc=/usr/local/include Any ideas how I can get GD compiled in to this properly, so that I can use the status map and other areas of Nagios that require GD? Scott ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From erik.larkin at nuasis.com Tue Mar 25 23:43:44 2003 From: erik.larkin at nuasis.com (Erik Larkin) Date: Tue, 25 Mar 2003 14:43:44 -0800 Subject: Huge delay in scheduling freshness service check after 3rd try Message-ID: Allright, I'm finally admitting that I can't figure this one out myself. Trust me, it's a difficult admission, and has involved much tinkering, hair-pulling, and searching of mailing lists (although searching doesn't seem to be working right now for the sourceforge lists?). Anyways, I've got a nagios architecture with multiple distributed servers sending check results to a central nagios server via ncsa. The central server doesn't perform any active checks (no network access to the distributed network), but is configured to perform a freshness check for a service called 'Heartbeat' for each distributed instance. The heartbeat is just a ping of the loopback performed every minute, although I've since discovered I could have used check_dummy. Seems to be a pretty common setup, and for the most part it works very well. Except for the freshness checks. They work fine up until the 3rd failed freshness check or so, at which point latency skyrockets. From 99 to 280 to 749, on up to thousands and thousands of seconds of latency. The log reflects a failed freshness check, and a message about forcing the service (which is the typical echo and exit 2). But the service alert response is delayed more and more. I've tried everything I can think of, and learned a great deal in my searching and tweaking, but I can't change this behavior. Here's what I've tried: - change the service_reaper_frequency to 3. saw a reference for this in the list for something else, thought it might help. I still suspect some problem with the service reaper. - added a 1 second sleep to the script (thought maybe it was returning its status too quickly) - futzed with the normal_check_interval for the heartbeat service on the central server. gave it ranges between 1 minute and 15 minutes. - enabled check_for_orphaned_services - tossed a debug option in my stale_service script that sent a line of output to a log, to make sure that the script itself was being run (it was) - setting is_volatile (just to check) - other things I can't think of right now. And here's the service entry: define service{ use qab24x7-service service_description Heartbeat hostgroup_name qabdbfohub normal_check_interval 15 is_volatile 1 max_check_attempts 1 check_freshness 1 notification_interval 15 freshness_threshold 180 check_command stale-service } And here's some relevant log snippets: [1048628465] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048628471] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048628705] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 58 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048628711] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048628945] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048628966] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048629185] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 42 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048629287] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048629485] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 21 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048629770] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048629965] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 20 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048630715] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048630925] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 31 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. Sorry for the the long email/spam, but please oh please: does anyone have any info regarding this problem? Many thanks, Erik Larkin elarkin at nuasis.com p.s. Just to go on record, I do think Nagios rocks. Hard. But this itty bitty problem is driving me nuts! ;) ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jarkolicious at yahoo.com Wed Mar 26 00:07:16 2003 From: jarkolicious at yahoo.com (jark) Date: Tue, 25 Mar 2003 15:07:16 -0800 (PST) Subject: Nagios and GD compiling issue Message-ID: <20030325230716.7403.qmail@web14304.mail.yahoo.com> I have successfully setup Nagios on a SuSE 8.1 box and got it all up and running, with one exception: statusmap. I have installed GB, libpng, libjpeg and zlib, all without issue. In fact, a number of other applications are using them fine. If I run ./configure as follows then I get an error during compile: ./configure --prefix=/usr/local/nagios --with-mysql-xdata --with-mysql-status --with-mysql-comments --with-mysql-retention --with-mysql-downtime --with-htmurl=/nagios --with-cgiurl=/cgi-bin --disable-statuswrl --with-gd-lib=../gd-2.0.11 --with-gd-inc=../gd-2.0.11 The error that I get during compile is as follows: gcc -g -O2 -I../gd-2.0.11 -DHAVE_CONFIG_H -DNSCGI -L../gd-2.0.11 -lmysqlclient statusmap.c getcgi.o cgiutils.o auth.o popen.o ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/xsddb.c -lgd -lz -lm -lpng -ljpeg edata.o ../xdata/xeddb.c -o statusmap.cgi /tmp/ccs1Eh2T.o: In function `load_image_from_file': /home/jark/nagios-1.0/cgi/statusmap.c:2220: undefined reference to `gdImageCreateFromPng' /tmp/ccs1Eh2T.o: In function `write_graphics': /home/jark/nagios-1.0/cgi/statusmap.c:2253: undefined reference to `gdImagePng' collect2: ld returned 1 exit status make[1]: *** [statusmap.cgi] Error 1 make[1]: Leaving directory `/home/jark/nagios-1.0/cgi' make: *** [all] Error 2 If I run ./configure as follows then it can not locate GD, even though it does reside there: ./configure --prefix=/usr/local/nagios --with-mysql-xdata --with-mysql-status --with-mysql-comments --with-mysql-retention --with-mysql-downtime --with-htmurl=/nagios --with-cgiurl=/cgi-bin --disable-statuswrl --with-gd-lib=/usr/local/lib --with-gd-inc=/usr/local/include Any ideas how I can get GD compiled in to this properly, so that I can use the status map and other areas of Nagios that require GD? Regards, Scott __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Wed Mar 26 02:51:41 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Wed, 26 Mar 2003 12:51:41 +1100 Subject: Nagios and GD compiling issue In-Reply-To: <20030325230716.7403.qmail@web14304.mail.yahoo.com>; from jarkolicious@yahoo.com on Tue, Mar 25, 2003 at 03:07:16PM -0800 References: <20030325230716.7403.qmail@web14304.mail.yahoo.com> Message-ID: <20030326125134.F50535@IPAustralia.Gov.AU> Dear Sir, I am writing to thank you for your letter and say, On Tue, Mar 25, 2003 at 03:07:16PM -0800, jark wrote: > I have successfully setup Nagios on a SuSE 8.1 box and got it all up > and running, with one exception: statusmap. I have installed GB, > libpng, libjpeg and zlib, all without issue. In fact, a number of other > applications are using them fine. > > If I run ./configure as follows then I get an error during compile: > > ./configure --prefix=/usr/local/nagios --with-mysql-xdata > --with-mysql-status --with-mysql-comments --with-mysql-retention > --with-mysql-downtime --with-htmurl=/nagios --with-cgiurl=/cgi-bin > --disable-statuswrl --with-gd-lib=../gd-2.0.11 > --with-gd-inc=../gd-2.0.11 > > The error that I get during compile is as follows: > > gcc -g -O2 -I../gd-2.0.11 -DHAVE_CONFIG_H -DNSCGI -L../gd-2.0.11 > -lmysqlclient statusmap.c getcgi.o cgiutils.o auth.o popen.o > ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c > ../xdata/xsddb.c -lgd -lz -lm -lpng -ljpeg edata.o ../xdata/xeddb.c -o > statusmap.cgi > /tmp/ccs1Eh2T.o: In function `load_image_from_file': > /home/jark/nagios-1.0/cgi/statusmap.c:2220: undefined reference to > `gdImageCreateFromPng' > /tmp/ccs1Eh2T.o: In function `write_graphics': > /home/jark/nagios-1.0/cgi/statusmap.c:2253: undefined reference to > `gdImagePng' > collect2: ld returned 1 exit status > make[1]: *** [statusmap.cgi] Error 1 > make[1]: Leaving directory `/home/jark/nagios-1.0/cgi' > make: *** [all] Error 2 > > If I run ./configure as follows then it can not locate GD, even though > it does reside there: > > ./configure --prefix=/usr/local/nagios --with-mysql-xdata > --with-mysql-status --with-mysql-comments --with-mysql-retention > --with-mysql-downtime --with-htmurl=/nagios --with-cgiurl=/cgi-bin > --disable-statuswrl --with-gd-lib=/usr/local/lib > --with-gd-inc=/usr/local/include > > Any ideas how I can get GD compiled in to this properly, so that I can > use the status map and other areas of Nagios that require GD? > that unfortunately, Nagios may not work with gd-2.0.x. Most people are using gd-1.8.x I think. You can find out if your gd library has the function the linker is complaining about with 'nm'. eg for my Nag systems gd-1.8.4 in /usr/local/lib. Yours is probably somewehere else. tsitc> nm /usr/local/lib/libgd.so.2 | grep gdImageCreateFromPng 000083c0 T gdImageCreateFromPng 00008404 T gdImageCreateFromPngCtx 000080f4 T gdImageCreateFromPngSource tsitc> If your library does not show a symbol type of T, it is not going to work and you have located a bug. If that is the case, please let the list know. It should be possible to build Nagios with an older gd library but I don't know how to do that without the possibility of negative impact on your other applications. > > Regards, > > Scott > Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Wed Mar 26 03:19:27 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Tue, 25 Mar 2003 18:19:27 -0800 (PST) Subject: Nagios and GD compiling issue In-Reply-To: <20030326125134.F50535@IPAustralia.Gov.AU> References: <20030326125134.F50535@IPAustralia.Gov.AU> Message-ID: On Wed, 26 Mar 2003, Stanley Hopcroft wrote: > that unfortunately, Nagios may not work with gd-2.0.x. > > Most people are using gd-1.8.x I think. Funny you should say that -- I finished debugging some problems with this setup earlier today. I'm using Nagios 1.0; my GD version is 2.0.11 (most recent). I had some problems where statusmap wasn't working (and, in fact, the Perl GD module wasn't testing clean). In the end, downgrading from libpng 1.2.5 to libpng 1.0.6 fixed all my problems. This is, by the way, on Solaris, so it may not be *directly* related to the original poster's issues, but I can say that, at least for me and at least on this platform (Solaris 9), Nagios 1.0 works with gd-2.0.11. -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Wed Mar 26 06:34:31 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Tue, 25 Mar 2003 21:34:31 -0800 (PST) Subject: Dependency Stuff Message-ID: I suspect this was answered before on the mailing list, but I can't search it right now. I'm trying to get statusmap to show hosts in a way that corresponds with the dependency file (so, for example, the next hop is shown connected in a line to my gateway, not directly to the nagios system). My dependency file is: define servicedependency { host_name gw service_description ALIVE dependent_host_name nexthop dependent_service_description ALIVE execution_failure_criteria w,u,c notification_failure_criteria w,u,c } define hostdependency { host_name gw dependent_host_name nexthop notification_failure_criteria d,u } gw is my first hop, nexthop is, well, my next hop. I haven't tested a failure to see if Nagios will do the right thing yet, but statusmap shows gw and nexthop on the same 'level'. What am I missing? -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark.holm at inherent.com Wed Mar 26 07:58:30 2003 From: mark.holm at inherent.com (Mark Holm) Date: Tue, 25 Mar 2003 22:58:30 -0800 Subject: Can't display images Message-ID: <4767A529EDCE4D40A7BA8EF46217D0031F7661@pobox.inherent.com> I'm running Nagios 1.0 on Solaris 8 and I have all the gd and image libraries compiled in with no errors. I can get the status map up along with the 3-D map, but I cannot get it to display any supplied images. I have gone back and explicitly configured nagios --with-template-extinfo and added the following lines to both cgi.cfg and nagios.cfg: # EXTENDED HOST/SERVICE FILE INFORMATION xedtemplate_config_file=/usr/local/nagios/etc/hostextinfo.cfg xedtemplate_config_file=/usr/local/nagios/etc/serviceextinfo.cfg I then created a the hostextinfo.cfg with the following for one of my hosts: hostextinfo{ host_name sun1.infoarchinc.com notes_url http://nagios.exc-sol.com/serverinfo/infoarch/sun1.html icon_image sunlogo.png icon_image_alt Sun Ultra1 - Solaris 8 vrml_image sunlogo.png statusmap_image sunlogo.gd2 2d_coords 100,250 3d_coords 100.0,50.0,75.0 } The icon's listed are in the share/images/logos directory, but all I get are Question Mark's on the status map, nothing on the extended host info pages, and square blocks in the 3-D map. What am I missing to make the images appear? Any help appreciated. I'm also having the circle clipping problem posted earlier and would like an answer to that one also. markh ======----- ://F2 new technology for real integration -----======== Mark A. Holm - Director of Network Engineering & Operations Inherent.com, Inc. 2140 SW Jefferson St. Phone: (503) 224-6751 Suite 200 extension 236 Portland, OR 97201 Fax: (503) 224-8872 > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rplewe at hpce.nec.com Wed Mar 26 08:23:55 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Wed, 26 Mar 2003 08:23:55 +0100 Subject: Dependency Stuff In-Reply-To: ; from rsr@inorganic.org on Tue, Mar 25, 2003 at 09:34:31PM -0800 References: Message-ID: <20030326082354.A1483@hpce.nec.com> On Tue, Mar 25, 2003 at 09:34:31PM -0800, Roy S. Rapoport wrote: > > I suspect this was answered before on the mailing list, but I can't search it > right now. > > I'm trying to get statusmap to show hosts in a way that corresponds with the > dependency file (so, for example, the next hop is shown connected in > a line to my gateway, not directly to the nagios system). > > My dependency file is: > define servicedependency { [...] > > define hostdependency { [...] > > I haven't tested a failure to see if Nagios will do the right thing yet, but > statusmap shows gw and nexthop on the same 'level'. What am I missing? You're missing the "parent" directive. See http://www.nagios.org/faqs/viewfaq.php?faq_id=145 Rasmus ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Wed Mar 26 08:41:42 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-1?q?H=FCttig?=) Date: Wed, 26 Mar 2003 08:41:42 +0100 Subject: Dependency Stuff In-Reply-To: References: Message-ID: <200303260841.42706.Michael.Huettig@Medien-Systempartner.de> Am Mittwoch, 26. M?rz 2003 06:34 schrieb Roy S. Rapoport: Hi Roy, Status-Map-CGI works with the parent-directive, service- and host-dependency are doing the notifications, if a host or a service is going down. So you don't receive a lot of notifications of hosts and services if the dependent host NEXTHOP is going down. -- Michael > I suspect this was answered before on the mailing list, but I can't search > it right now. > > I'm trying to get statusmap to show hosts in a way that corresponds with > the dependency file (so, for example, the next hop is shown connected in a > line to my gateway, not directly to the nagios system). > > My dependency file is: > define servicedependency { > host_name gw > service_description ALIVE > dependent_host_name nexthop > dependent_service_description ALIVE > execution_failure_criteria w,u,c > notification_failure_criteria w,u,c > } > > define hostdependency { > host_name gw > dependent_host_name nexthop > notification_failure_criteria d,u > } > > gw is my first hop, nexthop is, well, my next hop. > > I haven't tested a failure to see if Nagios will do the right thing yet, > but statusmap shows gw and nexthop on the same 'level'. What am I missing? > > -roy > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pascal.renaut at electricite-strasbourg.fr Wed Mar 26 09:33:32 2003 From: pascal.renaut at electricite-strasbourg.fr (Pascal RENAUT/GROUPE-ES) Date: Wed, 26 Mar 2003 09:33:32 +0100 Subject: Check_nrpe (1.8) to connect on remote AIX box - inetd.conf file Message-ID: Hi, all. I'm trying to use check_nrpe to execute commands (check_disk, check_load, ...) on a remote AIX box. In the README file, it says that I must add in Inetd.conf file this line : - nrpe stream tcp nowait root /usr/sbin/tcpd .... but on my remote AIX box, this tcpd file is nowhere to be found. Anybody can help me. Perhaps that tcpd file is under other name on AIX box Thanks for your help PS : my excuse for this english language :=) ..................................................................................................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Wed Mar 26 09:58:13 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Wed, 26 Mar 2003 08:58:13 +0000 (GMT) Subject: compile free memory on tru64 unix with gcc In-Reply-To: References: Message-ID: <20030326085813.93583.qmail@web12603.mail.yahoo.com> Hi All Can somebody compile the following nagios plugins for me on a tru64 box if you have..currently i dont have gnu c compiler on my box regards Hrishy __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com -------------- next part -------------- A non-text attachment was scrubbed... Name: check_memory.tgz Type: application/x-gzip-compressed Size: 5813 bytes Desc: check_memory.tgz URL: From eduardoleitao at interacesso.pt Wed Mar 26 10:32:58 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 09:32:58 +0000 Subject: check https Message-ID: <1048671179.1681.1.camel@Monitor> I would like to know if someone knows how i can monitor the https service. Best regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Wed Mar 26 10:45:29 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Wed, 26 Mar 2003 09:45:29 +0000 Subject: check_http Message-ID: Good morning all, I am having a problem with check_http. I have added another server to my check_http service service which has been working fine with a number of other servers for almost a year now. Whenever the check_http commands runs against the new server, I get the following warning message : [root at MyServer libexec]# ./check_http -H 194.0.1.95 HTTP WARNING: HTTP/1.1 403 Forbidden If I run it against the server name, ie ./check_http -H eros, then it fails....BUT, if I run it against the capitalised server name, ie EROS then it works ! I'm stumped ! I can surf to the web server okay throgh a web browser by IP and lower and upper case server names. I'm running Nagios V1.0 and v1.30-alpha of the plugins. Has anybody else seen this...because I am loosing hair now ! Many thanks Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: From johannes.dagemark at op5.se Wed Mar 26 10:47:16 2003 From: johannes.dagemark at op5.se (Johannes Dagemark) Date: Wed, 26 Mar 2003 10:47:16 +0100 (CET) Subject: Dependency Stuff In-Reply-To: <200303260841.42706.Michael.Huettig@Medien-Systempartner.de> References: <200303260841.42706.Michael.Huettig@Medien-Systempartner.de> Message-ID: <42283.217.16.194.9.1048672036.squirrel@smtp-gw1.op5.se> An idea for the developers... Why not use the parents directive to handle host-dependency as well. I see no point in having the redundant configuration that we have today with both parents and host/service dependencies. just an idea Regards Johannes Dagemark > Am Mittwoch, 26. M?rz 2003 06:34 schrieb Roy S. Rapoport: > Hi Roy, > Status-Map-CGI works with the parent-directive, service- and > host-dependency are doing the notifications, if a host or a service is > going down. So you don't receive a lot of notifications of hosts and > services if the dependent host NEXTHOP is going down. > > -- > Michael > >> I suspect this was answered before on the mailing list, but I can't >> search it right now. >> >> I'm trying to get statusmap to show hosts in a way that corresponds >> with the dependency file (so, for example, the next hop is shown >> connected in a line to my gateway, not directly to the nagios system). >> >> My dependency file is: >> define servicedependency { >> host_name gw >> service_description ALIVE >> dependent_host_name nexthop >> dependent_service_description ALIVE >> execution_failure_criteria w,u,c >> notification_failure_criteria w,u,c >> } >> >> define hostdependency { >> host_name gw >> dependent_host_name nexthop >> notification_failure_criteria d,u >> } >> >> gw is my first hop, nexthop is, well, my next hop. >> >> I haven't tested a failure to see if Nagios will do the right thing >> yet, but statusmap shows gw and nexthop on the same 'level'. What am >> I missing? >> >> -roy >> >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: >> The Definitive IT and Networking Event. Be There! >> NetWorld+Interop Las Vegas 2003 -- Register today! >> http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >> _______________________________________________ >> Nagios-users mailing list >> Nagios-users at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/nagios-users >> >> ::: Please include Nagios version, plugin version (-v) and OS when ::: >> reporting any issue. Messages without supporting info will risk being >> ::: sent to /dev/null > > > > > ********************************************************************** > Diese E-Mail wurde auf Viren ueberprueft. > www.mimesweeper.com > ********************************************************************** > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk > being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at alienn.net Wed Mar 26 11:23:45 2003 From: nagios-users at alienn.net (Nicki Messerschmidt, Linksystem Muenchen GmbH) Date: Wed, 26 Mar 2003 11:23:45 +0100 Subject: check https References: <1048671179.1681.1.camel@Monitor> Message-ID: <003f01c2f381$e5371bc0$d0551ec3@linkm.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Eduardo Leito wrote: > I would like to know if someone knows how i can monitor the https > service. You have to build nagios-plugins with the configure option - --openssl= Then you can check https services with check_http -I $HOSTADDRESS$ -S - -C 30 Cheers Nicki - -- Linksystem Muenchen GmbH info at link-m.de Schloerstrasse 10 http://www.link-m.de 80634 Muenchen Tel. 089 / 890 518-0 We make the Net work. Fax 089 / 890 518-77 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use Comment: Keys at: https://www.link-m.de/pgp iQA/AwUBPoFxoes1nPm17iBDEQKzCACgyDslMAfPtLQwDWtYJBxV4XYVpAUAoIH7 ZyRWoa/9no+YuNYt6GKjs8UP =v8Yr -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ejl at man.fwltech.com Wed Mar 26 11:26:01 2003 From: ejl at man.fwltech.com (Ewan Leith) Date: Wed, 26 Mar 2003 10:26:01 -0000 Subject: Check_nrpe (1.8) to connect on remote AIX box - inetd.conf file Message-ID: <1012BD903945D411915500105A48FF57F06A2C@nt.man.fwltech.com> Aix doesn't ship with tcpd by default, its part of the tcpwrappers program. I think you can find a copy on www.bullfreeware.com Ewan > -----Original Message----- > From: Pascal RENAUT/GROUPE-ES > [mailto:pascal.renaut at electricite-strasbourg.fr] > Sent: 26 March 2003 08:34 > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Check_nrpe (1.8) to connect on remote > AIX box - > inetd.conf file > > > > Hi, all. I'm trying to use check_nrpe to execute commands (check_disk, > check_load, ...) on a remote AIX box. In the README file, it > says that I > must add in Inetd.conf file this line : > - nrpe stream tcp nowait root /usr/sbin/tcpd .... > but on my remote AIX box, this tcpd file is nowhere to be found. > Anybody can help me. Perhaps that tcpd file is under other > name on AIX box > Thanks for your help > > PS : my excuse for this english language :=) > > > > > .............................................................. > .............................................................. > ......... > > Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / > Groupe Electricit? > de Strasbourg / 67953 Strasbourg Cedex 9 > T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : > pascal.renaut at electricite-strasbourg.fr > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at alienn.net Wed Mar 26 11:29:11 2003 From: nagios-users at alienn.net (Nicki Messerschmidt, Linksystem Muenchen GmbH) Date: Wed, 26 Mar 2003 11:29:11 +0100 Subject: check https References: <1048671179.1681.1.camel@Monitor> Message-ID: <004b01c2f382$98637c70$d0551ec3@linkm.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Eduardo Leito wrote: > I would like to know if someone knows how i can monitor the https > service. A prerequisite is that you have the development version of libssl installed, after that you have to reconfigure and rebuild your nagios plugins with: ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios - --with-nagios-group=nagios --with-openssl=/usr/include (this ist the debian path to openssel/ssl.h) then you insert into checkcommands.cfg: define command{ command_name check_https command_line $USER1$/check_http -I $HOSTADDRESS$ -S -C 30 } and voila, you got https checks... Cheers Nicki - -- Linksystem Muenchen GmbH info at link-m.de Schloerstrasse 10 http://www.link-m.de 80634 Muenchen Tel. 089 / 890 518-0 We make the Net work. Fax 089 / 890 518-77 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use Comment: Keys at: https://www.link-m.de/pgp iQA/AwUBPoFy5+s1nPm17iBDEQLzpACdG/H00Hb1BU3VjLmSRneIFnoYPt4AoN0J woTGyZ68kRSxihBDXzcIR5GT =PzBe -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Wed Mar 26 11:31:49 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 10:31:49 +0000 Subject: check https In-Reply-To: <1048674373.1681.6.camel@Monitor> References: <1048671179.1681.1.camel@Monitor> <1381553108742.20030326110935@bauchi.de> <1048674373.1681.6.camel@Monitor> Message-ID: <1048674709.2197.8.camel@Monitor> Hi I have use the follow command and i get the message: "check_http: invalid option - SSL is not available" define command{ command_name check_https command_line $USER1$/check_http -I $HOSTADDRESS$ -S -e "HTTP/1." -t 30 -c 30 } What can you tell me? Best regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Wed Mar 26 11:35:55 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 10:35:55 +0000 Subject: compile plugins? Message-ID: <1048674955.2197.11.camel@Monitor> Hi Someone can tell me how i compile the plugin again, with sslsupport ... Best regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Wed Mar 26 11:43:44 2003 From: lists at bauchi.de (bauchi) Date: Wed, 26 Mar 2003 11:43:44 +0100 Subject: compile plugins? In-Reply-To: <1048674955.2197.11.camel@Monitor> References: <1048674955.2197.11.camel@Monitor> Message-ID: <581555157237.20030326114344@bauchi.de> hi Eduardo Leit?o, Mittwoch, 26. M?rz 2003 / 11:35 you wrote.. EL> Hi EL> Someone can tell me how i compile the plugin again, with sslsupport ... EL> Best regards EL> Edu EL> ------------------------------------------------------- EL> This SF.net email is sponsored by: EL> The Definitive IT and Networking Event. Be There! EL> NetWorld+Interop Las Vegas 2003 -- Register today! EL> http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en EL> _______________________________________________ EL> Nagios-users mailing list EL> Nagios-users at lists.sourceforge.net EL> https://lists.sourceforge.net/lists/listinfo/nagios-users EL> ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. EL> ::: Messages without supporting info will risk being sent to /dev/null ./configure --with-openssl=PATHTOOPENSSL --SOMEOPTIONALPARAMETERS make make install *get happy* -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dadams at johncrowley.co.uk Wed Mar 26 12:32:16 2003 From: dadams at johncrowley.co.uk (David Adams) Date: Wed, 26 Mar 2003 11:32:16 -0000 Subject: check_dns woes Message-ID: Greets all, I have been running nagios for a couple of weeks and everything has been working fine. I am monitoring two Windows 2000 DNS servers, again, both have been working fine. Yesterday, nagios said my secondary dns server was "DNS CRITICAL - Non-existent host/domain" So, in an effort to troubleshoot the server, i did a manual nslookup and the server is working fine, i ran the plugin manually and i get the same error message ./check_dns -H demon.net -s 192.168.x.x DNS CRITICAL - Non-existent host/domain The primary server which is running the same os, same everything is working just fine as far as nagios is concerned but for some reason nagios just won't talk to the secondary server even though it's working just fine. Plugins are version 1.3 nagios is version 1.0 os is OpenBSD3.0 any suggestions appreciated regards Dave ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From prisoner at addventure.com Wed Mar 26 13:25:58 2003 From: prisoner at addventure.com (Allen S. Firstenberg) Date: Wed, 26 Mar 2003 07:25:58 -0500 Subject: Dependency Stuff In-Reply-To: <42283.217.16.194.9.1048672036.squirrel@smtp-gw1.op5.se>; from Johannes Dagemark on Wed, Mar 26, 2003 at 10:47:16AM +0100 References: <200303260841.42706.Michael.Huettig@Medien-Systempartner.de> <42283.217.16.194.9.1048672036.squirrel@smtp-gw1.op5.se> Message-ID: <20030326072558.61101@addventure.com> On Wed, Mar 26, 2003 at 10:47:16AM +0100, Johannes Dagemark wrote: > Why not use the parents directive to handle host-dependency as well. I see > no point in having the redundant configuration that we have today with > both parents and host/service dependencies. I think there is some confusion about the purpose of "parents" vs the purpose of "dependencies". Both appear to do the same thing, but are intended for slightly different things, from what I read. Parents are intended to map the basic network topology. This helps Nagios (and therefore you) determine network problems if it loses touch with hosts. Hosts are intended to have parents, and it is a simple configuration option that most users will use. If your parent goes down, you enter an unreachable state distinct from up or down, and you can notify (or not) based on this state. This is simple, yet powerful, and fits most needs. It even works if you have multiple parents, and only sends out the unreachable notice if it really is unreachable. See the documentation for extensive examples. Dependencies are not as simple, and (to quote the manual) "are optional and are mainly targeted at advanced users who have complicated monitoring setups". They're not intended to show network relationships, but to show more complicated relationships - for a contrived example, Host A is powered by a generator B, which is also monitored via Nagios. There is no Internet network between the two, so B is not a parent of A, but if B is down, A will shut down as well, but the cause is because of B, not because of A. We may wish to setup a dependency relationship in this case, but not a parent relationship. Allen ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Wed Mar 26 14:23:36 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Wed, 26 Mar 2003 07:23:36 -0600 Subject: check_http Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B4753@gsmail.govst.edu> It could be resolving the server name with something other than dns, in which case it may be case sensitive as *NIX platforms are. Browsers are intended to resolve the issues themselves and generally are not case sensitive. Whatever the cause, I'm not sure what your problem is because you have stated your question/problem and your own resolution in the same e-mail. Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Wednesday, March 26, 2003 3:45 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] check_http Good morning all, I am having a problem with check_http. I have added another server to my check_http service service which has been working fine with a number of other servers for almost a year now. Whenever the check_http commands runs against the new server, I get the following warning message : [root at MyServer libexec]# ./check_http -H 194.0.1.95 HTTP WARNING: HTTP/1.1 403 Forbidden If I run it against the server name, ie ./check_http -H eros, then it fails....BUT, if I run it against the capitalised server name, ie EROS then it works ! I'm stumped ! I can surf to the web server okay throgh a web browser by IP and lower and upper case server names. I'm running Nagios V1.0 and v1.30-alpha of the plugins. Has anybody else seen this...because I am loosing hair now ! Many thanks Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: From fredrik.wanglund at datavis.se Wed Mar 26 14:33:25 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Wed, 26 Mar 2003 14:33:25 +0100 Subject: Strange service-interval References: <200303260841.42706.Michael.Huettig@Medien-Systempartner.de> Message-ID: <3E81AC25.9030509@datavis.se> I have a service, test, that should run every minute (see service-definitions below). But as you can see from Apans debug-output, the service is executed at random intervals... The load on my server is around 0.1-0.3, so I dont's think that's an issue. Wed Mar 26 13:42:45 CET 2003 Args: snmpget_ww pistol test 1048682565 1300000 1500000 Wed Mar 26 13:43:45 CET 2003 Args: snmpget_ww pistol test 1048682625 1300000 1500000 Wed Mar 26 13:44:45 CET 2003 Args: snmpget_ww pistol test 1048682685 1300000 1500000 Wed Mar 26 13:45:46 CET 2003 Args: snmpget_ww pistol test 1048682745 1300000 1500000 Wed Mar 26 13:46:45 CET 2003 Args: snmpget_ww pistol test 1048682805 1300000 1500000 Wed Mar 26 13:49:46 CET 2003 Args: snmpget_ww pistol test 1048682986 1300000 1500000 Wed Mar 26 13:50:55 CET 2003 Args: snmpget_ww pistol test 1048683055 1300000 1500000 Wed Mar 26 13:52:46 CET 2003 Args: snmpget_ww pistol test 1048683165 1300000 1500000 Wed Mar 26 13:56:25 CET 2003 Args: snmpget_ww pistol test 1048683385 1300000 1500000 Wed Mar 26 13:59:25 CET 2003 Args: snmpget_ww pistol test 1048683565 1300000 1500000 Wed Mar 26 14:02:05 CET 2003 Args: snmpget_ww pistol test 1048683725 1300000 1500000 Wed Mar 26 14:05:35 CET 2003 Args: snmpget_ww pistol test 1048683935 1300000 1500000 Wed Mar 26 14:08:25 CET 2003 Args: snmpget_ww pistol test 1048684105 1300000 1500000 Wed Mar 26 14:11:35 CET 2003 Args: snmpget_ww pistol test 1048684295 1300000 1500000 Wed Mar 26 14:14:35 CET 2003 Args: snmpget_ww pistol test 1048684475 1300000 1500000 Wed Mar 26 14:18:25 CET 2003 Args: snmpget_ww pistol test 1048684705 1300000 1500000 Wed Mar 26 14:21:02 CET 2003 Args: snmpget_ww pistol test 1048684862 1300000 1500000 Wed Mar 26 14:24:13 CET 2003 Args: snmpget_ww pistol test 1048685053 1300000 1500000 Wed Mar 26 14:26:52 CET 2003 Args: snmpget_ww pistol test 1048685212 1300000 1500000 Wed Mar 26 14:29:12 CET 2003 Args: snmpget_ww pistol test 1048685352 1300000 1500000 define service { host_name pistol service_description test check_command apan!snmpget_ww!1300000!1500000 use generic-2 normal_check_interval 1 } define service { name generic-2 active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 0 retain_status_information 1 retain_nonstatus_information 1 register 0 max_check_attempts 5 normal_check_interval 1 retry_check_interval 1 check_period 24x7 notification_interval 60 notification_period 24x7 notification_options w,u,c,r contact_groups UNIX-admins } ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Wed Mar 26 13:15:41 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 12:15:41 +0000 Subject: check dns Message-ID: <1048680941.1681.18.camel@Monitor> Hi Can you tell me why i recebe this message "CRITICAL - Plugin timed out after 10 seconds" How can i increase the time. the definition of the coommand: # 'check_dns' command definition define command{ command_name check_dns command_line $USER1$/check_dns -H www.yahoo.com -s $HOSTADDRESS$ } Best Regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Wed Mar 26 14:54:55 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Wed, 26 Mar 2003 15:54:55 +0200 Subject: Check_nrpe (1.8) to connect on remote AIX box - inetd.conf file Message-ID: <9290BC9741D67F43BDAAC84144FF870DB6926D@intecserver007.intec.co.za> You can try this line in inetd.conf nrpe stream tcp nowait nagios /usr/sbin/nrpe nrpe -c /usr/local/nagios/etc/nrpe.cfg --inetd -----Original Message----- From: Ewan Leith [mailto:ejl at man.fwltech.com] Sent: Wednesday, March 26, 2003 12:26 PM To: 'Pascal RENAUT/GROUPE-ES'; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Check_nrpe (1.8) to connect on remote AIX box - inetd.conf file Aix doesn't ship with tcpd by default, its part of the tcpwrappers program. I think you can find a copy on www.bullfreeware.com Ewan > -----Original Message----- > From: Pascal RENAUT/GROUPE-ES > [mailto:pascal.renaut at electricite-strasbourg.fr] > Sent: 26 March 2003 08:34 > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Check_nrpe (1.8) to connect on remote > AIX box - > inetd.conf file > > > > Hi, all. I'm trying to use check_nrpe to execute commands (check_disk, > check_load, ...) on a remote AIX box. In the README file, it > says that I > must add in Inetd.conf file this line : > - nrpe stream tcp nowait root /usr/sbin/tcpd .... > but on my remote AIX box, this tcpd file is nowhere to be found. > Anybody can help me. Perhaps that tcpd file is under other > name on AIX box > Thanks for your help > > PS : my excuse for this english language :=) > > > > > .............................................................. > .............................................................. > ......... > > Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / > Groupe Electricit? > de Strasbourg / 67953 Strasbourg Cedex 9 > T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : > pascal.renaut at electricite-strasbourg.fr > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DPope at bcdi.com Wed Mar 26 15:17:56 2003 From: DPope at bcdi.com (Pope, David) Date: Wed, 26 Mar 2003 09:17:56 -0500 Subject: Check_snmp and warning/critical thresholds Message-ID: <37797F68D3E8D2118BE6006008C7FE1D0257389A@mercury> Tried posting this at apan-users but not much traffic there. Maybe someone can help me with this? Cheers Dave Pope -----Original Message----- From: Pope, David [mailto:DPope at bcdi.com] Sent: Tuesday, March 25, 2003 10:15 AM To: apan-users at sourceforge.net Subject: [Apan-users] Check_snmp and warning/critical thresholds Hello all- I am using the snmpget function through apan to graph the load and temperature of my MGE-UPS. I can easily get the temperature back and graphed no problem. However I don't get the warning and critical error messages when the temperature exceeds a certain threshold. Here is my service.cfg Define service{ host_name MGE-UPS service_description TEMP is_volitile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 1 retry_check_interval 1 contact_groups nt-admins notification_interval 120 notification_period 24x7 notification_options w,u,c,r check_command apan!snmpget!mib-2.33.1.2.7.0!Celsius!0:20!0:25 } And my apan.cfg: MGE-UPS;TEMP;/usr/local/nagios/rrd/mge-temp.rrd;public:.1.3.6.1.2.1.33.1.2.7 .0;temp;LINE2;temp;Celsius; I imagine I have to put the 0:20 and 0:25 argument somewhere, but where? Whats the syntax? Any help greatly appreciated. Dave Pope ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Apan-users mailing list Apan-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/apan-users ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From DTuecks at neuwied.de Wed Mar 26 15:40:43 2003 From: DTuecks at neuwied.de (Daniel Tuecks) Date: Wed, 26 Mar 2003 15:40:43 +0100 Subject: Status Map Icons Message-ID: <3E81C9F6.1299.190641F@localhost> Hi I have some problems with my icons on the status-maps (2d & 3d). I downloaded the imagepak-base and untar-ed it to $NAGIOSBASE/images/logos Then I added the following line to my cgi.cfg: hostextinfo[nw-border]=/server/details.php?srv=nw- border;novell40.gif;novell40.jpg;novell40.gd2;Netware 5.1 Border Manager;;; All files are in place but only "?" are displayed. I'm using nagios 1.0b6 DT ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pablo.morales at abitab.com.uy Wed Mar 26 16:45:50 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Wed, 26 Mar 2003 12:45:50 -0300 Subject: Users Message-ID: <004101c2f3ae$c6ce67b0$0229c80a@abtec412> Hi. I've got a dopubt about the users nagios uses, those users, are system users like root, or fo I have to declare them in a nagios .cfg file? cause I'm habing problems with the notification method, I want to receive an e-mail when a host is down, but I think the problem is related to those users. Thanx ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Wed Mar 26 16:45:02 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Wed, 26 Mar 2003 10:45:02 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D28946@phsexch20.mgh.harvard.edu> Hi there, I recently compiled and installed NRPE 1.8 on an HP-UX 10.20 machine. The configure and make processes indicated the source code was compiled successfully. The plug-ins that I installed were those that had been compiled on an HP-UX 10.20 machine. When I run the plug-ins manually, they operate without any problems. I am trying to get the Nagios server to be able to monitor the HP-UX machine. However, I am confronted by a Connection refused by host error message. I modified the inetd.conf and services files on the machine according to the instructions included in the NRPE client. The nrpe.cfg file was also modified to allow access where necessary. Does anyone have any ideas? ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nny at questionsleep.net Wed Mar 26 17:00:29 2003 From: nny at questionsleep.net (nny) Date: Wed, 26 Mar 2003 10:00:29 -0600 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: <5593DA408212D511B0910002A513501F01D28946@phsexch20.mgh.harvard.edu> References: <5593DA408212D511B0910002A513501F01D28946@phsexch20.mgh.harvard.edu> Message-ID: <000001c2f3b0$e28b5150$6401a8c0@blister> Are you using tcp wrappers? For vinilla NRPE you really should. what is the line in your services.cfg for NRPE? what is the line in inetd.conf for NRPE? did you kill -HUP your inetd PID? as the nagios user on the nagios monitoring box, can you run check_nrpe -H ? is that when you get the connection refused error? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Kaplan, Andrew H. Sent: Wednesday, March 26, 2003 9:45 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 Hi there, I recently compiled and installed NRPE 1.8 on an HP-UX 10.20 machine. The configure and make processes indicated the source code was compiled successfully. The plug-ins that I installed were those that had been compiled on an HP-UX 10.20 machine. When I run the plug-ins manually, they operate without any problems. I am trying to get the Nagios server to be able to monitor the HP-UX machine. However, I am confronted by a Connection refused by host error message. I modified the inetd.conf and services files on the machine according to the instructions included in the NRPE client. The nrpe.cfg file was also modified to allow access where necessary. Does anyone have any ideas? ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Wed Mar 26 17:41:41 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Wed, 26 Mar 2003 11:41:41 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D28947@phsexch20.mgh.harvard.edu> Thanks for your e-mail, here are the answers to your questions: Are you using tcp wrappers? For vinilla NRPE you really should. The HP-UX box does not have the hosts.allow or hosts.deny files. Therefore TCP wrappers are not being used on this machine. what is the line in your services.cfg for NRPE? The line in the services.cfg file for the client is the following: check_command check_nrpe!check_disk1 what is the line in inetd.conf for NRPE? The line in inetd.conf is as follows: nrpe stream tcp nowait nagios /usr/sbin/tcpd /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd did you kill -HUP your inetd PID? I did not kill -HUP the inetd PID as the nagios user on the nagios monitoring box, can you run check_nrpe -H ? is that when you get the connection refused error? I ran the command mentioned above and I got the connection refused error. -----Original Message----- From: nny [mailto:nny at questionsleep.net] Sent: Wednesday, March 26, 2003 11:00 AM To: Kaplan, Andrew H.; nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 Are you using tcp wrappers? For vinilla NRPE you really should. what is the line in your services.cfg for NRPE? what is the line in inetd.conf for NRPE? did you kill -HUP your inetd PID? as the nagios user on the nagios monitoring box, can you run check_nrpe -H ? is that when you get the connection refused error? -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Kaplan, Andrew H. Sent: Wednesday, March 26, 2003 9:45 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 Hi there, I recently compiled and installed NRPE 1.8 on an HP-UX 10.20 machine. The configure and make processes indicated the source code was compiled successfully. The plug-ins that I installed were those that had been compiled on an HP-UX 10.20 machine. When I run the plug-ins manually, they operate without any problems. I am trying to get the Nagios server to be able to monitor the HP-UX machine. However, I am confronted by a Connection refused by host error message. I modified the inetd.conf and services files on the machine according to the instructions included in the NRPE client. The nrpe.cfg file was also modified to allow access where necessary. Does anyone have any ideas? ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlott at reliablecommunications.com Wed Mar 26 17:44:02 2003 From: jlott at reliablecommunications.com (Jeremy Lott) Date: Wed, 26 Mar 2003 10:44:02 -0600 Subject: cgi.cfg error on line 15 Message-ID: <267CE504-5FAA-11D7-877C-003065ED6606@reliablecommunications.com> I have installed nagios 1.0 and am successfully monitoring a server. However, I have tried to enable the web interface and have thus far been unsuccessful. After I added the path to cgi.cfg in nagios.cfg and from the command line start #nagios -v /usr/local/nagios/etc/nagios.cfg I receive the following error message "/usr/local/nagios/etc/cgi.cfg' on line 15." Line 15, of course, points to "main_config_file=/usr/local/nagios/etc/nagios.cfg". The path is correct and I'm at a loss to why this is not working. Any suggestions/comments/advise would be appreciated. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jlott at reliablecommunications.com Wed Mar 26 17:45:19 2003 From: jlott at reliablecommunications.com (jlott) Date: 26 Mar 2003 16:45:19 -0000 Subject: cgi.cfg error on line 15 Message-ID: <20030326164519.27063.qmail@pod-163.dolphin-server.co.uk> I have installed nagios 1.0 and am successfully monitoring a server. However, I have tried to enable the web interface and have thus far been unsuccessful. After I added the path to cgi.cfg in nagios.cfg and from the command line start #nagios -v /usr/local/nagios/etc/nagios.cfg I receive the following error message "/usr/local/nagios/etc/cgi.cfg' on line 15." Line 15, of course, points to "main_config_file=/usr/local/nagios/etc/nagios.cfg" ;. The path is correct and I'm at a loss to why this is not working. Any suggestions/comments/advise would be appreciated. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Wed Mar 26 17:52:49 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Wed, 26 Mar 2003 10:52:49 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D113806@ADAEVS01.int.chickasaw.net> Hello list! I have a challenge, what's going on is this. I want to use the CGI auth mechanism but I don't want to use apache's built in auth stuff (even mod_auth_ldap). I actually have a PHP script that authenticates users against an Active Directory server. Is there any way to make the CGI's work with this. I've tried a few things so far but havn't had any really good results. First I tried the apache_setenv for php, tried to set the REMOTE_USER variable. No worky worky, not sure if I used correctly or not, haven't been able to find docs for it. Next I tried to edit the auth.c library for Nagios itself. It pulls the user from the REMOTE_USER using apaches libs, so I thought I would user a different variable name, but I then figured out I still don't know how I would populate the environment variable. The only thing I know of now is to really butcher the auth library for Nagios. I guess I could maybe also write a C program to run from the script to populate the environment variable, another option is maybe to use mod_rewrite(??) But I'm not sure how. I guess I'm checking to see if anyone has tried a different auth procedure and how they did it. Thanks for the space! -------------- next part -------------- An HTML attachment was scrubbed... URL: From eduardoleitao at interacesso.pt Wed Mar 26 18:07:22 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 17:07:22 +0000 Subject: chech https Message-ID: <1048698442.5958.5.camel@Monitor> Hi I have done the next things: -build nagios-plugins with the configure option --openssl= - check https services with check_http -I $HOSTADDRESS$ -S -C 30 but i get the message "check_http: invalid option - SSL is not available ". What more can I do. something is missing and i don't know what. Some ideas. Best regards ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Wed Mar 26 18:08:33 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 17:08:33 +0000 Subject: parameters Message-ID: <1048698514.5973.7.camel@Monitor> Hi where can i get the parameters of the commands. Thanks Eduardo ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 26 18:44:12 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 26 Mar 2003 12:44:12 -0500 (EST) Subject: chech https In-Reply-To: <1048698442.5958.5.camel@Monitor> References: <1048698442.5958.5.camel@Monitor> Message-ID: On 26 Mar 2003, Eduardo Leit?o wrote: > > Hi > > I have done the next things: > -build nagios-plugins with the configure option --openssl= ssl.h> > - check https services with check_http -I $HOSTADDRESS$ -S -C 30 > > but i get the message "check_http: invalid option - SSL is not available > ". What more can I do. something is missing and i don't know what. Some > ideas. > did configure coplain about not finding openssl? If so - the path supplied was not sufficient or correct. -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Wed Mar 26 18:35:03 2003 From: lists at bauchi.de (bauchi) Date: Wed, 26 Mar 2003 18:35:03 +0100 Subject: parameters In-Reply-To: <1048698514.5973.7.camel@Monitor> References: <1048698514.5973.7.camel@Monitor> Message-ID: <1811579836214.20030326183503@bauchi.de> EL> Hi EL> where can i get the parameters of the commands. EL> Thanks EL> Eduardo almost any program running under a uni* like operating system has some built in help available when called with a "-h" or "--help" parameter appended to it's command line ... the nagios plugins share this behaviour maybe you should first RTFM and use the RPM's of Nagios, instead of trying to make your way on your own, deaf and blind ... and please keep the auto-added signature lines in mind: > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null just my 2 cent... -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Wed Mar 26 18:45:42 2003 From: lists at bauchi.de (bauchi) Date: Wed, 26 Mar 2003 18:45:42 +0100 Subject: Authentication Blues In-Reply-To: <352B04312822444A962714393AED8A4D113806@ADAEVS01.int.chickasaw.net> References: <352B04312822444A962714393AED8A4D113806@ADAEVS01.int.chickasaw.net> Message-ID: <1841580475984.20030326184542@bauchi.de> JR> Hello list! JR> I have a challenge, what's going on is this. I want to use JR> the CGI auth mechanism but I don't want to use apache's built in auth JR> stuff (even mod_auth_ldap). I actually have a PHP script that JR> authenticates users against an Active Directory server. Is there any JR> way to make the CGI's work with this. I've tried a few things so far JR> but havn't had any really good results. errmm.. why don't you like mod_auth_ldap, did it not work for you ? we use it for authentication against netscape ldap and novell e-directory and everything works really smooth .. (our nagios webserver itself authenticates against novell e-dir over a tls encrypted connection) the crappy active directory shouldn't be a problem for mod_auth_ldap JR> First I tried the apache_setenv for php, tried to set the REMOTE_USER JR> variable. No worky worky, not sure if I used correctly or not, haven't JR> been able to find docs for it. nice try, but effectless as the variable will only be filled with your value while running the php file .. no longer :-( JR> Next I tried to edit the auth.c library for Nagios itself. It pulls the JR> user from the REMOTE_USER using apaches libs, so I thought I would user JR> a different variable name, but I then figured out I still don't know JR> how I would populate the environment variable. JR> The only thing I know of now is to really butcher the auth library for JR> Nagios. I guess I could maybe also write a C program to run from the JR> script to populate the environment variable, another option is maybe to JR> use mod_rewrite(??) But I'm not sure how. i don't have any idea how you could use mod_rewrite... if you use apache2 you could help yourself with some kind of input filter which set's the env var's, i've never done this myself, just read about the powerful input filters of apache2 [snip] -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeremy+nagios at undergrid.net Wed Mar 26 18:40:05 2003 From: jeremy+nagios at undergrid.net (Jeremy T. Bouse) Date: Wed, 26 Mar 2003 09:40:05 -0800 Subject: chech https In-Reply-To: <1048698442.5958.5.camel@Monitor> References: <1048698442.5958.5.camel@Monitor> Message-ID: <20030326174005.GC4133@UnderGrid.net> Sounds like your check_http was not actually compiled with SSL then... I would check the config.log and watch the execution of configure more closely to see if it reports any errors when checking for OpenSSL... Likewise you should be able to 'ldd check_http' and see libssl and libcrypto being link'd into it... Jeremy On Wed, Mar 26, 2003 at 05:07:22PM +0000, Eduardo Leit?o wrote: > > Hi > > I have done the next things: > -build nagios-plugins with the configure option --openssl= ssl.h> > - check https services with check_http -I $HOSTADDRESS$ -S -C 30 > > but i get the message "check_http: invalid option - SSL is not available > ". What more can I do. something is missing and i don't know what. Some > ideas. > > Best regards > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 26 18:41:26 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 26 Mar 2003 12:41:26 -0500 (EST) Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: <5593DA408212D511B0910002A513501F01D28947@phsexch20.mgh.harvard.edu> References: <5593DA408212D511B0910002A513501F01D28947@phsexch20.mgh.harvard.edu> Message-ID: On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Thanks for your e-mail, here are the answers to your questions: > > Are you using tcp wrappers? For vinilla NRPE you really should. > The HP-UX box does not have the hosts.allow or hosts.deny files. > Therefore TCP wrappers are not being used on this machine. > > what is the line in your services.cfg for NRPE? > The line in the services.cfg file for the client is the following: > check_command check_nrpe!check_disk1 > > what is the line in inetd.conf for NRPE? > The line in inetd.conf is as follows: > nrpe stream tcp nowait nagios /usr/sbin/tcpd > /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd > The above line - /usr/sbi/tcpd IS tcp_wrappers !!! if tcpd binary doesn't exist - then the above line is wrong. > did you kill -HUP your inetd PID? > I did not kill -HUP the inetd PID You should always hup inetd after changing the config files to apply changes.. > > as the nagios user on the nagios monitoring box, can you run check_nrpe > -H ? is that when you get the connection refused error? > I ran the command mentioned above and I got the connection refused > error. > > -----Original Message----- > From: nny [mailto:nny at questionsleep.net] > Sent: Wednesday, March 26, 2003 11:00 AM > To: Kaplan, Andrew H.; nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > Are you using tcp wrappers? For vinilla NRPE you really should. > > what is the line in your services.cfg for NRPE? > > what is the line in inetd.conf for NRPE? > > did you kill -HUP your inetd PID? > > as the nagios user on the nagios monitoring box, can you run check_nrpe > -H ? is that when you get the connection refused error? > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Kaplan, > Andrew H. > Sent: Wednesday, March 26, 2003 9:45 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > Hi there, > > I recently compiled and installed NRPE 1.8 on an HP-UX 10.20 machine. > The configure and make processes indicated the source code was compiled > successfully. The plug-ins that I installed were those that had been > compiled on an HP-UX 10.20 machine. When I run the plug-ins manually, > they operate without any problems. > > I am trying to get the Nagios server to be able to monitor the HP-UX > machine. However, I am confronted by a Connection refused by host error > message. I modified the inetd.conf and services files on the machine > according to the instructions included in the NRPE client. The nrpe.cfg > file was also modified to allow access where necessary. Does anyone have > any ideas? > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 26 18:43:00 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 26 Mar 2003 12:43:00 -0500 (EST) Subject: parameters In-Reply-To: <1048698514.5973.7.camel@Monitor> References: <1048698514.5973.7.camel@Monitor> Message-ID: On 26 Mar 2003, Eduardo Leit?o wrote: > Hi > > where can i get the parameters of the commands. > > Thanks > Eduardo > I am assuming you mean for the plugins. All the plugins in the distribution have a -h option for help on parameters. -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Wed Mar 26 19:13:59 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 18:13:59 +0000 Subject: chech https In-Reply-To: References: Message-ID: <1048702440.5973.14.camel@Monitor> Hi again Where i could see if configure coplain about not finding openssl thanks Eduardo On Wed, 2003-03-26 at 17:44, Subhendu Ghosh wrote: > On 26 Mar 2003, Eduardo Leit?o wrote: > > > > > Hi > > > > I have done the next things: > > -build nagios-plugins with the configure option --openssl= > ssl.h> > > - check https services with check_http -I $HOSTADDRESS$ -S -C 30 > > > > but i get the message "check_http: invalid option - SSL is not available > > ". What more can I do. something is missing and i don't know what. Some > > ideas. > > > > did configure coplain about not finding openssl? If so - the path > supplied was not sufficient or correct. > > -- > > -sg > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Wed Mar 26 19:08:10 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Wed, 26 Mar 2003 10:08:10 -0800 (PST) Subject: Dependency Stuff In-Reply-To: <20030326082354.A1483@hpce.nec.com> References: <20030326082354.A1483@hpce.nec.com> Message-ID: On Wed, 26 Mar 2003, Rasmus Plewe wrote: > You're missing the "parent" directive. See > http://www.nagios.org/faqs/viewfaq.php?faq_id=145 Ah, thanks! -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Wed Mar 26 18:55:56 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Wed, 26 Mar 2003 11:55:56 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D026834@ADAEVS01.int.chickasaw.net> Ya, I used mod_auth_ldap The only deal is I have a lot more scripts and I didn't wanted to use the local stuff, so there would be only one login, I also wanted to give the option of logging in or not, so other users could see but not touch, if you know what I mean. What version of mod_auth_ldap are you using, the one I'm using only populates the LDAP_USER variable anyways, and I'd have to hack it to get it to load REMOTE_USER.I don't know. Maybe I'll end up using the mod_auth_ldap after all. I Just wanted more of a seamless integration. I'll hold out a little longer before I give up though. Thanks for the reply! JR> Hello list! JR> I have a challenge, what's going on is this. I want to use JR> the CGI auth mechanism but I don't want to use apache's built in auth JR> stuff (even mod_auth_ldap). I actually have a PHP script that JR> authenticates users against an Active Directory server. Is there any JR> way to make the CGI's work with this. I've tried a few things so far JR> but havn't had any really good results. errmm.. why don't you like mod_auth_ldap, did it not work for you ? we use it for authentication against netscape ldap and novell e-directory and everything works really smooth .. (our nagios webserver itself authenticates against novell e-dir over a tls encrypted connection) the crappy active directory shouldn't be a problem for mod_auth_ldap JR> First I tried the apache_setenv for php, tried to set the REMOTE_USER JR> variable. No worky worky, not sure if I used correctly or not, haven't JR> been able to find docs for it. nice try, but effectless as the variable will only be filled with your value while running the php file .. no longer :-( JR> Next I tried to edit the auth.c library for Nagios itself. It pulls the JR> user from the REMOTE_USER using apaches libs, so I thought I would user JR> a different variable name, but I then figured out I still don't know JR> how I would populate the environment variable. JR> The only thing I know of now is to really butcher the auth library for JR> Nagios. I guess I could maybe also write a C program to run from the JR> script to populate the environment variable, another option is maybe to JR> use mod_rewrite(??) But I'm not sure how. i don't have any idea how you could use mod_rewrite... if you use apache2 you could help yourself with some kind of input filter which set's the env var's, i've never done this myself, just read about the powerful input filters of apache2 [snip] -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Wed Mar 26 19:27:18 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Wed, 26 Mar 2003 15:27:18 -0300 Subject: statusmap - error Message-ID: Please, anybody help me ? I installed Nagios 1.0 version with GD library 2.0.11 version. When I select "Status Map", I receive the follow error: ************************************************** Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. Apache/1.3.27 Server at nagios Port 80 ************************************************** What is happen ? Thank you. Hugo ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From erik.larkin at nuasis.com Wed Mar 26 19:18:45 2003 From: erik.larkin at nuasis.com (Erik Larkin) Date: Wed, 26 Mar 2003 10:18:45 -0800 Subject: More info/leads: Huge delay in scheduling freshness service chec k after 3rd try Message-ID: FYI, after a little more research, I think I've narrowed it down to an issue with the scheduling queue. I tossed a debug option in my stale-service script that logs the time it's called. Then I cross-referenced those times with the times that nagios logged a failed freshness check, and the times that nagios received the response from the stale-service script. The time difference between when the script is actually called and when nagios logs the script response is maybe a few seconds, leading me to believe that the service reaper is ok. However, the delay between when nagios says it failed a freshness check and is forcing a service check, and when the stale-service script is actually called, was over 32000 seconds at last failure. So, I'm now focusing on problems with the scheduling queue. Any ideas, anyone? -----Original Message----- From: Erik Larkin Sent: Tuesday, March 25, 2003 2:44 PM To: 'nagios-users at lists.sourceforge.net' Subject: Huge delay in scheduling freshness service check after 3rd try Allright, I'm finally admitting that I can't figure this one out myself. Trust me, it's a difficult admission, and has involved much tinkering, hair-pulling, and searching of mailing lists (although searching doesn't seem to be working right now for the sourceforge lists?). Anyways, I've got a nagios architecture with multiple distributed servers sending check results to a central nagios server via ncsa. The central server doesn't perform any active checks (no network access to the distributed network), but is configured to perform a freshness check for a service called 'Heartbeat' for each distributed instance. The heartbeat is just a ping of the loopback performed every minute, although I've since discovered I could have used check_dummy. Seems to be a pretty common setup, and for the most part it works very well. Except for the freshness checks. They work fine up until the 3rd failed freshness check or so, at which point latency skyrockets. From 99 to 280 to 749, on up to thousands and thousands of seconds of latency. The log reflects a failed freshness check, and a message about forcing the service (which is the typical echo and exit 2). But the service alert response is delayed more and more. I've tried everything I can think of, and learned a great deal in my searching and tweaking, but I can't change this behavior. Here's what I've tried: - change the service_reaper_frequency to 3. saw a reference for this in the list for something else, thought it might help. I still suspect some problem with the service reaper. - added a 1 second sleep to the script (thought maybe it was returning its status too quickly) - futzed with the normal_check_interval for the heartbeat service on the central server. gave it ranges between 1 minute and 15 minutes. - enabled check_for_orphaned_services - tossed a debug option in my stale_service script that sent a line of output to a log, to make sure that the script itself was being run (it was) - setting is_volatile (just to check) - other things I can't think of right now. And here's the service entry: define service{ use qab24x7-service service_description Heartbeat hostgroup_name qabdbfohub normal_check_interval 15 is_volatile 1 max_check_attempts 1 check_freshness 1 notification_interval 15 freshness_threshold 180 check_command stale-service } And here's some relevant log snippets: [1048628465] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048628471] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048628705] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 58 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048628711] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048628945] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048628966] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048629185] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 42 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048629287] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048629485] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 21 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048629770] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048629965] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 20 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. [1048630715] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: Heartbeat check is stale! [1048630925] Warning: The results of service 'Heartbeat' on host 'sj-qab-db01' are stale by 31 seconds (threshold=180 seconds). I'm forcing an immediate check of the service. Sorry for the the long email/spam, but please oh please: does anyone have any info regarding this problem? Many thanks, Erik Larkin elarkin at nuasis.com p.s. Just to go on record, I do think Nagios rocks. Hard. But this itty bitty problem is driving me nuts! ;) ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Wed Mar 26 19:21:30 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 26 Mar 2003 18:21:30 +0000 Subject: parameters In-Reply-To: References: Message-ID: <1048702890.5973.17.camel@Monitor> Hi yes for the plugins, but how i execute the command to see. Thanks Edu On Wed, 2003-03-26 at 17:43, Subhendu Ghosh wrote: > On 26 Mar 2003, Eduardo Leit?o wrote: > > > Hi > > > > where can i get the parameters of the commands. > > > > Thanks > > Eduardo > > > > > I am assuming you mean for the plugins. All the plugins in the > distribution have a -h option for help on parameters. > > -- > -sg > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Wed Mar 26 19:35:07 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Wed, 26 Mar 2003 12:35:07 -0600 Subject: parameters Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444A8007D@gsmail.govst.edu> You need to learn how to use a *NIX platform, go to the help or support site for your OS, learn how to use it then come back here if you have any questions regarding Nagios. Try ./command --help Then "cd /" Then "rm -rf *" OK, I can't be that mean. Don't do the last two lines, but you might want to know what they do. Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: Eduardo Leit?o [mailto:eduardoleitao at interacesso.pt] Sent: Wednesday, March 26, 2003 12:22 PM To: Subhendu Ghosh Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] parameters Hi yes for the plugins, but how i execute the command to see. Thanks Edu On Wed, 2003-03-26 at 17:43, Subhendu Ghosh wrote: > On 26 Mar 2003, Eduardo Leit?o wrote: > > > Hi > > > > where can i get the parameters of the commands. > > > > Thanks > > Eduardo > > > > > I am assuming you mean for the plugins. All the plugins in the > distribution have a -h option for help on parameters. > > -- > -sg > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Wed Mar 26 19:47:14 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Wed, 26 Mar 2003 13:47:14 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D2894A@phsexch20.mgh.harvard.edu> Subhendu, I double-checked the HP-UX system, and there was no instance of tcpd on the computer. I modified the the inetd.conf file to now read as follows: nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd I also ran the kill -HUP command for inetd. Manually running the check_nrpe command from the Nagios server resulted in the same Connection Refused By Host error message. -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Wednesday, March 26, 2003 12:41 PM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Thanks for your e-mail, here are the answers to your questions: > > Are you using tcp wrappers? For vinilla NRPE you really should. > The HP-UX box does not have the hosts.allow or hosts.deny files. > Therefore TCP wrappers are not being used on this machine. > > what is the line in your services.cfg for NRPE? > The line in the services.cfg file for the client is the following: > check_command check_nrpe!check_disk1 > > what is the line in inetd.conf for NRPE? > The line in inetd.conf is as follows: > nrpe stream tcp nowait nagios /usr/sbin/tcpd > /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd > The above line - /usr/sbi/tcpd IS tcp_wrappers !!! if tcpd binary doesn't exist - then the above line is wrong. > did you kill -HUP your inetd PID? > I did not kill -HUP the inetd PID You should always hup inetd after changing the config files to apply changes.. > > as the nagios user on the nagios monitoring box, can you run check_nrpe > -H ? is that when you get the connection refused error? > I ran the command mentioned above and I got the connection refused > error. > > -----Original Message----- > From: nny [mailto:nny at questionsleep.net] > Sent: Wednesday, March 26, 2003 11:00 AM > To: Kaplan, Andrew H.; nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > Are you using tcp wrappers? For vinilla NRPE you really should. > > what is the line in your services.cfg for NRPE? > > what is the line in inetd.conf for NRPE? > > did you kill -HUP your inetd PID? > > as the nagios user on the nagios monitoring box, can you run check_nrpe > -H ? is that when you get the connection refused error? > > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Kaplan, > Andrew H. > Sent: Wednesday, March 26, 2003 9:45 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > Hi there, > > I recently compiled and installed NRPE 1.8 on an HP-UX 10.20 machine. > The configure and make processes indicated the source code was compiled > successfully. The plug-ins that I installed were those that had been > compiled on an HP-UX 10.20 machine. When I run the plug-ins manually, > they operate without any problems. > > I am trying to get the Nagios server to be able to monitor the HP-UX > machine. However, I am confronted by a Connection refused by host error > message. I modified the inetd.conf and services files on the machine > according to the instructions included in the NRPE client. The nrpe.cfg > file was also modified to allow access where necessary. Does anyone have > any ideas? > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pspa at gp.novis.pt Wed Mar 26 20:08:33 2003 From: pspa at gp.novis.pt (Paulo Pinto) Date: 26 Mar 2003 19:08:33 +0000 Subject: parameters In-Reply-To: <1048702890.5973.17.camel@Monitor> References: <1048702890.5973.17.camel@Monitor> Message-ID: <1048705713.5883.41.camel@voodoo.ip.pt> cd /path/to/nagios/plugins ./plugin -h Example: cd /usr/local/nagios/libexec ./check_http -h :) On Wed, 2003-03-26 at 18:21, Eduardo Leit?o wrote: > Hi > yes for the plugins, but how i execute the command to see. > > Thanks > Edu > > On Wed, 2003-03-26 at 17:43, Subhendu Ghosh wrote: > > On 26 Mar 2003, Eduardo Leit?o wrote: > > > > > Hi > > > > > > where can i get the parameters of the commands. > > > > > > Thanks > > > Eduardo > > > > > > > > > I am assuming you mean for the plugins. All the plugins in the > > distribution have a -h option for help on parameters. > > > > -- > > -sg > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null -- Paulo Pinto Novis IT - GSP ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at bauchi.de Wed Mar 26 19:42:54 2003 From: lists at bauchi.de (bauchi) Date: Wed, 26 Mar 2003 19:42:54 +0100 Subject: Authentication Blues In-Reply-To: <352B04312822444A962714393AED8A4D026834@ADAEVS01.int.chickasaw.net> References: <352B04312822444A962714393AED8A4D026834@ADAEVS01.int.chickasaw.net> Message-ID: <1051583907188.20030326194254@bauchi.de> hi Jeremy Russell, Mittwoch, 26. M?rz 2003 / 18:55 you wrote.. JR> Ya, I used mod_auth_ldap The only deal is I have a lot more scripts and JR> I didn't wanted to use the local stuff, so there would be only one JR> login, I also wanted to give the option of logging in or not, so other JR> users could see but not touch, if you know what I mean. single sign on is a dream of every admin ... but maybe someday it'll come true ;) JR> What version of mod_auth_ldap are you using, the one I'm using only JR> populates the LDAP_USER variable anyways, and I'd have to hack it to get JR> it to load REMOTE_USER.I don't know. Maybe I'll end up using the JR> mod_auth_ldap after all. I Just wanted more of a seamless integration. JR> I'll hold out a little longer before I give up though. Thanks for the JR> reply! i'm using the actual version from muquit.com (2.4.1) http://www.muquit.com/muquit/software/mod_auth_ldap/mod_auth_ldap.tar.gz i didn't include it as a static compiled mod to my apache because i had some trouble with it this way.. i've made a dso for apache just like it was mentioned on the website: /usr/local/apache/bin/apxs -I/usr/local/include -L/usr/local/lib -lldap -llber -i -a -c mod_auth_ldap.c and everything worked out as expected :) here's how i've proteced the directory ... taken from the virtualhost context: ... AuthName "Nagios... plese authenticate " AuthType Basic LDAP_Server 127.0.0.1 #<--- running stunnel to the nds LDAP_Port 14000 #<--- running stunnel to the nds Base_DN "o=sskm" UID_Attr cn require valid-user Options None AllowOverride All hope that helps -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 26 19:41:46 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 26 Mar 2003 13:41:46 -0500 (EST) Subject: parameters In-Reply-To: <1048702890.5973.17.camel@Monitor> References: <1048702890.5973.17.camel@Monitor> Message-ID: At your command prompt - change over to the directory where the plugins are installed. and run the following: ./check_http -h substitute the name of the plugin for check_http to see it help. -sg On 26 Mar 2003, Eduardo Leit?o wrote: > Hi > yes for the plugins, but how i execute the command to see. > > Thanks > Edu > > On Wed, 2003-03-26 at 17:43, Subhendu Ghosh wrote: > > On 26 Mar 2003, Eduardo Leit??o wrote: > > > > > Hi > > > > > > where can i get the parameters of the commands. > > > > > > Thanks > > > Eduardo > > > > > > > > > I am assuming you mean for the plugins. All the plugins in the > > distribution have a -h option for help on parameters. > > > > -- > > -sg > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Wed Mar 26 20:04:21 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Wed, 26 Mar 2003 13:04:21 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D026836@ADAEVS01.int.chickasaw.net> Weird! That's the same module I'm using, and compiled it as a shared module, just as you. Well I had to statically link glibc because I'm running Solaris and the /usr/ccs/bin/ld doesn't get along well with glib. But it works; it just doesn't populate the REMOTE_USER var for me... At least I don't think it did, maybe it did and I'm smoking crack! :) Anyways, that works fine, I just and dreaming big I guess about Single Sign On, :) It does work, I am smoking crack. I just didn't have my .htaccess in the directory for nagios. I had it in a separate dir trying to emulate Single Sign On. However, I'm still searching. :) Somebody has had to do it at some point in time! Anyways, if v3 comes out in php like it is being talked about, my methods may be quite useful! Thanks. Jeremy (The big Single Sign On Dreamer) :) -----Original Message----- From: bauchi [mailto:lists at bauchi.de] Sent: Wednesday, March 26, 2003 12:43 PM To: Jeremy Russell Cc: nagios-users at lists.sourceforge.net Subject: Re[2]: [Nagios-users] Authentication Blues hi Jeremy Russell, Mittwoch, 26. M?rz 2003 / 18:55 you wrote.. JR> Ya, I used mod_auth_ldap The only deal is I have a lot more scripts and JR> I didn't wanted to use the local stuff, so there would be only one JR> login, I also wanted to give the option of logging in or not, so other JR> users could see but not touch, if you know what I mean. single sign on is a dream of every admin ... but maybe someday it'll come true ;) JR> What version of mod_auth_ldap are you using, the one I'm using only JR> populates the LDAP_USER variable anyways, and I'd have to hack it to get JR> it to load REMOTE_USER.I don't know. Maybe I'll end up using the JR> mod_auth_ldap after all. I Just wanted more of a seamless integration. JR> I'll hold out a little longer before I give up though. Thanks for the JR> reply! i'm using the actual version from muquit.com (2.4.1) http://www.muquit.com/muquit/software/mod_auth_ldap/mod_auth_ldap.tar.gz i didn't include it as a static compiled mod to my apache because i had some trouble with it this way.. i've made a dso for apache just like it was mentioned on the website: /usr/local/apache/bin/apxs -I/usr/local/include -L/usr/local/lib -lldap -llber -i -a -c mod_auth_ldap.c and everything worked out as expected :) here's how i've proteced the directory ... taken from the virtualhost context: ... AuthName "Nagios... plese authenticate " AuthType Basic LDAP_Server 127.0.0.1 #<--- running stunnel to the nds LDAP_Port 14000 #<--- running stunnel to the nds Base_DN "o=sskm" UID_Attr cn require valid-user Options None AllowOverride All hope that helps -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From smccool at ascendantmedia.com Wed Mar 26 19:53:05 2003 From: smccool at ascendantmedia.com (Shawn McCool) Date: Wed, 26 Mar 2003 12:53:05 -0600 Subject: check_nagios and ps problem Message-ID: <007601c2f3c8$f03f8a60$22652044@shawn> check_nagios gets a ps list and searches for the final arguement in the check_nagios command line nagios_check_command=/usr/local/nagios/libexec/check_nagios /usr/local/nagios/var/status.log 5 '/usr/local/nagios/bin/nagios' In this case it checks for /usr/local/nagios/bin/nagios The Documentation: # Note: If you are using the check_nagios plugin here, the first # argument should be the physical path to the status log, the # second argument is the number of minutes that the status log # contents should be "fresher" than, and the third argument is the # string that should be matched from the output of the 'ps' # command in order to locate the running Nagios process. That # process string is going to vary depending on how you start # Nagios. Run the 'ps' command manually to see what the command # line entry for the Nagios process looks like. Suggest that i should run 'ps' to see what it returns. Wether I am the Nagios user or root ps has inappropriate return values for this check command. # ps PID TTY TIME CMD 534 tty1 00:00:00 mingetty 535 tty2 00:00:00 mingetty 536 tty3 00:00:00 mingetty 537 tty4 00:00:00 mingetty 538 tty5 00:00:00 mingetty 539 tty6 00:00:00 mingetty 1860 pts/8 00:00:00 bash 14765 pts/3 00:00:00 bash 11225 pts/6 00:00:00 bash 12483 pts/9 00:00:00 bash 12490 pts/9 00:00:01 ssh 12509 pts/10 00:00:00 bash 12540 pts/10 00:00:00 ssh 12774 pts/11 00:00:00 bash 12805 pts/11 00:00:00 ssh 19339 pts/2 00:00:00 bash 22771 pts/5 00:00:00 shell 22772 pts/5 00:00:00 ssh 24309 pts/12 00:00:00 bash 28146 pts/6 00:00:01 ssh 28993 pts/13 00:00:00 bash 29269 pts/12 00:00:00 ssh 29309 pts/14 00:00:00 bash 29316 pts/14 00:00:00 ssh 8053 pts/15 00:00:00 bash 11875 pts/0 00:00:00 bash 14706 pts/2 00:00:00 ps Although I assure you nagios IS running # ps waux | grep nagios nagios 12253 0.0 0.0 1560 880 ? S 12:32 0:00 ./nagios -d ../etc/nagios.cfg Is there a way to change the command line for ps so that I can have it return the appropriate information? -------------- next part -------------- An HTML attachment was scrubbed... URL: From Jeremy.Russell at chickasaw.net Wed Mar 26 20:15:58 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Wed, 26 Mar 2003 13:15:58 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D113814@ADAEVS01.int.chickasaw.net> Wait, is there some way I can use a form to get credentials and then silently pass them to the apache auth popup window? That would work probably. -----Original Message----- From: Jeremy Russell Sent: Wednesday, March 26, 2003 1:04 PM To: bauchi Cc: nagios-users at lists.sourceforge.net Subject: RE: Re[2]: [Nagios-users] Authentication Blues Weird! That's the same module I'm using, and compiled it as a shared module, just as you. Well I had to statically link glibc because I'm running Solaris and the /usr/ccs/bin/ld doesn't get along well with glib. But it works; it just doesn't populate the REMOTE_USER var for me... At least I don't think it did, maybe it did and I'm smoking crack! :) Anyways, that works fine, I just and dreaming big I guess about Single Sign On, :) It does work, I am smoking crack. I just didn't have my .htaccess in the directory for nagios. I had it in a separate dir trying to emulate Single Sign On. However, I'm still searching. :) Somebody has had to do it at some point in time! Anyways, if v3 comes out in php like it is being talked about, my methods may be quite useful! Thanks. Jeremy (The big Single Sign On Dreamer) :) -----Original Message----- From: bauchi [mailto:lists at bauchi.de] Sent: Wednesday, March 26, 2003 12:43 PM To: Jeremy Russell Cc: nagios-users at lists.sourceforge.net Subject: Re[2]: [Nagios-users] Authentication Blues hi Jeremy Russell, Mittwoch, 26. M?rz 2003 / 18:55 you wrote.. JR> Ya, I used mod_auth_ldap The only deal is I have a lot more scripts and JR> I didn't wanted to use the local stuff, so there would be only one JR> login, I also wanted to give the option of logging in or not, so other JR> users could see but not touch, if you know what I mean. single sign on is a dream of every admin ... but maybe someday it'll come true ;) JR> What version of mod_auth_ldap are you using, the one I'm using only JR> populates the LDAP_USER variable anyways, and I'd have to hack it to get JR> it to load REMOTE_USER.I don't know. Maybe I'll end up using the JR> mod_auth_ldap after all. I Just wanted more of a seamless integration. JR> I'll hold out a little longer before I give up though. Thanks for the JR> reply! i'm using the actual version from muquit.com (2.4.1) http://www.muquit.com/muquit/software/mod_auth_ldap/mod_auth_ldap.tar.gz i didn't include it as a static compiled mod to my apache because i had some trouble with it this way.. i've made a dso for apache just like it was mentioned on the website: /usr/local/apache/bin/apxs -I/usr/local/include -L/usr/local/lib -lldap -llber -i -a -c mod_auth_ldap.c and everything worked out as expected :) here's how i've proteced the directory ... taken from the virtualhost context: ... AuthName "Nagios... plese authenticate " AuthType Basic LDAP_Server 127.0.0.1 #<--- running stunnel to the nds LDAP_Port 14000 #<--- running stunnel to the nds Base_DN "o=sskm" UID_Attr cn require valid-user Options None AllowOverride All hope that helps -- "In god we trust, the rest we monitor" mailto:lists at bauchi.de ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 26 20:25:06 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 26 Mar 2003 14:25:06 -0500 (EST) Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: <5593DA408212D511B0910002A513501F01D2894A@phsexch20.mgh.harvard.edu> References: <5593DA408212D511B0910002A513501F01D2894A@phsexch20.mgh.harvard.edu> Message-ID: On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Subhendu, > > I double-checked the HP-UX system, and there was no instance of tcpd on > the computer. I modified the the inetd.conf file to now read as follows: > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > /opt/nrpe/nrpe.cfg --inetd > > I also ran the kill -HUP command for inetd. > > Manually running the check_nrpe command from the Nagios server resulted in > the same > Connection Refused By Host error message. > Can you telnet to the host:port running nrpe? If so - is the host running nagios on the allowed_hosts list in nrpe.cfg? -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gcoon at inch.com Wed Mar 26 20:25:02 2003 From: gcoon at inch.com (Gerald) Date: Wed, 26 Mar 2003 14:25:02 -0500 (EST) Subject: Notify me only on c,r still pages/e-mails on warn. Message-ID: <20030326135820.E74927@kod.inch.com> *Warning* I feel like only 1/2 my brain showed up for work today. The other 1/2 is still asleep. :-) Check command for check_ping_longOK defined as: command_line $USER1$/check_ping -H $HOSTADDRESS$ -p 5 -t 60 -w 220.0,20% -c 1000.0,50% Log file shows: # Service recovery, responeses within bounds. Service Ok[03-26-2003 13:49:28] SERVICE ALERT: ServerName;PING;OK;HARD;3;PING OK - Packet loss = 0%, RTA = 99.77 ms # Met RTA requirement for warn state Service Warning[03-26-2003 13:44:29] SERVICE ALERT: ServerName;PING;WARNING;HARD;3;PING WARNING - Packet loss = 0%, RTA = 313.78 ms # Met Packet loss and RTA for warn State Service Warning[03-26-2003 13:43:29] SERVICE ALERT: ServerName;PING;WARNING;SOFT;2;PING WARNING - Packet loss = 20%, RTA = 458.14 ms # Met Packet loss Requirement for Warn state Service Warning[03-26-2003 13:42:38] SERVICE ALERT: ServerName;PING;WARNING;SOFT;1;PING WARNING - Packet loss = 20%, RTA = 190.77 ms # This service and the contacts for this service are set to: notification_options c,r Questions: Why do I get a (currently e-mail) notification when it goes warning? How do I turn that for these service checks to only notify me on a crit? (I thought notification_options did that) This was a netsaint2nagios cfg file, so perhaps there is something I need to point out there if this is not the right way to do what I'm trying to do. Thanks in advance for pointers, Gerald ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From craig.massey at oxygenforbusiness.com Wed Mar 26 20:49:16 2003 From: craig.massey at oxygenforbusiness.com (Massey, Craig) Date: Thu, 27 Mar 2003 07:49:16 +1200 Subject: NAGAT doesn't display any objects Message-ID: <554AAFCA2635D5119EDA00B0D0AAD4E3036E917D@SOBSCSR1> There seems to be more activity on this list than the Nagat lists about problems with the application. I grabbed the latest version to get support for hostgroups in service definitions. I put the appropriate paths in the inc files. I can see and import my nagios.cfg file. I can see the list of other config files. I import them individually. I click on Hosts (or Hostgroups, or contacts or anything). I get nothing, except the option to create a new object of whatever type I am supposed to be looking at. When I go to create a new hostgroup all the hosts are listed as able to be used in the hostgroup definition. When I start creating a new service all of the hostgroups are listed as able to be used in the service definition. The system knows they're there, but it doesn't display them. Any fixes? Craig Massey Team Leader - NZ NT/Exchange Administration Oxygen Business Solutions Mobile 025 279-5794 Phone + 64 9 633-0626. Fax + 64 9 633-0601 www.oxygenforbusiness.com DISCLAIMER: This electronic message together with any attachments is confidential. If you are not the intended recipient, do not copy, disclose or use the contents in any way. Please also advise us by return e-mail that you have received the message and then please destroy. Oxygen Business Solutions is not responsible for any changes made to this message and / or any attachments after sending by Oxygen Business Solutions. We use virus scanning software but exclude all liability for viruses or anything similar in this email or any attachment. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Wed Mar 26 20:54:29 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Wed, 26 Mar 2003 14:54:29 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D2894D@phsexch20.mgh.harvard.edu> Hi Subhendu, I was unable to telnet to the host via port 5666. The command syntax was telnet 'hostname' 5666 The error message was Could not open a connection to host on port 5666: Connect failed -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Wednesday, March 26, 2003 2:25 PM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Subhendu, > > I double-checked the HP-UX system, and there was no instance of tcpd on > the computer. I modified the the inetd.conf file to now read as follows: > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > /opt/nrpe/nrpe.cfg --inetd > > I also ran the kill -HUP command for inetd. > > Manually running the check_nrpe command from the Nagios server resulted in > the same > Connection Refused By Host error message. > Can you telnet to the host:port running nrpe? If so - is the host running nagios on the allowed_hosts list in nrpe.cfg? -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Wed Mar 26 20:58:35 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Wed, 26 Mar 2003 14:58:35 -0500 (EST) Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: <5593DA408212D511B0910002A513501F01D2894D@phsexch20.mgh.harvard.edu> References: <5593DA408212D511B0910002A513501F01D2894D@phsexch20.mgh.harvard.edu> Message-ID: is nrpe listed as port 5666 in /etc/services? On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Hi Subhendu, > > I was unable to telnet to the host via port 5666. > > The command syntax was telnet 'hostname' 5666 > The error message was > > Could not open a connection to host on port 5666: Connect failed > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Wednesday, March 26, 2003 2:25 PM > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > Subhendu, > > > > I double-checked the HP-UX system, and there was no instance of tcpd on > > the computer. I modified the the inetd.conf file to now read as follows: > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > /opt/nrpe/nrpe.cfg --inetd > > > > I also ran the kill -HUP command for inetd. > > > > Manually running the check_nrpe command from the Nagios server resulted in > > the same > > Connection Refused By Host error message. > > > > Can you telnet to the host:port running nrpe? > > If so - is the host running nagios on the allowed_hosts list in nrpe.cfg? > > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Wed Mar 26 21:08:34 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Wed, 26 Mar 2003 21:08:34 +0100 Subject: parameters In-Reply-To: <7F76AA41FC7DD5119B1E00508BAF0444A8007D@gsmail.govst.edu>; from T-VANZEE@govst.edu on Wed, Mar 26, 2003 at 12:35:07PM -0600 References: <7F76AA41FC7DD5119B1E00508BAF0444A8007D@gsmail.govst.edu> Message-ID: <20030326210834.A1614@hpce.nec.com> On Wed, Mar 26, 2003 at 12:35:07PM -0600, VanZee, Timothy wrote: > > Try ./command --help > Then "cd /" > Then "rm -rf *" > > OK, I can't be that mean. Don't do the last two lines, but you > might want to know what they do. Oh, the last line is easy, it is "read manuals -really fast (all of them)" right? SCNR, Rasmus ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pablo.morales at abitab.com.uy Wed Mar 26 21:35:23 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Wed, 26 Mar 2003 17:35:23 -0300 Subject: Nagios USERS Message-ID: <00c101c2f3d7$3a400eb0$0229c80a@abtec412> Hi. I've got a dopubt about the users nagios uses, those users, are system users like root, or fo I have to declare them in a nagios .cfg file? cause I'm habing problems with the notification method, I want to receive an e-mail when a host is down, but I think the problem is related to those users. Thanx ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tstocking at insynccom.com Wed Mar 26 21:40:36 2003 From: tstocking at insynccom.com (Thomas Stocking) Date: Wed, 26 Mar 2003 12:40:36 -0800 Subject: Escalations result in long delay of notifications Message-ID: <001d01c2f3d7$f5785f20$6601a8c0@olympus.insynccom.com> Update: Upgrade to 1.0 does not fix this issue, however: changing the normal_check_interval to a very short time (less than the notification interval used in escalations) appears to work around it. Thomas >Hi all, >Using Nagios 1.0b6, I have an installation with 123 hosts, >487 active checks, and some 1600 escalations, all using an >interval of 10 minutes. >CPU is a dual Xenon at 2 GHz, and a gig of RAM. >Running RH Linux 7.3. No issues with the OS or Nagios in general, but... >The issue I'm having is that when I enable escalations, >the time to notifications goes from 10 minutes to 35 >(random delays from 0 -25 minutes). >Especially long delays noted on cusp of escalations >(that is, when I go from one stanza to another). > >Anyone have a suggestion? I'm getting the upgrade to 1.0 ready, >but I am wondering if anyone had a place to look? Docs do >not seem to suggest my config would be a problem... > Thomas Thomas Stocking, GCIA, GCIH Captech Partners thomas at captech.com http://www.captech.com (415) 507-9267 ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ckalos at esaya.com Wed Mar 26 21:26:16 2003 From: ckalos at esaya.com (Christopher Kalos) Date: Wed, 26 Mar 2003 15:26:16 -0500 Subject: Check CPU utilization? Message-ID: <20030326152616.0590333c.ckalos@esaya.com> Has anyone written a plugin to check CPU utilization as opposed to load? I'm looking for something that can work using sar output or something similar. Thanks, Christopher Kalos ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Wed Mar 26 21:57:45 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Wed, 26 Mar 2003 12:57:45 -0800 (PST) Subject: Check CPU utilization? In-Reply-To: <20030326152616.0590333c.ckalos@esaya.com> References: <20030326152616.0590333c.ckalos@esaya.com> Message-ID: On Wed, 26 Mar 2003, Christopher Kalos wrote: > Has anyone written a plugin to check CPU utilization as opposed to > load? I'm looking for something that can work using sar output or > something similar. FWIW, if you're using some variant of net-snmp, it seems to provide what you want via SNMP (.1.3.6.1.4.1.2021.11.11.0). That's what I use. -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Wed Mar 26 23:00:49 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Wed, 26 Mar 2003 16:00:49 -0600 Subject: Dependency Stuff Message-ID: You should also be able to safely stop with your dependency definitions, once you've implemented the 'parents' directive. Test with a non-important host before making large-scale changes to your config files. NB: The 'parents' directive really will save you quite a few keystrokes (in defining dependencies). jc > -----Original Message----- > From: Roy S. Rapoport [mailto:rsr at inorganic.org] > Sent: Wednesday, March 26, 2003 12:08 PM > To: Rasmus Plewe > Cc: Nagios users list > Subject: Re: [Nagios-users] Dependency Stuff > > > On Wed, 26 Mar 2003, Rasmus Plewe wrote: > > You're missing the "parent" directive. See > > http://www.nagios.org/faqs/viewfaq.php?faq_id=145 > > Ah, thanks! > > -roy > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Thu Mar 27 00:38:06 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Thu, 27 Mar 2003 10:38:06 +1100 Subject: Authentication Blues In-Reply-To: <1051583907188.20030326194254@bauchi.de>; from lists@bauchi.de on Wed, Mar 26, 2003 at 07:42:54PM +0100 References: <352B04312822444A962714393AED8A4D026834@ADAEVS01.int.chickasaw.net> <1051583907188.20030326194254@bauchi.de> Message-ID: <20030327103802.A63837@IPAustralia.Gov.AU> Dear Sir, I am using Apache/Perl authentication modules quite successfully - once you get them going. Both Apache::AuthenSMB - validation with basic auth by NT domain Apache::AuthenNTLM - validation with basic or NTLM by NT domain In the latter case, an MS IE browser on an MS workstation supplies the password hash directly to Apache without a window pop-up signifiying the authentication challenge by the web server ie logged in users, that are authorised by Nagios (cgi.cfg or contacts) don't need to supply a password to use the CGIs. Prereqs NT Domain and names of two domain controllers The CPAN modules above (and their pre-reqs) Some hacking eg AuthenSMB needs patching (it is no longer maintained by the Author). Apache 1.3.x + mod_perl (this is probably the hardest bit) Note that at least one other list user has not had success with this approach. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dnorwood at Interelate.com Thu Mar 27 01:23:24 2003 From: dnorwood at Interelate.com (Dwan Norwood) Date: Wed, 26 Mar 2003 18:23:24 -0600 Subject: problem with new kernel Message-ID: <04DFE4330FD25542A2ADCCBE407DABEE0CD94E@msp-ops003-exc.ir> The new version of the kernel changes the way that daemonized processes are display with ps. Now the appear to be enclosed in []. E.g., lp 877 1 0 17:52 ? 00:00:00 [lpd] nobody 972 949 0 17:52 ? 00:00:00 [httpd] In the past ps would show the nagios process as: /usr/local/nagios/bin/nagios -d Now it is displayed as: [nagios] Example: nagios 1102 1 0 17:52 ? 00:00:00 [nagios] Your check_nagios command (in the cgi.cfg) looks for the process string returned from ps. Your current configuration probably looks like this: nagios_check_command=/usr/local/nagios/libexec/check_nagios /usr/local/nagios/var/status.log 30 '/usr/local/nagios/bin/nagios' So, change the configuration entry to look like this: nagios_check_command=/usr/local/nagios/libexec/check_nagios /usr/local/nagios/var/status.log 30 '[nagios]' -- Dwan >I upgrade on my linux server, th kernel version with Red Hat Linux >(2.4.18-27.8.0), from Red Hat Linux (2.4.18-26.8.0) All work fine, the >only problem are qith nagios process, because grep > >[root at consolefw nagios]# ps -aef |grep nag >nagios 1241 1 0 11:05 ? 00:00:00 [nagios] > >check_nagios said >[root at consolefw root]# /usr/local/nagios/libexec/check_nagios >/usr/local/nagios/var/status.log 5 /usr/local/nagios/bin/nagios >Could not locate a running Nagios process! > And log >[1047981881] Lockfile '/usr/local/nagios/var/nagios.lock' is held by PID >0. Bailing out... > >whats append? Does anyone have same problem? > >I rollback on previous kernel and all return ok > >[root at consolefw root]# ps -aef|grep nagi >nagios 783 1 0 11:11 ? 00:00:00 >/usr/local/nagios/bin/nagios -d > > > >-cd >--- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ofb at mail.budget-tech.com Thu Mar 27 02:13:23 2003 From: ofb at mail.budget-tech.com (Olivier Beauchemin) Date: Wed, 26 Mar 2003 20:13:23 -0500 Subject: Distributed Nagios Message-ID: <200303262013.AA238223572@mail.budget-tech.com> Has anyone out there ever used Nagios in distributed mode, with an HA central server? I have someone who is interested in a 10 remote site --> 1 NOC setup with about 1,200 servers across the network. ...just ping to start, more later. Thoughts? Ideas? Warnings? Thanks, Olivier ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Wed Mar 26 13:24:27 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Wed, 26 Mar 2003 12:24:27 -0000 Subject: check_dns woes Message-ID: <53104E20A25CD411B556009027E50636064D54D7@pnnemp02.pn.egg.com> Copying to nagiosplug-help Dave, Run check_dns with the -v flag: this should show some debug data. There have been a few fixes around the use of nslookup in the r1_3_0 branch of nagiosplug - get the snapshot from http://nagiosplug.sf.net/snapshot Ton > -----Original Message----- > From: David Adams [SMTP:dadams at johncrowley.co.uk] > Sent: Wednesday, March 26, 2003 11:32 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_dns woes > > Greets all, > > I have been running nagios for a couple of weeks and everything has been > working fine. I am monitoring two Windows 2000 DNS servers, again, both > have been working fine. Yesterday, nagios said my secondary dns server was > "DNS CRITICAL - Non-existent host/domain" > > So, in an effort to troubleshoot the server, i did a manual nslookup and > the server is working fine, i ran the plugin manually and i get the same > error message > > ./check_dns -H demon.net -s 192.168.x.x DNS CRITICAL - Non-existent > host/domain > > The primary server which is running the same os, same everything is > working just fine as far as nagios is concerned but for some reason nagios > just won't talk to the secondary server even though it's working just > fine. > Plugins are version 1.3 nagios is version 1.0 os is OpenBSD3.0 > > any suggestions appreciated > > regards > > Dave > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios at nagios.org Thu Mar 27 03:50:57 2003 From: nagios at nagios.org (Ethan Galstad) Date: Wed, 26 Mar 2003 20:50:57 -0600 Subject: More info/leads: Huge delay in scheduling freshness service chec k after 3rd try In-Reply-To: References: Message-ID: <3E8212B1.13345.CEC621@localhost> If you haven't change the interval_length directive from its default value of 60, the problem lies in your config. In your service definition you are telling Nagios to actively check the service every 15 minutes. However, the freshness threshold for that service is set at 3 minutes (180 seconds). About once every minute the freshness checks get performed, so that's why you're seeing staleness warning approximately every 4 minutes. On 26 Mar 2003 at 10:18, Erik Larkin wrote: > > FYI, after a little more research, I think I've narrowed it down to an issue > with the scheduling queue. I tossed a debug option in my stale-service > script that logs the time it's called. Then I cross-referenced those times > with the times that nagios logged a failed freshness check, and the times > that nagios received the response from the stale-service script. The time > difference between when the script is actually called and when nagios logs > the script response is maybe a few seconds, leading me to believe that the > service reaper is ok. However, the delay between when nagios says it failed > a freshness check and is forcing a service check, and when the stale-service > script is actually called, was over 32000 seconds at last failure. So, I'm > now focusing on problems with the scheduling queue. Any ideas, anyone? > > -----Original Message----- > From: Erik Larkin > Sent: Tuesday, March 25, 2003 2:44 PM > To: 'nagios-users at lists.sourceforge.net' > Subject: Huge delay in scheduling freshness service check after 3rd try > > > > Allright, I'm finally admitting that I can't figure this one out myself. > Trust me, it's a difficult admission, and has involved much tinkering, > hair-pulling, and searching of mailing lists (although searching doesn't > seem to be working right now for the sourceforge lists?). > > Anyways, I've got a nagios architecture with multiple distributed servers > sending check results to a central nagios server via ncsa. The central > server doesn't perform any active checks (no network access to the > distributed network), but is configured to perform a freshness check for a > service called 'Heartbeat' for each distributed instance. The heartbeat is > just a ping of the loopback performed every minute, although I've since > discovered I could have used check_dummy. Seems to be a pretty common > setup, and for the most part it works very well. > > Except for the freshness checks. They work fine up until the 3rd failed > freshness check or so, at which point latency skyrockets. From 99 to 280 > to 749, on up to thousands and thousands of seconds of latency. The log > reflects a failed freshness check, and a message about forcing the service > (which is the typical echo and exit 2). But the service alert response is > delayed more and more. I've tried everything I can think of, and learned a > great deal in my searching and tweaking, but I can't change this behavior. > > Here's what I've tried: > > - change the service_reaper_frequency to 3. saw a reference for this in the > list for something else, thought it might help. I still suspect some > problem with the service reaper. > - added a 1 second sleep to the script (thought maybe it was returning its > status too quickly) > - futzed with the normal_check_interval for the heartbeat service on the > central server. gave it ranges between 1 minute and 15 minutes. > - enabled check_for_orphaned_services > - tossed a debug option in my stale_service script that sent a line of > output to a log, to make sure that the script itself was being run (it was) > - setting is_volatile (just to check) > - other things I can't think of right now. > > And here's the service entry: > > define service{ > use qab24x7-service > service_description Heartbeat > hostgroup_name qabdbfohub > normal_check_interval 15 > is_volatile 1 > max_check_attempts 1 > check_freshness 1 > notification_interval 15 > freshness_threshold 180 > check_command stale-service > } > > > And here's some relevant log snippets: > > > [1048628465] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048628471] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048628705] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 58 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048628711] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048628945] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048628966] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048629185] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 42 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048629287] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048629485] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 21 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048629770] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048629965] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 20 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048630715] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048630925] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 31 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > > > > Sorry for the the long email/spam, but please oh please: does anyone have > any info regarding this problem? > > > Many thanks, > > Erik Larkin > elarkin at nuasis.com > > p.s. Just to go on record, I do think Nagios rocks. Hard. But this itty > bitty problem is driving me nuts! ;) > > > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > Ethan Galstad, Nagios Developer --- Email: nagios at nagios.org Website: http://www.nagios.org ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dritchie at advanstar.com Thu Mar 27 04:39:15 2003 From: dritchie at advanstar.com (Doug Ritchie) Date: Wed, 26 Mar 2003 22:39:15 -0500 Subject: Scheduled downtime not reported Message-ID: Hey there, I've been running Nagios 1.0b6 on a RedHat Linux 7.3 box for about 5 or 6 months now, but just this week I noticed something I had not seen before. Earlier this week I scheduled a fixed 1-day downtime period for a maintenance window, but now that I'm looking over the availability report, I'm seeing that period counted as downtime rather than scheduled downtime. The reporting looks something like this: 03-18-2003 20:02:08 03-18-2003 20:21:00 0d 0h 18m 57s HOST UP 03-24-2003 19:00:00 03-24-2003 21:12:24 0d 2h 12m 24s HOST DOWNTIME START 03-24-2003 21:12:24 03-25-2003 11:19:05 0d 14h 6m 41s HOST DOWN 03-25-2003 11:19:05 03-25-2003 19:00:00 0d 7h 40m 55s HOST UP 03-25-2003 19:00:00 03-26-2003 21:48:27 1d 2h 48m 27s+ HOST DOWNTIME END The HOST DOWNTIME END is currently the last log entry for this host. Our downtime window began at 7pm on Mar24 and lasted a day. During that period, the host was down for 14 hours and 6 minutes. I would expect to see this listed as 'Scheduled Downtime', but it is instead counted as actual downtime, and no scheduled downtime is reported at all. The 7 hours and 40 minutes of uptime during the maintenance window is correctly registered as 'scheduled uptime'. Has anybody seen this kind of behavior, or any ideas what might lead to it? Just to add, I have tried defining DEBUG2 in avail.c, and it does seem like the routine that appears to register downtime (compute_subject_downtime_part_times) is only being called once at the very end of the processing for this host. Based on the value of subject_state and state_duration, this appears to be where it's adding the 7h and 40m. This routine seems to get called on an 'archive state list ran out' condition. Don't know if that means anything or not. Thanks much, Doug ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From FReimers at infosysinc.com Thu Mar 27 07:15:44 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Thu, 27 Mar 2003 01:15:44 -0500 Subject: NagMIN - Nagios WebMIN Management Module - Announcement Message-ID: <1A76CEE962963E40926786CA468A47D3215DCB@infocoex1.infosysinc.com> NagMIN is a WebMIN management module for Nagios 1.0. It's built on the MySQL WebMIN module and acts as a Nagios pre-processor adding many management features, NMAP scanning of Nagios hosts, default field completion, reports, and a ServiceGroup function. This is the first release, but it's pretty stable. Futures to come will be host, contact and escalation wizards and, hopefully, a lot of good ideas from users. NagMIN is registered with SourceForge and can be downloaded from there. http://nagmin.sourceforge.net -------------------------- Fred Reimers (CCIE #1469) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 27 08:29:07 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 27 Mar 2003 07:29:07 +0000 (GMT) Subject: nagios and windows Nt Please help... In-Reply-To: <1A76CEE962963E40926786CA468A47D3215DCB@infocoex1.infosysinc.com> References: <1A76CEE962963E40926786CA468A47D3215DCB@infocoex1.infosysinc.com> Message-ID: <20030327072907.48874.qmail@web12603.mail.yahoo.com> Hi When i am say from teh command prompt ./check_nt -H 176.1.111.242 -p 1248 -v UPTIME System Uptime : 0 day(s) 1 hour(s) 48 minute(s) this works however..nagios shows me that there is no output why ?my check_commnads.cfg file looks like this I am not able to get output for any command from nagios while i can get the ouptut from commnad prompt. # 'check-host-alive' command definition define command{ command_name check-host-alive command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 1 } define command{ command_name check_nt_disk command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v USEDDISKSPACE -l $ARG1$ -w $ARG2$ -c $ARG3$ } define command{ command_name check_nt_cpuload command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v CPULOAD -l $ARG1$ } define command{ command_name check_nt_uptime command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v UPTIME } define command{ command_name check_nt_process command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v PROCSTATE -l $ARG1$ } define command{ command_name check_nt_service command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v SERVICESTATE -l $ARG1$ } define command{ command_name check_nt_memuse command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v MEMUSE -w $ARG1$ -c $ARG2$ } define command{ command_name check_nt_fileage command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v FILEAGE -l $ARG1$ -w $ARG2$ -c $ARG3$ } define command{ command_name check_nt_pagingfile command_line $USER1$/check_nt -H $HOSTADDRESS$ -p 1248 -v COUNTER -l "\\Paging File(_Total)\\% Usage","Paging File usage is %.2f %%" -w $ARG1$ -c $ARG2$ } __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Thu Mar 27 09:48:22 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Thu, 27 Mar 2003 08:48:22 -0000 Subject: check_nagios and ps problem Message-ID: <53104E20A25CD411B556009027E50636064D54E0@pnnemp02.pn.egg.com> Copying to nagiosplug-help list. Can future replies remove the nagios-users list Which version of check_nagios? Which OS? What does configure say your ps command is? There have been some changes to check_nagios so that it uses the same ps command as check_procs. Can you try with the latest CVS version - use the snapshot at http://nagiosplug.sf.net/snapshot. Use the -v flag to see what is being seen. Ton > -----Original Message----- > From: Shawn McCool [SMTP:smccool at ascendantmedia.com] > Sent: Wednesday, March 26, 2003 6:53 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_nagios and ps problem > > check_nagios gets a ps list and searches for the final arguement in the > check_nagios command line > > nagios_check_command=/usr/local/nagios/libexec/check_nagios > /usr/local/nagios/var/status.log 5 '/usr/local/nagios/bin/nagios' > > In this case it checks for /usr/local/nagios/bin/nagios > > > > The Documentation: > > # Note: If you are using the check_nagios plugin here, the first > # argument should be the physical path to the status log, the > # second argument is the number of minutes that the status log > # contents should be "fresher" than, and the third argument is the > # string that should be matched from the output of the 'ps' > # command in order to locate the running Nagios process. That > # process string is going to vary depending on how you start > # Nagios. Run the 'ps' command manually to see what the command > # line entry for the Nagios process looks like. > > Suggest that i should run 'ps' to see what it returns. > > Wether I am the Nagios user or root ps has inappropriate return values for > this check command. > > # ps > PID TTY TIME CMD > 534 tty1 00:00:00 mingetty > 535 tty2 00:00:00 mingetty > 536 tty3 00:00:00 mingetty > 537 tty4 00:00:00 mingetty > 538 tty5 00:00:00 mingetty > 539 tty6 00:00:00 mingetty > 1860 pts/8 00:00:00 bash > 14765 pts/3 00:00:00 bash > 11225 pts/6 00:00:00 bash > 12483 pts/9 00:00:00 bash > 12490 pts/9 00:00:01 ssh > 12509 pts/10 00:00:00 bash > 12540 pts/10 00:00:00 ssh > 12774 pts/11 00:00:00 bash > 12805 pts/11 00:00:00 ssh > 19339 pts/2 00:00:00 bash > 22771 pts/5 00:00:00 shell > 22772 pts/5 00:00:00 ssh > 24309 pts/12 00:00:00 bash > 28146 pts/6 00:00:01 ssh > 28993 pts/13 00:00:00 bash > 29269 pts/12 00:00:00 ssh > 29309 pts/14 00:00:00 bash > 29316 pts/14 00:00:00 ssh > 8053 pts/15 00:00:00 bash > 11875 pts/0 00:00:00 bash > 14706 pts/2 00:00:00 ps > > Although I assure you nagios IS running > > # ps waux | grep nagios > nagios 12253 0.0 0.0 1560 880 ? S 12:32 0:00 ./nagios -d > ../etc/nagios.cfg > > Is there a way to change the command line for ps so that I can have it > return the appropriate information? This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Thu Mar 27 11:03:12 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Thu, 27 Mar 2003 12:03:12 +0200 Subject: Test commands in misccommands.cfg Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69276@intecserver007.intec.co.za> Users, I am trying to test commands that I have created in the misccommands.cfg file, to send custom notifications. However although I can simulate the program and it works from command line, nagios appears to ignore it. I set up logging in the program to check for any access, but to no avail. The notification has been set up for the contact, and when an event occurs, the notification is shown but never actioned My question, is there any way to debug or test such commands from the misccommand file manually. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 11:17:21 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 10:17:21 +0000 Subject: check https In-Reply-To: <004b01c2f382$98637c70$d0551ec3@linkm.de> References: <1048671179.1681.1.camel@Monitor> <004b01c2f382$98637c70$d0551ec3@linkm.de> Message-ID: <1048760242.1567.7.camel@Monitor> Hi I have done the next step: > ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios > - --with-nagios-group=nagios --with-openssl=/usr/include (this ist the > debian path to openssel/ssl.h) and i don't know if the https checking is working because i receive the message from one machine "HTTP CRITICAL: string not found" and the message "HTTP ok: HTTP/1.1 200 OK - 0.283 second response time" from another one. The command that i'm using is: > define command{ > command_name check_https > command_line $USER1$/check_http -I $HOSTADDRESS$ -S -C 30 > } > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Thu Mar 27 11:50:58 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Thu, 27 Mar 2003 02:50:58 -0800 (PST) Subject: Pending Host Check ... Forever Message-ID: I've added a host to check through a fairly simplistic hosts.cfg entry: define host { use generic-host host_name yeahbaby alias yeahbaby.inorganic.org parents nag address 192.168.192.27 } define host{ name generic-host notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 register 0 max_check_attempts 10 notification_interval 120 notification_period 24x7 notification_options d,u,r } I've also added a service entry for it. The service has been checked correctly. For some reason, though, the host's status is still considered 'pending' despite having restarted Nagios hours ago and requesting 'immediate checks' several times. Thoughts? -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 12:07:52 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 11:07:52 +0000 Subject: notifications sms Message-ID: <1048763272.1567.17.camel@Monitor> Hi I would like to send notifications by sms does anyone have some ideas?? Best regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 27 12:20:52 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 27 Mar 2003 12:20:52 +0100 Subject: notifications sms References: <1048763272.1567.17.camel@Monitor> Message-ID: <3E82DE94.EE56D773@gcc.dhl.com> http://www.nagios.org/faqs/viewfaq.php?faq_id=65 (an alternative is smsclient.org) Eduardo Leit?o wrote: > > Hi > > I would like to send notifications by sms does anyone have some ideas?? > > Best regards > Edu > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 27 12:30:06 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 27 Mar 2003 12:30:06 +0100 Subject: Pending Host Check ... Forever References: Message-ID: <3E82E0BE.14A559C9@gcc.dhl.com> I've never seen a host in status "pending". Either it is down, assumed to be up, or up. But pending... Are you sure it is pending? "Roy S. Rapoport" wrote: > > I've added a host to check through a fairly simplistic hosts.cfg entry: > define host { > use generic-host > host_name yeahbaby > alias yeahbaby.inorganic.org > parents nag > address 192.168.192.27 > } > > define host{ > name generic-host > notifications_enabled 1 > event_handler_enabled 1 > flap_detection_enabled 1 > process_perf_data 1 > retain_status_information 1 > retain_nonstatus_information 1 > register 0 > max_check_attempts 10 > notification_interval 120 > notification_period 24x7 > notification_options d,u,r > } > > I've also added a service entry for it. > > The service has been checked correctly. For some reason, though, the host's > status is still considered 'pending' despite having restarted Nagios hours > ago and requesting 'immediate checks' several times. > > Thoughts? > > -roy > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at alienn.net Thu Mar 27 12:25:09 2003 From: nagios-users at alienn.net (Nicki Messerschmidt, Linksystem Muenchen GmbH) Date: Thu, 27 Mar 2003 12:25:09 +0100 Subject: check https References: <1048671179.1681.1.camel@Monitor> <004b01c2f382$98637c70$d0551ec3@linkm.de> <1048760242.1567.7.camel@Monitor> Message-ID: <00fa01c2f453$87aa19d0$d0551ec3@linkm.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Eduardo Leito wrote: >> ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios >> --with-nagios-group=nagios --with-openssl=/usr/include (this ist >> the debian path to openssel/ssl.h) What operating system do you use and please post the output of the above command line... If you use debian, then please give the output of dpkg -l libssl-dev and if you are using SuSe or RedHat please give rpm -qa|grep ssl Thanks and cheers Nicki - -- Linksystem Muenchen GmbH info at link-m.de Schloerstrasse 10 http://www.link-m.de 80634 Muenchen Tel. 089 / 890 518-0 We make the Net work. Fax 089 / 890 518-77 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use Comment: Keys at: https://www.link-m.de/pgp iQA/AwUBPoLRhes1nPm17iBDEQKM3ACfc4HFCNh12bCkJ4q6zo6o7MfbQvYAnjzk auDKLB5SZenIfidPBJVefnue =uA2o -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 12:38:04 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 11:38:04 +0000 Subject: notifications sms In-Reply-To: <3E82DE94.EE56D773@gcc.dhl.com> References: <1048763272.1567.17.camel@Monitor> <3E82DE94.EE56D773@gcc.dhl.com> Message-ID: <1048765084.1567.30.camel@Monitor> Hi Ok but where i put this command definitios ???? in misccommands ??? Do i need the plugins??? can someone give an help. thanks Edu On Thu, 2003-03-27 at 11:20, Tom DE BLENDE wrote: > http://www.nagios.org/faqs/viewfaq.php?faq_id=65 > (an alternative is smsclient.org) > > Eduardo Leit?o wrote: > > > > Hi > > > > I would like to send notifications by sms does anyone have some ideas?? > > > > Best regards > > Edu > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Thu Mar 27 12:37:19 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Thu, 27 Mar 2003 03:37:19 -0800 (PST) Subject: Pending Host Check ... Forever In-Reply-To: <3E82E0BE.14A559C9@gcc.dhl.com> References: <3E82E0BE.14A559C9@gcc.dhl.com> Message-ID: On Thu, 27 Mar 2003, Tom DE BLENDE wrote: > I've never seen a host in status "pending". Either it is down, assumed > to be up, or up. But pending... Are you sure it is pending? Well, here's what I'm seeing: A) Tactical Overview shows 5 hosts up and 1 pending host B) Service detail shows all services OK C) Host detail shows the host with status PENDING, with Status Information in " (Not enough data to determine host status yet) " D) Status map gives a legend of 'pending' under this host. So yeah, I think it's pending :) -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 12:52:57 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 11:52:57 +0000 Subject: Nagios USERS In-Reply-To: <00c101c2f3d7$3a400eb0$0229c80a@abtec412> References: <00c101c2f3d7$3a400eb0$0229c80a@abtec412> Message-ID: <1048765977.1567.36.camel@Monitor> Hi I have a problem like yours i define users in nagios.cfg and i use the file htpasswd.users to store users and passwords to have cgi authentication but i can't enter it does not stop asking me authentication thanks Edu On Wed, 2003-03-26 at 20:35, Pablo Morales wrote: > Hi. > I've got a dopubt about the users nagios uses, those users, are system users > like root, or fo I have to declare them in a nagios .cfg file? cause I'm > habing problems with the notification method, I want to receive an e-mail > when a host is down, but I think the problem is related to those users. > > > Thanx > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From paul.clayton at intec.co.za Thu Mar 27 12:55:40 2003 From: paul.clayton at intec.co.za (Paul Clayton) Date: Thu, 27 Mar 2003 13:55:40 +0200 Subject: Test commands in misccommands.cfg Message-ID: <9290BC9741D67F43BDAAC84144FF870DB69277@intecserver007.intec.co.za> Gurus, Ignore this mail. I had a permissions problem on a file. cheers -----Original Message----- From: Paul Clayton [mailto:paul.clayton at intec.co.za] Sent: Thursday, March 27, 2003 12:03 PM To: Nagios Users (E-mail) Subject: [Nagios-users] Test commands in misccommands.cfg Users, I am trying to test commands that I have created in the misccommands.cfg file, to send custom notifications. However although I can simulate the program and it works from command line, nagios appears to ignore it. I set up logging in the program to check for any access, but to no avail. The notification has been set up for the contact, and when an event occurs, the notification is shown but never actioned My question, is there any way to debug or test such commands from the misccommand file manually. Regards Unix like TeePee no windows, no gates, Apache inside. Paul Clayton Global Unix Co-ordinator Intec Telecom Systems Ph +27 (0) 21 4309000 Fax +27 (0) 21 4309025 Mobile +27(0) 832853403 **************************************************************************** *************** This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. **************************************************************************** ************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ******************************************************************************************* This e-mail and any attachments are confidential and may also be privileged and/or copyright material of Independent Technology Systems Limited (or its affiliated companies). If you are not the intended or authorised recipient of this email or have received it in error, please delete it immediately and notify the sender by e-mail. In such a case reading, reproducing, printing or further dissemination of this e-mail is strictly prohibited and may be unlawful. Independent Technology Systems Limited does not represent or warrant that an attachment hereto is free from computer viruses or other defects. The opinions expressed in this e-mail and any of the attachments may be those of the author and are not necessarily those of Independent Technology Systems Limited. ****************************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 27 13:27:32 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 27 Mar 2003 12:27:32 +0000 (GMT) Subject: TRU64 Plugins binary upload In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69277@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69277@intecserver007.intec.co.za> Message-ID: <20030327122732.97463.qmail@web12605.mail.yahoo.com> Hi All I was just wundering wheather we can upload the binaries for TRU64 unix on the nagios sourceforge webiste or atleast the nagios web demo site .This i feel can be helpful for people who have difficulty in compiling the sources.. regards Hrishy __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rsr at inorganic.org Thu Mar 27 13:28:59 2003 From: rsr at inorganic.org (Roy S. Rapoport) Date: Thu, 27 Mar 2003 04:28:59 -0800 (PST) Subject: Pending Host Check ... Forever In-Reply-To: <3E82EDB5.BBCBE3A3@gcc.dhl.com> References: <3E82EDB5.BBCBE3A3@gcc.dhl.com> Message-ID: On Thu, 27 Mar 2003, Tom DE BLENDE wrote: > You know what? This looks very much like it is pending. And come to > think of it, I did see this before, and that was due to some errors in > the config file. Run a "nagios -v nagios.cfg" and see what it returns. Found the problem -- there was no check_command defined for the host. I'm surprised Nagios wasn't more upset about this. Interestingly, even running nagios -v nagios.cfg did not expose this as a problem. -roy ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Reza_Hajebi at oracleinternet.net Thu Mar 27 13:16:02 2003 From: Reza_Hajebi at oracleinternet.net (Reza Hajebi) Date: Thu, 27 Mar 2003 16:46:02 +0430 Subject: apache configuration Message-ID: Hi i am totally new to nagios. Pretty much have started from scratch. Here is the problem: -In setting up the web interface, the documentation has stated to write ScriptAlias and Alias (one after another) in the httpd configuration file. I did this. The browser does not see the /nagios section. I get a 404 error Object not Found. Can anyone help me. Cheers, R. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 27 13:25:25 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 27 Mar 2003 13:25:25 +0100 Subject: Pending Host Check ... Forever References: Message-ID: <3E82EDB5.BBCBE3A3@gcc.dhl.com> You know what? This looks very much like it is pending. And come to think of it, I did see this before, and that was due to some errors in the config file. Run a "nagios -v nagios.cfg" and see what it returns. "Roy S. Rapoport" wrote: > > On Thu, 27 Mar 2003, Tom DE BLENDE wrote: > > I've never seen a host in status "pending". Either it is down, assumed > > to be up, or up. But pending... Are you sure it is pending? > > Well, here's what I'm seeing: > A) Tactical Overview shows 5 hosts up and 1 pending host > B) Service detail shows all services OK > C) Host detail shows the host with status PENDING, with Status Information in > " (Not enough data to determine host status yet) " > D) Status map gives a legend of 'pending' under this host. > > So yeah, I think it's pending :) > > -roy > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 13:41:43 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 12:41:43 +0000 Subject: authentication Message-ID: <1048768903.1563.48.camel@Monitor> Hi I have a problem with authentication. I have done all the steps -Configuring Web Server Authentication (httpd.conf) -The second step create a file named .htaccess in the root your CGI directory -Setting Up Authenticated Users (by using the htpasswd command supplied with Apache) htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin -and Enabling Authentication/Authorization Functionality In The CGIs and when i access to the cgi http://mymachine/nagios/ the aplication don't stop asking me the user name and the password. Something is missing and i don't now what, some idea Best regards Eduardo Leit?o ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hrishys at yahoo.co.uk Thu Mar 27 13:28:13 2003 From: hrishys at yahoo.co.uk (=?iso-8859-1?q?hrishy?=) Date: Thu, 27 Mar 2003 12:28:13 +0000 (GMT) Subject: TRU64 Plugins binary upload In-Reply-To: <9290BC9741D67F43BDAAC84144FF870DB69277@intecserver007.intec.co.za> References: <9290BC9741D67F43BDAAC84144FF870DB69277@intecserver007.intec.co.za> Message-ID: <20030327122813.97396.qmail@web12604.mail.yahoo.com> Hi All I was just wundering wheather we can upload the binaries for TRU64 unix on the nagios sourceforge webiste or atleast the nagios web demo site .This i feel can be helpful for people who have difficulty in compiling the sources.. I am also desperately trying tyo compile other valauble contributed plugins by first compiling the gnu c compiler on Tru64 regards Hrishy __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Thu Mar 27 13:52:52 2003 From: mpowell at ena.com (Marc Powell) Date: Thu, 27 Mar 2003 06:52:52 -0600 Subject: authentication Message-ID: <5DB017510818EC468B05BD7BD9EACF83032D4207@mismail.ena.com> Check your http error log. It should give you an indication of the problem. If it doesn't, can you post a copy of the relevant sections of your cgi.cfg and .htaccess files? -- Marc Sent from a very tiny wireless device with a very tiny unlit keyboard. -----Original Message----- From: Eduardo Leit?o To: nagios-users at lists.sourceforge.net Sent: Thu Mar 27 06:41:43 2003 Subject: [Nagios-users] authentication Hi I have a problem with authentication. I have done all the steps -Configuring Web Server Authentication (httpd.conf) -The second step create a file named .htaccess in the root your CGI directory -Setting Up Authenticated Users (by using the htpasswd command supplied with Apache) htpasswd -c /usr/local/nagios/etc/htpasswd.users nagiosadmin -and Enabling Authentication/Authorization Functionality In The CGIs and when i access to the cgi http://mymachine/nagios/ the aplication don't stop asking me the user name and the password. Something is missing and i don't now what, some idea Best regards Eduardo Leit?o ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From pablo.morales at abitab.com.uy Thu Mar 27 13:57:07 2003 From: pablo.morales at abitab.com.uy (Pablo Morales) Date: Thu, 27 Mar 2003 09:57:07 -0300 Subject: host_notification Message-ID: <001401c2f460$5f3ee3b0$0229c80a@abtec412> Hi there. I was reading the hosts.cfg files and in the notification part reads d,u.,c and also c,r,d,u, What's the meaning of this? Bytes. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Thu Mar 27 14:26:49 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Thu, 27 Mar 2003 14:26:49 +0100 Subject: notifications sms In-Reply-To: <1048765084.1567.30.camel@Monitor>; from eduardoleitao@interacesso.pt on Thu, Mar 27, 2003 at 11:38:04AM +0000 References: <1048763272.1567.17.camel@Monitor> <3E82DE94.EE56D773@gcc.dhl.com> <1048765084.1567.30.camel@Monitor> Message-ID: <20030327142649.F1453@hpce.nec.com> On Thu, Mar 27, 2003 at 11:38:04AM +0000, Eduardo Leit?o wrote: > On Thu, 2003-03-27 at 11:20, Tom DE BLENDE wrote: > > Eduardo Leit??o wrote: > > > > > > I would like to send notifications by sms does anyone have some ideas?? > > > > http://www.nagios.org/faqs/viewfaq.php?faq_id=65 > > (an alternative is smsclient.org) > > Ok but where i put this command definitios ???? In the same file where the notifications commands are !!!! Which is misccommands.cfg !!!! > in misccommands ??? Yes !!! > Do i need the plugins??? Which plugins??? You need plugins to check services/hosts, so you have a result that you want to get paged about!!! > can someone give an help. Your "?" key seems to be broken. Rasmus ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 27 14:18:57 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 27 Mar 2003 14:18:57 +0100 Subject: host_notification References: <001401c2f460$5f3ee3b0$0229c80a@abtec412> Message-ID: <3E82FA41.E3EC1E27@gcc.dhl.com> I'm stunned... Did you even read any docs prior to taking up our time? http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#host Pablo Morales wrote: > > Hi there. > > I was reading the hosts.cfg files and in the notification part reads d,u.,c > and also c,r,d,u, > What's the meaning of this? > > Bytes. > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Lane.Williams at jhuapl.edu Thu Mar 27 14:38:45 2003 From: Lane.Williams at jhuapl.edu (Williams, P. Lane) Date: Thu, 27 Mar 2003 08:38:45 -0500 Subject: host_notification Message-ID: You know one of the cool things about Nagios/NetSaint......the documentation will answer almost if not all of your questions regarding the basics and a lot of the more difficult stuff as well. I am almost 100% certain if you have a question about the contents of a configuration file, the web interface, or just the general setup and design.....it's in the documentation......It is a fairly nice size publication and can be quite time consuming to read....but it is worth it....and at the end of the day you will be glad you did. Hats off to those that contributed and wrote the documentation. Now all we need is well documented source code....or is that in the CVS.......if not....any takers...... Lane -----Original Message----- From: Tom DE BLENDE [mailto:tdeblend at gcc.dhl.com] Sent: Thursday, March 27, 2003 8:19 AM To: Pablo Morales Cc: Nagios User List Subject: Re: [Nagios-users] host_notification I'm stunned... Did you even read any docs prior to taking up our time? http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#host Pablo Morales wrote: > > Hi there. > > I was reading the hosts.cfg files and in the notification part reads d,u.,c > and also c,r,d,u, > What's the meaning of this? > > Bytes. > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Thu Mar 27 14:44:40 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Thu, 27 Mar 2003 07:44:40 -0600 Subject: apache configuration Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B4757@gsmail.govst.edu> Check your cgi.cfg file and look for this section. If you have it as shown below you will need to access using the URL http://www.myhost.com/nagios/. # URL HTML PATH # This is the path portion of the URL that corresponds to the # physical location of the Nagios HTML files (as defined above). # This value is used by the CGIs to locate the online documentation # and graphics. If you access the Nagios pages with an URL like # http://www.myhost.com/nagios, this value should be '/nagios' # (without the quotes). url_html_path=/nagios/ Tim Van Zee ITS Network Specialist Governors State University -----Original Message----- From: Reza Hajebi [mailto:Reza_Hajebi at oracleinternet.net] Sent: Thursday, March 27, 2003 6:16 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] apache configuration Hi i am totally new to nagios. Pretty much have started from scratch. Here is the problem: -In setting up the web interface, the documentation has stated to write ScriptAlias and Alias (one after another) in the httpd configuration file. I did this. The browser does not see the /nagios section. I get a 404 error Object not Found. Can anyone help me. Cheers, R. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Thu Mar 27 14:48:24 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Thu, 27 Mar 2003 08:48:24 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D2894E@phsexch20.mgh.harvard.edu> Hi Subhendu, I double-checked the /etc/services file and I confirmed that nrpe is listed as port 5666. -----Original Message----- From: Subhendu Ghosh [mailto:sghosh at sghosh.org] Sent: Wednesday, March 26, 2003 2:59 PM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 is nrpe listed as port 5666 in /etc/services? On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Hi Subhendu, > > I was unable to telnet to the host via port 5666. > > The command syntax was telnet 'hostname' 5666 > The error message was > > Could not open a connection to host on port 5666: Connect failed > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Wednesday, March 26, 2003 2:25 PM > To: '' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > Subhendu, > > > > I double-checked the HP-UX system, and there was no instance of tcpd on > > the computer. I modified the the inetd.conf file to now read as follows: > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > /opt/nrpe/nrpe.cfg --inetd > > > > I also ran the kill -HUP command for inetd. > > > > Manually running the check_nrpe command from the Nagios server resulted in > > the same > > Connection Refused By Host error message. > > > > Can you telnet to the host:port running nrpe? > > If so - is the host running nagios on the allowed_hosts list in nrpe.cfg? > > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Thu Mar 27 14:50:00 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Thu, 27 Mar 2003 13:50:00 +0000 Subject: NagMIN - Nagios WebMIN Management Module - Announcement In-Reply-To: <1A76CEE962963E40926786CA468A47D3215DCB@infocoex1.infosysinc.com> References: <1A76CEE962963E40926786CA468A47D3215DCB@infocoex1.infosysinc.com> Message-ID: Fred, Wow - it looks great ! I have been playing with it this morning, but doent seem to be able to get my 'Nagmin' config to apply into my Nagios config. I have all the tables imprted okay and can see all my hosts. I have made changes to the Database table for Nagios and verified and activated the config but nothing seems to change. What have I missed ? I also ran the port scan - wow; it found a lot ! Really great - this is going to be a great bargaining tool to get Nagios implemented for us ! Thanks ! Matt "Fred Reimers" Sent by: nagios-users-admin at lists.sourceforge.net 27/03/2003 06:15 To cc Subject [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement NagMIN is a WebMIN management module for Nagios 1.0. It's built on the MySQL WebMIN module and acts as a Nagios pre-processor adding many management features, NMAP scanning of Nagios hosts, default field completion, reports, and a ServiceGroup function. This is the first release, but it's pretty stable. Futures to come will be host, contact and escalation wizards and, hopefully, a lot of good ideas from users. NagMIN is registered with SourceForge and can be downloaded from there. http://nagmin.sourceforge.net -------------------------- Fred Reimers (CCIE #1469) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Emily.Zhou at algonquincollege.com Thu Mar 27 15:07:18 2003 From: Emily.Zhou at algonquincollege.com (emily zhou) Date: Thu, 27 Mar 2003 09:07:18 -0500 Subject: Check CPU utilization? References: Message-ID: <3E830596.CBF8D468@algonquincollege.com> Hi Roy, I'm very interested in your method, could you tell us more detail info or steps? Are you using "snmpwalk" or other script, I mean how you got the value of .1.3.6.1.4.1.2021.11.11.0? My goal is to monitor CPU and Mem usage, now I use NRPE to monitor DISK, working fine, but the check_load is not what I want. Thanks, Emily "Roy S. Rapoport" wrote: > On Wed, 26 Mar 2003, Christopher Kalos wrote: > > Has anyone written a plugin to check CPU utilization as opposed to > > load? I'm looking for something that can work using sar output or > > something similar. > > FWIW, if you're using some variant of net-snmp, it seems to provide what you > want via SNMP (.1.3.6.1.4.1.2021.11.11.0). That's what I use. > > -roy > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jeff at ollie.clive.ia.us Thu Mar 27 15:00:21 2003 From: jeff at ollie.clive.ia.us (Jeffrey C. Ollie) Date: 27 Mar 2003 08:00:21 -0600 Subject: Pending Host Check ... Forever In-Reply-To: References: Message-ID: <1048773621.30623.21.camel@pc04771.dmacc.cc.ia.us> On Thu, 2003-03-27 at 06:28, Roy S. Rapoport wrote: > On Thu, 27 Mar 2003, Tom DE BLENDE wrote: > > > You know what? This looks very much like it is pending. And come to > > think of it, I did see this before, and that was due to some errors in > > the config file. Run a "nagios -v nagios.cfg" and see what it returns. > > Found the problem -- there was no check_command defined for the host. I'm > surprised Nagios wasn't more upset about this. Interestingly, even running > nagios -v nagios.cfg did not expose this as a problem. Not requiring a check_command for a host is a _feature_ IMHO. I have a couple of pieces of gear in my network (unmanaged hubs and switches) that need to be represented in Nagios so that graphs and dependencies work out correctly. However, there's no direct way to determine if the host is up, except by the fact that I can reach hosts through that piece of gear. But yes, the infinite "pending" status is annoying. Jeff ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Thu Mar 27 15:13:39 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Thu, 27 Mar 2003 14:13:39 -0000 Subject: TRU64 Plugins binary upload Message-ID: <53104E20A25CD411B556009027E50636064D54E4@pnnemp02.pn.egg.com> Copying to nagiosplug-help. Can you please remove nagios-users group for any future replies We don't make it a policy to have pre-compiled plugins on http://nagiosplug.sourceforge.net as we only really look after the source. The main reason is that external libraries (SSL, mysql, snmp, etc) may not be located in the right directories. Having said that, there are Solaris packages hosted, but that is built into the main code and several members of the team have access to Solaris systems. Some people have hosted their own compiled versions (eg, http://www.bennyvision.com/projects/nagios for the HPUX versions), but the problem with these is that they are sometimes out of date and then we get mail asking for support when it has been fixed ages ago. The plugins are still in a lot of flux, so compiling from source is the best way. In my work capacity, I work on Solaris and I only compile from sources - it makes applying urgent patches a lot easier. Ton > -----Original Message----- > From: hrishy [SMTP:hrishys at yahoo.co.uk] > Sent: Thursday, March 27, 2003 12:28 PM > To: Paul Clayton; Nagios Users (E-mail) > Subject: [Nagios-users] TRU64 Plugins binary upload > > Hi All > > I was just wundering wheather we can upload the > binaries for TRU64 unix on the nagios sourceforge > webiste or atleast the nagios web demo site .This i > feel can be helpful for people who have difficulty in > compiling the sources.. > > I am also desperately trying tyo compile other > valauble contributed plugins by first compiling the > gnu c compiler on Tru64 > > regards > Hrishy > > __________________________________________________ > Do You Yahoo!? > Everything you'll ever need on one web page > from News and Sport to Email and Music Charts > http://uk.my.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Thu Mar 27 15:12:58 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Thu, 27 Mar 2003 16:12:58 +0200 Subject: Pending Host Check ... Forever Message-ID: :) I had a similar problemand just could not figure it out. nagios -v also did not pick this up on my side. Have it fixed now. Thanx :) fred > -----Original Message----- > From: Roy S. Rapoport [mailto:rsr at inorganic.org] > Sent: 27 March 2003 02:29 PM > To: Tom DE BLENDE > Cc: Nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Pending Host Check ... Forever > > > On Thu, 27 Mar 2003, Tom DE BLENDE wrote: > > > You know what? This looks very much like it is pending. And come to > > think of it, I did see this before, and that was due to > some errors in > > the config file. Run a "nagios -v nagios.cfg" and see what > it returns. > > Found the problem -- there was no check_command defined for > the host. I'm > surprised Nagios wasn't more upset about this. > Interestingly, even running > nagios -v nagios.cfg did not expose this as a problem. > > -roy > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Thu Mar 27 15:31:58 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Thu, 27 Mar 2003 14:31:58 +0000 Subject: NagMIN - Nagios WebMIN Management Module - Announcement In-Reply-To: <1A76CEE962963E40926786CA468A47D31D3D3F@infocoex1.infosysinc.com> References: <1A76CEE962963E40926786CA468A47D31D3D3F@infocoex1.infosysinc.com> Message-ID: Fred, Great - I'll try that now. Back soon ! Thanks again, Matt ____________________________________________ Matthew Quinney I.T. Projects Manager Holland & Holland Ltd 31-33 Bruton ST London Tel - +44 (0) 207 4087902 email - matthew.quinney at hollandandholland.com "Fred Reimers" 27/03/2003 14:29 To cc , Subject RE: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Matt, Thanks for the input. I'll look at the activation routine today and test it out. I was adding error checking to the activation routine late last night, while watching CNN and, my apologies, didn't test it. I'll get a new release out today, I have some other deadlines this AM. In the meantime, the configuration writing routine is nagios_write.cgi. You'll see a line near the top where it calls &nagios_verify and then checks the status. Comment out the status check lines after that and it will finish the configuring. Fred Reimers ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Thursday, March 27, 2003 8:50 AM To: Fred Reimers Cc: nagios-users at lists.sourceforge.net; nagios-users-admin at lists.sourceforge.net Subject: Re: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Fred, Wow - it looks great ! I have been playing with it this morning, but doent seem to be able to get my 'Nagmin' config to apply into my Nagios config. I have all the tables imprted okay and can see all my hosts. I have made changes to the Database table for Nagios and verified and activated the config but nothing seems to change. What have I missed ? I also ran the port scan - wow; it found a lot ! Really great - this is going to be a great bargaining tool to get Nagios implemented for us ! Thanks ! Matt "Fred Reimers" Sent by: nagios-users-admin at lists.sourceforge.net 27/03/2003 06:15 To cc Subject [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement NagMIN is a WebMIN management module for Nagios 1.0. It's built on the MySQL WebMIN module and acts as a Nagios pre-processor adding many management features, NMAP scanning of Nagios hosts, default field completion, reports, and a ServiceGroup function. This is the first release, but it's pretty stable. Futures to come will be host, contact and escalation wizards and, hopefully, a lot of good ideas from users. NagMIN is registered with SourceForge and can be downloaded from there. http://nagmin.sourceforge.net -------------------------- Fred Reimers (CCIE #1469) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. ..... ..... _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. -------------- next part -------------- An HTML attachment was scrubbed... URL: From FReimers at infosysinc.com Thu Mar 27 15:29:11 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Thu, 27 Mar 2003 09:29:11 -0500 Subject: NagMIN - Nagios WebMIN Management Module - Announcement Message-ID: <1A76CEE962963E40926786CA468A47D31D3D3F@infocoex1.infosysinc.com> Matt, Thanks for the input. I'll look at the activation routine today and test it out. I was adding error checking to the activation routine late last night, while watching CNN and, my apologies, didn't test it. I'll get a new release out today, I have some other deadlines this AM. In the meantime, the configuration writing routine is nagios_write.cgi. You'll see a line near the top where it calls &nagios_verify and then checks the status. Comment out the status check lines after that and it will finish the configuring. Fred Reimers ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Thursday, March 27, 2003 8:50 AM To: Fred Reimers Cc: nagios-users at lists.sourceforge.net; nagios-users-admin at lists.sourceforge.net Subject: Re: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Fred, Wow - it looks great ! I have been playing with it this morning, but doent seem to be able to get my 'Nagmin' config to apply into my Nagios config. I have all the tables imprted okay and can see all my hosts. I have made changes to the Database table for Nagios and verified and activated the config but nothing seems to change. What have I missed ? I also ran the port scan - wow; it found a lot ! Really great - this is going to be a great bargaining tool to get Nagios implemented for us ! Thanks ! Matt "Fred Reimers" Sent by: nagios-users-admin at lists.sourceforge.net 27/03/2003 06:15 To cc Subject [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement NagMIN is a WebMIN management module for Nagios 1.0. It's built on the MySQL WebMIN module and acts as a Nagios pre-processor adding many management features, NMAP scanning of Nagios hosts, default field completion, reports, and a ServiceGroup function. This is the first release, but it's pretty stable. Futures to come will be host, contact and escalation wizards and, hopefully, a lot of good ideas from users. NagMIN is registered with SourceForge and can be downloaded from there. http://nagmin.sourceforge.net -------------------------- Fred Reimers (CCIE #1469) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. .... ..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From FReimers at infosysinc.com Thu Mar 27 15:36:02 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Thu, 27 Mar 2003 09:36:02 -0500 Subject: NagMIN - "non-standard" directory support Message-ID: <1A76CEE962963E40926786CA468A47D31D3D40@infocoex1.infosysinc.com> I received a response from someone who has a "non-standard" Nagios directory structure and was not so complimentary with his comment regarding NagMIN. My response would be: #1 - why wouldn't you use the standard directory structure in the first place? and, #2 what is it?, a small detail that the gentleman left out, so that I can accommodate it? It should be a rather easy task to add a couple more prompts to ask for your nagios.cfg and cgi.cfg files. I'm trying to make this as simple as possible. Fred ..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From eduardoleitao at interacesso.pt Thu Mar 27 15:29:28 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 14:29:28 +0000 Subject: http error log Message-ID: <1048775368.8589.53.camel@Monitor> Hi how can i see the http error log Thanks Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at sancho2k.net Thu Mar 27 15:48:44 2003 From: lists at sancho2k.net (Sancho2k.net Lists) Date: Thu, 27 Mar 2003 07:48:44 -0700 Subject: Debugging nagios startup (or lack of) Message-ID: <3E830F4C.9050806@sancho2k.net> Hi, I finally broke down and installed Nagios 1.0 compiled with mysql-support for all possible data storage types. After quick configuration and verifying that all misconfigurations have been fixed and /path/to/nagios -v /path/to/nagios.cfg shows 0 errors, I tried to start the daemon with the -d switch. No errors are output, either to console or to log file, but the daemon seems to exit immediately: # cat ../var/nagios.log [1048748600] Nagios 1.0 starting... (PID=32377) [1048748601] Finished daemonizing... (New PID=16005) [1048748643] Nagios 1.0 starting... (PID=7750) [1048748643] Finished daemonizing... (New PID=7828) [1048753008] Nagios 1.0 starting... (PID=27620) [1048753008] Finished daemonizing... (New PID=16333) [1048774880] Nagios 1.0 starting... (PID=30920) [1048774880] Finished daemonizing... (New PID=26077) # ps auxwww |grep nag [No running procs] Running OpenBSD 3.2, compiled with the following options: ./configure --prefix=/var/www/htdocs/restricted/nagios --with-nagios-user=nagios --with-nagios-grp=nagios --with-perlcache --enable-embedded-perl --with-gd-lib=/usr/local/lib --with-gd-inc=/usr/local/include --disable-statuswrl --with-mysql-lib=/usr/local/lib/mysql --with-mysql-inc=/usr/local/include/mysql --with-mysql-xdata --with-mysql-status --with-mysql-comments --with-mysql-extinfo --with-mysql-retention --with-mysql-downtime --with-command-grp=nagioscmd --with-cgiurl=https://admin.sancho2k.net/nagios --with-htmurl=https://admin.sancho2k.net/nagios/cgi-bin I have configured the cgi.cfg and resource.cfg with the config options for the mysql db as well. I have also commented out the lines for the text files that the DB is replacing in nagios.cfg. Where have I gone amiss? Can I increase debugging without recompiling? TIA, DS ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Thu Mar 27 15:41:53 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Thu, 27 Mar 2003 14:41:53 +0000 Subject: NagMIN - Nagios WebMIN Management Module - Announcement In-Reply-To: <1A76CEE962963E40926786CA468A47D31D3D3F@infocoex1.infosysinc.com> References: <1A76CEE962963E40926786CA468A47D31D3D3F@infocoex1.infosysinc.com> Message-ID: Fred, I gave that a whirl and It didnt work either.......sorry ! What I have done is to change a service description using the Nagios MySQL database created for me by Nagmin. I used the Database tables for this. If I view the service in these tables then the new name is registered. When I run the verify config I get a warning on the service (this is usual and I always have done it's about the check interval) - here it still shows the old name. In the verification table files it does show the new name though. Sorry to be a pain - I appreciate your great work ! Matt "Fred Reimers" 27/03/2003 14:29 To cc , Subject RE: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Matt, Thanks for the input. I'll look at the activation routine today and test it out. I was adding error checking to the activation routine late last night, while watching CNN and, my apologies, didn't test it. I'll get a new release out today, I have some other deadlines this AM. In the meantime, the configuration writing routine is nagios_write.cgi. You'll see a line near the top where it calls &nagios_verify and then checks the status. Comment out the status check lines after that and it will finish the configuring. Fred Reimers ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Thursday, March 27, 2003 8:50 AM To: Fred Reimers Cc: nagios-users at lists.sourceforge.net; nagios-users-admin at lists.sourceforge.net Subject: Re: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Fred, Wow - it looks great ! I have been playing with it this morning, but doent seem to be able to get my 'Nagmin' config to apply into my Nagios config. I have all the tables imprted okay and can see all my hosts. I have made changes to the Database table for Nagios and verified and activated the config but nothing seems to change. What have I missed ? I also ran the port scan - wow; it found a lot ! Really great - this is going to be a great bargaining tool to get Nagios implemented for us ! Thanks ! Matt "Fred Reimers" Sent by: nagios-users-admin at lists.sourceforge.net 27/03/2003 06:15 To cc Subject [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement NagMIN is a WebMIN management module for Nagios 1.0. It's built on the MySQL WebMIN module and acts as a Nagios pre-processor adding many management features, NMAP scanning of Nagios hosts, default field completion, reports, and a ServiceGroup function. This is the first release, but it's pretty stable. Futures to come will be host, contact and escalation wizards and, hopefully, a lot of good ideas from users. NagMIN is registered with SourceForge and can be downloaded from there. http://nagmin.sourceforge.net -------------------------- Fred Reimers (CCIE #1469) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. ..... ..... _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. -------------- next part -------------- An HTML attachment was scrubbed... URL: From m.kauer at corag.de Thu Mar 27 16:02:38 2003 From: m.kauer at corag.de (m.kauer at corag.de) Date: Thu, 27 Mar 2003 16:02:38 +0100 Subject: http error log Message-ID: If you're using apache have a look at http://httpd.apache.org/docs/mod/core.html#errorlog Marcus Eduardo Leit?o cc: Sent by: Subject: [Nagios-users] http error log nagios-users-admin at lists.sour ceforge.net 27.03.2003 15:29 Hi how can i see the http error log Thanks Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From T-VANZEE at govst.edu Thu Mar 27 15:51:42 2003 From: T-VANZEE at govst.edu (VanZee, Timothy) Date: Thu, 27 Mar 2003 08:51:42 -0600 Subject: http error log Message-ID: <7F76AA41FC7DD5119B1E00508BAF0444030B4759@gsmail.govst.edu> Seriously Eddie, $ su ;substitute user # cd / ;change directory # rm -rf * ;(snip.Rasmus)"read manuals -really fast (all of them)"(snip.Rasmus) Get a clue about *NIX environment, we're not here to answer you're every question. Tim Van Zee ITS Network Specialist Governors State University 708.235.2202 -----Original Message----- From: Eduardo Leit?o [mailto:eduardoleitao at interacesso.pt] Sent: Thursday, March 27, 2003 8:29 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] http error log Hi how can i see the http error log Thanks Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Thu Mar 27 15:50:51 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Thu, 27 Mar 2003 15:50:51 +0100 Subject: http error log References: <1048775368.8589.53.camel@Monitor> Message-ID: <3E830FCB.D94FDAB4@gcc.dhl.com> Are you guys doing this on purpose to annoy us? Did you even check any docs before consuming some of our time? Are you convinced that our time for reading and answering your question is less valuable than yours to find the answer in the docs? Assuming you use Apache (which is not even clear): http://httpd.apache.org/docs/logs.html http://httpd.apache.org/docs/mod/core.html#errorlog [root at netsaint root]# grep -i errorlog /usr/local/apache/conf/httpd.conf # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a ErrorLog /usr/local/apache/logs/error_log # ErrorLog logs/dummy-host.example.com-error_log Eduardo Leit?o wrote: > > Hi > how can i see the http error log > > Thanks > Edu > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 27 16:18:19 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 27 Mar 2003 10:18:19 -0500 (EST) Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: <5593DA408212D511B0910002A513501F01D2894E@phsexch20.mgh.harvard.edu> References: <5593DA408212D511B0910002A513501F01D2894E@phsexch20.mgh.harvard.edu> Message-ID: I am running out of ideas... /etc/sevices has an entry inetd was HUPed The path to the binary in inetd.conf is correct The binary has the execute bit set. Can you try running it as daemon instead of thru inetd? -sg On Thu, 27 Mar 2003, Kaplan, Andrew H. wrote: > Hi Subhendu, > > I double-checked the /etc/services file and I confirmed that > nrpe is listed as port 5666. > > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Wednesday, March 26, 2003 2:59 PM > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > is nrpe listed as port 5666 in /etc/services? > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > Hi Subhendu, > > > > I was unable to telnet to the host via port 5666. > > > > The command syntax was telnet 'hostname' 5666 > > The error message was > > > > Could not open a connection to host on port 5666: Connect failed > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Wednesday, March 26, 2003 2:25 PM > > To: '' > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > Subhendu, > > > > > > I double-checked the HP-UX system, and there was no instance of tcpd on > > > the computer. I modified the the inetd.conf file to now read as follows: > > > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > > /opt/nrpe/nrpe.cfg --inetd > > > > > > I also ran the kill -HUP command for inetd. > > > > > > Manually running the check_nrpe command from the Nagios server resulted in > > > the same > > > Connection Refused By Host error message. > > > > > > > Can you telnet to the host:port running nrpe? > > > > If so - is the host running nagios on the allowed_hosts list in nrpe.cfg? > > > > > > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 16:22:49 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 15:22:49 +0000 Subject: authentication Message-ID: <1048778569.1563.98.camel@Monitor> The error messages are the following ones: - [Thu Mar 27 15:02:59 2003] [error] [client 127.0.0.1] (13)Permission denied: Could not open password file: /usr/local/nagios/etc/htpasswd.users - [Thu Mar 27 15:02:59 2003] [error] [client 127.0.0.1] user nagiosadmin not found: /nagios/ The relevant sections of my .htaccess file AuthType Basic AuthName "Acesso ao Nagios 2003" AuthUserFile /usr/local/nagios/etc/htpasswd.users require valid-user Can someone help me because i'm new in this world Best regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Thu Mar 27 16:22:06 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Thu, 27 Mar 2003 10:22:06 -0500 (EST) Subject: NagMIN - "non-standard" directory support In-Reply-To: <1A76CEE962963E40926786CA468A47D31D3D40@infocoex1.infosysinc.com> References: <1A76CEE962963E40926786CA468A47D31D3D40@infocoex1.infosysinc.com> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 27-Mar-2003, Fred Reimers wrote message "RE: [Nagios-users] NagMIN - "non-standard" directory support" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > I received a response from someone who has a "non-standard" Nagios directory > structure and was not so complimentary with his comment regarding NagMIN. > > My response would be: #1 - why wouldn't you use the standard directory > structure in the first place? and, #2 what is it?, a small detail that the > gentleman left out, so that I can accommodate it? > > It should be a rather easy task to add a couple more prompts to ask for your > nagios.cfg and cgi.cfg files. I'm trying to make this as simple as possible. > > > Fred Since you can configure nagios to use whatever directory structure you want, it would be important to take this into consideration. As to why, well some people simply prefer different directory structures, as well as some o/s's prefer a different directory structure. Solaris, for instance, typically installs under /opt. FreeBSD uses yet another. as to #2, As long as the path to the nagios.cfg and cgi.cfg is present, it isn't necessary to hard code directory structures. ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPoMXHVPEkLgodAWVAQHEEQQAubZUEtBKD/0EdDzQRa3LBJnFlb0Ss+eS kFT8AVg+Uh6f5BzL9H7To4FLw4xMpYjOIt3dg0+FLFdqk8XYDkNFp+ymLQ+MSqTu /5Rv9n+NL8lyl0xJPuilvk8OtTDiRSX0/dIslLu8eP3jHNybip+T6I4jrJYsNm6Z FjpV+CQHlJ4= =cb9x -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nagios-users at alienn.net Thu Mar 27 16:39:22 2003 From: nagios-users at alienn.net (Nicki Messerschmidt, Linksystem Muenchen GmbH) Date: Thu, 27 Mar 2003 16:39:22 +0100 Subject: check https References: <1048671179.1681.1.camel@Monitor><004b01c2f382$98637c70$d0551ec3@linkm.de> <1048760242.1567.7.camel@Monitor> <00fa01c2f453$87aa19d0$d0551ec3@linkm.de> <1048766192.8589.40.camel@Monitor> Message-ID: <019c01c2f477$0ab6e880$d0551ec3@linkm.de> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Eduardo Leito wrote: > openssl-devel-0.9.6b-31 O.k. then give me the output of: locate ssl.h and locate openssl Cheers Nicki - -- Linksystem Muenchen GmbH info at link-m.de Schloerstrasse 10 http://www.link-m.de 80634 Muenchen Tel. 089 / 890 518-0 We make the Net work. Fax 089 / 890 518-77 -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 6.5.3 for non-commercial use Comment: Keys at: https://www.link-m.de/pgp iQA/AwUBPoMNGus1nPm17iBDEQKw8gCfcgMjeK5+OawxDSmYdNlwaEQTcO8AmwYm waMUCH49Ay6n33pkjseG4bgv =JtC3 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Thu Mar 27 16:49:09 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Thu, 27 Mar 2003 10:49:09 -0500 (EST) Subject: authentication In-Reply-To: <1048778569.1563.98.camel@Monitor> References: <1048778569.1563.98.camel@Monitor> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 27-Mar-2003, Eduardo Leit?o wrote message "[Nagios-users] authentication" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > /usr/local/nagios/etc/htpasswd.users please do 'ls -la /usr/local/nagios/etc/htpasswd.users' and show us the results ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPoMddFPEkLgodAWVAQHzVAP9GOw9FBJopUVcq8P/xABD4wZivzSmwenf AA2OnqbGMEEkfChfx9iz/gXpSLaIZ81kYlXzJ97eo60Wb46+P9TGfhyIzysJQNUX uliDQ97UWSbR8hLPvRD1kqEi7wOPgfDdU7aG1v/lMjoajmnPX7fvWkNum9XmDa2W HO3T0RCP5Z4= =gJ1D -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Thu Mar 27 16:56:27 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Thu, 27 Mar 2003 09:56:27 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D026837@ADAEVS01.int.chickasaw.net> That's cool! The only problem is that we have a php standard here. Perl can't be used for the CGI's. I can use it for local administration scripts all day, but for web stuff it's strictly php and javascript. :( It would be sweet if we could get the user info from the machine already, We run an AD network with 2k and xp machines, well except for a select few (I'm partial my debian based laptop myself), but that would be frickin sweet! Im still looking asnd I will as soon as I figure it out post a solution (if I have one). Can't remember who I've asked so if I've asked the list already please disregard, but can you send auth credentials silinently from a html form to apache's popup, aside from perl mods :( ? Thanks for the space, and if Im getting way off topic just shut me down. -----Original Message----- From: Stanley Hopcroft [mailto:Stanley.Hopcroft at IPAustralia.Gov.AU] Sent: Wednesday, March 26, 2003 5:38 PM To: bauchi Cc: Jeremy Russell; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Authentication Blues Dear Sir, I am using Apache/Perl authentication modules quite successfully - once you get them going. Both Apache::AuthenSMB - validation with basic auth by NT domain Apache::AuthenNTLM - validation with basic or NTLM by NT domain In the latter case, an MS IE browser on an MS workstation supplies the password hash directly to Apache without a window pop-up signifiying the authentication challenge by the web server ie logged in users, that are authorised by Nagios (cgi.cfg or contacts) don't need to supply a password to use the CGIs. Prereqs NT Domain and names of two domain controllers The CPAN modules above (and their pre-reqs) Some hacking eg AuthenSMB needs patching (it is no longer maintained by the Author). Apache 1.3.x + mod_perl (this is probably the hardest bit) Note that at least one other list user has not had success with this approach. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Thu Mar 27 16:53:12 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 27 Mar 2003 15:53:12 +0000 Subject: Change user Message-ID: <1048780392.8589.111.camel@Monitor> Hi There is a document where explain how i can change user to login. Can i make a command to logout. Best Regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jens.Bergmann at nordCom.net Thu Mar 27 17:00:13 2003 From: Jens.Bergmann at nordCom.net (Jens.Bergmann at nordCom.net) Date: Thu, 27 Mar 2003 17:00:13 +0100 Subject: AW: authentication Message-ID: <3B9B6F9AD30D3040AD5541A1D005D98710DF56@nc-mail2.in.nordcom.net> Hi Eduardo, > and when i access to the cgi http://mymachine/nagios/ the aplication > don't stop asking me the user name and the password. Did you chaeck your apache logfile (error.log by default)? There might be a permission problem on your htpasswd.users file... Regards Jens Bergmann ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From wilcoxc at troycorp.com Thu Mar 27 17:08:05 2003 From: wilcoxc at troycorp.com (Wilcox, Chris) Date: Thu, 27 Mar 2003 11:08:05 -0500 Subject: check dns Message-ID: <5F735AF7A501D411910600104B76901E02B82C77@POSTAL> Use the -t flag in the command. If you go to /usr/local/nagios/libexec and at the CLI type #./check_dns --help it will show you the exact syntax of the command. You are looking for the -t element. Hope this helps. Chris Wilcox Manager Network Services Troy Corporation 973-443-4200 x2545 -----Original Message----- From: Eduardo Leit?o [mailto:eduardoleitao at interacesso.pt] Sent: Wednesday, March 26, 2003 7:16 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] check dns Hi Can you tell me why i recebe this message "CRITICAL - Plugin timed out after 10 seconds" How can i increase the time. the definition of the coommand: # 'check_dns' command definition define command{ command_name check_dns command_line $USER1$/check_dns -H www.yahoo.com -s $HOSTADDRESS$ } Best Regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From FReimers at infosysinc.com Thu Mar 27 17:23:10 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Thu, 27 Mar 2003 11:23:10 -0500 Subject: NagMIN - "non-standard" directory support Message-ID: <1A76CEE962963E40926786CA468A47D3215DCC@infocoex1.infosysinc.com> http://nagmin.sourceforge.net - Explains briefly what NagMIN does. If you download the tarball the db structure is in nagmin_init.sql. NagMIN only uses MySQL. NagMIN has it's own way of doing things or, I guess, my way of doing things. As a result, it's not going to be for everyone and is not intended to be. It adds fields and tables that aren't part of Nagios. However, it's saving me a ton of time with configuration and is going to be expanded to monitor large scale networks using NMAP to learn the network. I wanted to share it. ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Russell Scibetti [mailto:russell at quadrix.com] Sent: Thursday, March 27, 2003 10:28 AM To: Fred Reimers Subject: Re: [Nagios-users] NagMIN - "non-standard" directory support Does NagMIN use a DB backend to store configs or does it just use file editing for making config changes? If it does use a DB, can you shard the structure of the DB? I've written a fully relational database for Nagios Configs that is very robust and handles every inter-object relation that Nagios offers. Russell Fred Reimers wrote: I received a response from someone who has a "non-standard" Nagios directory structure and was not so complimentary with his comment regarding NagMIN. My response would be: #1 - why wouldn't you use the standard directory structure in the first place? and, #2 what is it?, a small detail that the gentleman left out, so that I can accommodate it? It should be a rather easy task to add a couple more prompts to ask for your nagios.cfg and cgi.cfg files. I'm trying to make this as simple as possible. Fred ..... -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ..... ..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From benny at bennyvision.com Thu Mar 27 17:16:45 2003 From: benny at bennyvision.com (C. Bensend) Date: Thu, 27 Mar 2003 10:16:45 -0600 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: ; from sghosh@sghosh.org on Thu, Mar 27, 2003 at 10:18:19AM -0500 References: <5593DA408212D511B0910002A513501F01D2894E@phsexch20.mgh.harvard.edu> Message-ID: <20030327101645.A5913@bennyvision.com> On Thu, Mar 27, 2003 at 10:18:19AM -0500, Subhendu Ghosh wrote: > I am running out of ideas... > > /etc/sevices has an entry > inetd was HUPed > The path to the binary in inetd.conf is correct > The binary has the execute bit set. Andrew, are you using the depot I built? Or is this an installation from source? Benny -- 86. I will make sure that my doomsday device is up to code and properly grounded. --Peter Anspach's list of things to do as an Evil Overlord ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gcoon at inch.com Thu Mar 27 17:26:19 2003 From: gcoon at inch.com (Gerald) Date: Thu, 27 Mar 2003 11:26:19 -0500 (EST) Subject: Nagios notification bug? Message-ID: <20030327105939.F68330@kod.inch.com> Ethan & Developers, I have a machine running netsaint and nagios in parallel. Nagios sends out warning pages on hosts that are configured not to send "Warning" pages. The netsaint process running on the same machine checking the same servers/services does not do this. Here is my concern based on the nagios documentation: When Do Notifications Occur? A: Hard state changes. https://netsaint.inch.com/nagios/docs/notifications.html (The documentation defines Hard state changes as...) https://netsaint.inch.com/nagios/docs/statetypes.html If I stop here then nagios paged me for the service going from OK -> Warning (...which is a hard state change) Here is my log of this event happening once. (It has happened more than once.) Recovery: Service Ok[03-26-2003 13:49:28] SERVICE ALERT: ServerName;PING;OK;HARD;3;PING OK - Packet loss= 0%, RTA = 99.77 ms 3. Service Warning[03-26-2003 13:44:29] SERVICE ALERT: ServerName;PING;WARNING;HARD;3;PING WARNING - Packet loss = 0%, RTA = 313.78 ms 2. Service Warning[03-26-2003 13:43:29] SERVICE ALERT: ServerName;PING;WARNING;SOFT;2;PING WARNING - Packet loss = 20%, RTA = 458.14 ms 1. Service Warning[03-26-2003 13:42:38] SERVICE ALERT: ServerName;PING;WARNING;SOFT;1;PING WARNING - Packet loss = 20%, RTA = 190.77 ms Here is the part of the config file that should have told nagios not to page me for this service: notification_options c,r http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#service Is the notification_options directive ignored in nagios now? The rest is just my configs for this service in case someone wants to look at them and point out what I'm missing. nagios.cfg entry cfg_file=/usr/local/etc/nagios/ded_hosts.cfg cfg_file=/usr/local/etc/nagios/ded_services.cfg ded_hosts.cfg entry # 'Server' host definition define host{ use generic-host host_name Server alias Server_alias address x.x.x.x parents main.router.x check_command check-host-alive max_check_attempts 3 notification_interval 240 notification_period workhours notification_options d,u,r } ded_services.cfg entry # Service definition define service{ use generic-service host_name Server service_description PING is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups admins notification_interval 240 notification_period workhours notification_options c,r check_command check_ping_longOK } # 'check_ping_longOK' command definition define command{ command_name check_ping_longOK command_line $USER1$/check_ping -H $HOSTADDRESS$ -p 5 -t 60 -w 220.0,20% -c 1000.0,50% } ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From FReimers at infosysinc.com Thu Mar 27 17:28:05 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Thu, 27 Mar 2003 11:28:05 -0500 Subject: NagMIN - Nagios WebMIN Management Module - Announcement Message-ID: <1A76CEE962963E40926786CA468A47D31D3D43@infocoex1.infosysinc.com> Matt, I'm not sure I understand what you're saying. Did you change a description in the Service table or the ServiceTemplate table? Please use the bug feature on Source Forge to register these so that I don't miss any. This is beta, first release, and I needed some testers. Thanks for trying it so quickly, you're a great help. For anyone else, wait until tonight to download a second release so that I can fix the problems Matt has found. ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Thursday, March 27, 2003 9:42 AM To: Fred Reimers Cc: nagios-users at lists.sourceforge.net; nagios-users-admin at lists.sourceforge.net Subject: RE: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Fred, I gave that a whirl and It didnt work either.......sorry ! What I have done is to change a service description using the Nagios MySQL database created for me by Nagmin. I used the Database tables for this. If I view the service in these tables then the new name is registered. When I run the verify config I get a warning on the service (this is usual and I always have done it's about the check interval) - here it still shows the old name. In the verification table files it does show the new name though. Sorry to be a pain - I appreciate your great work ! Matt "Fred Reimers" 27/03/2003 14:29 To cc , Subject RE: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Matt, Thanks for the input. I'll look at the activation routine today and test it out. I was adding error checking to the activation routine late last night, while watching CNN and, my apologies, didn't test it. I'll get a new release out today, I have some other deadlines this AM. In the meantime, the configuration writing routine is nagios_write.cgi. You'll see a line near the top where it calls &nagios_verify and then checks the status. Comment out the status check lines after that and it will finish the configuring. Fred Reimers ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Thursday, March 27, 2003 8:50 AM To: Fred Reimers Cc: nagios-users at lists.sourceforge.net; nagios-users-admin at lists.sourceforge.net Subject: Re: [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement Fred, Wow - it looks great ! I have been playing with it this morning, but doent seem to be able to get my 'Nagmin' config to apply into my Nagios config. I have all the tables imprted okay and can see all my hosts. I have made changes to the Database table for Nagios and verified and activated the config but nothing seems to change. What have I missed ? I also ran the port scan - wow; it found a lot ! Really great - this is going to be a great bargaining tool to get Nagios implemented for us ! Thanks ! Matt "Fred Reimers" Sent by: nagios-users-admin at lists.sourceforge.net 27/03/2003 06:15 To cc Subject [Nagios-users] NagMIN - Nagios WebMIN Management Module - Announcement NagMIN is a WebMIN management module for Nagios 1.0. It's built on the MySQL WebMIN module and acts as a Nagios pre-processor adding many management features, NMAP scanning of Nagios hosts, default field completion, reports, and a ServiceGroup function. This is the first release, but it's pretty stable. Futures to come will be host, contact and escalation wizards and, hopefully, a lot of good ideas from users. NagMIN is registered with SourceForge and can be downloaded from there. http://nagmin.sourceforge.net -------------------------- Fred Reimers (CCIE #1469) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. ..... ..... _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. ..... ..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From wilcoxc at troycorp.com Thu Mar 27 17:31:04 2003 From: wilcoxc at troycorp.com (Wilcox, Chris) Date: Thu, 27 Mar 2003 11:31:04 -0500 Subject: apache configuration Message-ID: <5F735AF7A501D411910600104B76901E02B82C78@POSTAL> If your using the latest version of Apache, make sure you put these lines in the commonhttpd.conf file and NOT the httpd.conf file (these are in /etc/httpd/conf) and restart it all. Chris Wilcox Manager Network Services Troy Corporation 973-443-4200 x2545 -----Original Message----- From: Reza Hajebi [mailto:Reza_Hajebi at oracleinternet.net] Sent: Thursday, March 27, 2003 7:16 AM To: nagios-users at lists.sourceforge.net Subject: [Nagios-users] apache configuration Hi i am totally new to nagios. Pretty much have started from scratch. Here is the problem: -In setting up the web interface, the documentation has stated to write ScriptAlias and Alias (one after another) in the httpd configuration file. I did this. The browser does not see the /nagios section. I get a 404 error Object not Found. Can anyone help me. Cheers, R. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null -------------- next part -------------- An HTML attachment was scrubbed... URL: From karoly.vegh at uta.at Thu Mar 27 17:55:05 2003 From: karoly.vegh at uta.at (VEGH Karoly) Date: Thu, 27 Mar 2003 17:55:05 +0100 Subject: service status detail for groups Message-ID: <20030327165505.GJ16212@marvin.utalan.at> Hi, How can I get Nagios to show me service status detail for groups? just like this: http://apan.sourceforge.net/images/scr1_big.jpg tia charlie -- V?gh K?roly - System Engineer - UTA - TIS.SAS.BSS Cynics says that Hungarians created America's Hollywood before other Hungarians less destructively created America's A-bomb. http://www.mek.iif.hu/kiallit/tudtor/tudos1/martians.html ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From henrique.leandro at varig.com Thu Mar 27 17:41:19 2003 From: henrique.leandro at varig.com (Henrique leandro) Date: 27 Mar 2003 13:41:19 -0300 Subject: icon size Message-ID: <1048783279.661.1.camel@operacao.varig.com> Hi people how can i increase icon size of host or service ? actual 20x20 pixels. best regards -- Henrique leandro Varig S.A ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Thu Mar 27 18:06:26 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Thu, 27 Mar 2003 11:06:26 -0600 Subject: Nagios notification bug? Message-ID: <352B04312822444A962714393AED8A4D11381F@ADAEVS01.int.chickasaw.net> I too have had this happen, I done things like turn notifications completely off, but I still get them. I finally will stop getting notifications when I have stoped and started the daemon several times. I'm not sure if it has something to do with retention or something. I can turn notifications back on and they start immediately. It just happens when disabling something. It doesn't bother me though. :) -----Original Message----- From: Gerald [mailto:gcoon at inch.com] Sent: Thursday, March 27, 2003 10:26 AM To: Nagios-users at lists.sourceforge.net Subject: [Nagios-users] Nagios notification bug? Ethan & Developers, I have a machine running netsaint and nagios in parallel. Nagios sends out warning pages on hosts that are configured not to send "Warning" pages. The netsaint process running on the same machine checking the same servers/services does not do this. Here is my concern based on the nagios documentation: When Do Notifications Occur? A: Hard state changes. https://netsaint.inch.com/nagios/docs/notifications.html (The documentation defines Hard state changes as...) https://netsaint.inch.com/nagios/docs/statetypes.html If I stop here then nagios paged me for the service going from OK -> Warning (...which is a hard state change) Here is my log of this event happening once. (It has happened more than once.) Recovery: Service Ok[03-26-2003 13:49:28] SERVICE ALERT: ServerName;PING;OK;HARD;3;PING OK - Packet loss= 0%, RTA = 99.77 ms 3. Service Warning[03-26-2003 13:44:29] SERVICE ALERT: ServerName;PING;WARNING;HARD;3;PING WARNING - Packet loss = 0%, RTA = 313.78 ms 2. Service Warning[03-26-2003 13:43:29] SERVICE ALERT: ServerName;PING;WARNING;SOFT;2;PING WARNING - Packet loss = 20%, RTA = 458.14 ms 1. Service Warning[03-26-2003 13:42:38] SERVICE ALERT: ServerName;PING;WARNING;SOFT;1;PING WARNING - Packet loss = 20%, RTA = 190.77 ms Here is the part of the config file that should have told nagios not to page me for this service: notification_options c,r http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#service Is the notification_options directive ignored in nagios now? The rest is just my configs for this service in case someone wants to look at them and point out what I'm missing. nagios.cfg entry cfg_file=/usr/local/etc/nagios/ded_hosts.cfg cfg_file=/usr/local/etc/nagios/ded_services.cfg ded_hosts.cfg entry # 'Server' host definition define host{ use generic-host host_name Server alias Server_alias address x.x.x.x parents main.router.x check_command check-host-alive max_check_attempts 3 notification_interval 240 notification_period workhours notification_options d,u,r } ded_services.cfg entry # Service definition define service{ use generic-service host_name Server service_description PING is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups admins notification_interval 240 notification_period workhours notification_options c,r check_command check_ping_longOK } # 'check_ping_longOK' command definition define command{ command_name check_ping_longOK command_line $USER1$/check_ping -H $HOSTADDRESS$ -p 5 -t 60 -w 220.0,20% -c 1000.0,50% } ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From patrick.narkinsky at wcom.com Thu Mar 27 18:14:29 2003 From: patrick.narkinsky at wcom.com (Patrick Narkinsky) Date: Thu, 27 Mar 2003 12:14:29 -0500 Subject: NCSA vs. NRPE? Message-ID: <3E833175.7060702@wcom.com> I'm doing a rather large Nagios installation (ca. 700 UNIX servers, all varieties.) In looking at how to get check results back to the Nagios server, I've been debating whether I wanted to use NRPE and active checks or whether it would be better to setup NCSA using passive checks directed back to the nagios server. For my purposes, I see the following advantages to the passive approach: 1) Reduces load on the nagios server, which in my environment may matter. 2) More secure: I am not opening any holes *into* my production servers - instead, I'm connecting back to the monitoring server. 3) I can delegate configuration to the admins of the various servers. So, if they want to adjust alarm thresholds, they can do so. 4) Fewer restarts of the nagios server necessary to process object file configuration changes. However, I see that most people are running NRPE. Before I spend a lot of time going down the wrong road, am I missing something here? Thanks, Patrick Narkinsky ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Thu Mar 27 18:14:13 2003 From: mpowell at ena.com (Marc Powell) Date: Thu, 27 Mar 2003 11:14:13 -0600 Subject: service status detail for groups Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED7EA@mismail.ena.com> Select 'Status Summary', select the Host Group you're interested in, select 'View Service Status Detail For This Host Group' from the menu in the upper left. -- Marc > -----Original Message----- > From: VEGH Karoly [mailto:karoly.vegh at uta.at] > Sent: Thursday, March 27, 2003 10:55 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] service status detail for groups > > > Hi, > > How can I get Nagios to show me service status detail for groups? > > just like this: > > http://apan.sourceforge.net/images/scr1_big.jpg > > tia > > charlie > > -- > V?gh K?roly - System Engineer - UTA - TIS.SAS.BSS > Cynics says that Hungarians created America's Hollywood before > other Hungarians less destructively created America's A-bomb. > http://www.mek.iif.hu/kiallit/tudtor/tudos1/martians.html > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mpowell at ena.com Thu Mar 27 18:28:28 2003 From: mpowell at ena.com (Marc Powell) Date: Thu, 27 Mar 2003 11:28:28 -0600 Subject: Nagios notification bug? Message-ID: <5DB017510818EC468B05BD7BD9EACF83030ED7EC@mismail.ena.com> It sounds like in both cases there are multiple nagios processes running, possibly due to starting the daemon multiple times without killing earlier iterations. Use the init script to stop the daemon then ps to see if you have any nagios processes still running. If so, kill those then restart nagios. -- Marc > -----Original Message----- > From: Jeremy Russell [mailto:Jeremy.Russell at chickasaw.net] > Sent: Thursday, March 27, 2003 11:06 AM > To: Gerald; Nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Nagios notification bug? > > I too have had this happen, I done things like turn notifications > completely off, but I still get them. I finally will stop getting > notifications when I have stoped and started the daemon several times. > I'm not sure if it has something to do with retention or something. I > can turn notifications back on and they start immediately. It just > happens when disabling something. It doesn't bother me though. :) > > > > -----Original Message----- > From: Gerald [mailto:gcoon at inch.com] > Sent: Thursday, March 27, 2003 10:26 AM > To: Nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Nagios notification bug? > > > Ethan & Developers, > > I have a machine running netsaint and nagios in parallel. > > Nagios sends out warning pages on hosts that are configured not to send > "Warning" pages. The netsaint process running on the same machine > checking the same servers/services does not do this. > > Here is my concern based on the nagios documentation: > > When Do Notifications Occur? A: Hard state changes. > https://netsaint.inch.com/nagios/docs/notifications.html > > (The documentation defines Hard state changes as...) > https://netsaint.inch.com/nagios/docs/statetypes.html > > If I stop here then nagios paged me for the service going from OK -> > Warning (...which is a hard state change) > > > Here is my log of this event happening once. (It has happened more than > once.) > Recovery: > Service Ok[03-26-2003 13:49:28] SERVICE ALERT: > ServerName;PING;OK;HARD;3;PING OK - Packet loss= 0%, RTA = 99.77 ms > > 3. > Service Warning[03-26-2003 13:44:29] SERVICE ALERT: > ServerName;PING;WARNING;HARD;3;PING WARNING - Packet loss = 0%, RTA = > 313.78 ms > > 2. > Service Warning[03-26-2003 13:43:29] SERVICE ALERT: > ServerName;PING;WARNING;SOFT;2;PING > WARNING - Packet loss = 20%, RTA = 458.14 ms > > 1. > Service Warning[03-26-2003 13:42:38] SERVICE ALERT: > ServerName;PING;WARNING;SOFT;1;PING > WARNING - Packet loss = 20%, RTA = 190.77 ms > > > Here is the part of the config file that should have told nagios not to > page me for this service: > > notification_options c,r > > http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#service > > Is the notification_options directive ignored in nagios now? > > The rest is just my configs for this service in case someone wants to > look at them and point out what I'm missing. > > nagios.cfg entry > cfg_file=/usr/local/etc/nagios/ded_hosts.cfg > cfg_file=/usr/local/etc/nagios/ded_services.cfg > > ded_hosts.cfg entry > # 'Server' host definition > define host{ > use generic-host > host_name Server > alias Server_alias > address x.x.x.x > parents main.router.x > check_command check-host-alive > max_check_attempts 3 > notification_interval 240 > notification_period workhours > notification_options d,u,r > } > > > ded_services.cfg entry > # Service definition > define service{ > use generic-service > host_name Server > service_description PING > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups admins > notification_interval 240 > notification_period workhours > notification_options c,r > check_command check_ping_longOK > } > > # 'check_ping_longOK' command definition > define command{ > command_name check_ping_longOK > command_line $USER1$/check_ping -H $HOSTADDRESS$ -p 5 -t 60 > -w > 220.0,20% -c 1000.0,50% > } > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Thu Mar 27 18:27:15 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Thu, 27 Mar 2003 11:27:15 -0600 Subject: Nagios notification bug? Message-ID: <352B04312822444A962714393AED8A4D113822@ADAEVS01.int.chickasaw.net> Well, I actually checked that. I made sure it was dead every time. That's why I thought it was strange and could be something with state rentention, not sure what it could be though. -----Original Message----- From: Marc Powell [mailto:mpowell at ena.com] Sent: Thursday, March 27, 2003 11:28 AM To: Jeremy Russell; Gerald; Nagios-users at lists.sourceforge.net Subject: RE: [Nagios-users] Nagios notification bug? It sounds like in both cases there are multiple nagios processes running, possibly due to starting the daemon multiple times without killing earlier iterations. Use the init script to stop the daemon then ps to see if you have any nagios processes still running. If so, kill those then restart nagios. -- Marc > -----Original Message----- > From: Jeremy Russell [mailto:Jeremy.Russell at chickasaw.net] > Sent: Thursday, March 27, 2003 11:06 AM > To: Gerald; Nagios-users at lists.sourceforge.net > Subject: RE: [Nagios-users] Nagios notification bug? > > I too have had this happen, I done things like turn notifications > completely off, but I still get them. I finally will stop getting > notifications when I have stoped and started the daemon several times. > I'm not sure if it has something to do with retention or something. I > can turn notifications back on and they start immediately. It just > happens when disabling something. It doesn't bother me though. :) > > > > -----Original Message----- > From: Gerald [mailto:gcoon at inch.com] > Sent: Thursday, March 27, 2003 10:26 AM > To: Nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Nagios notification bug? > > > Ethan & Developers, > > I have a machine running netsaint and nagios in parallel. > > Nagios sends out warning pages on hosts that are configured not to send > "Warning" pages. The netsaint process running on the same machine > checking the same servers/services does not do this. > > Here is my concern based on the nagios documentation: > > When Do Notifications Occur? A: Hard state changes. > https://netsaint.inch.com/nagios/docs/notifications.html > > (The documentation defines Hard state changes as...) > https://netsaint.inch.com/nagios/docs/statetypes.html > > If I stop here then nagios paged me for the service going from OK -> > Warning (...which is a hard state change) > > > Here is my log of this event happening once. (It has happened more than > once.) > Recovery: > Service Ok[03-26-2003 13:49:28] SERVICE ALERT: > ServerName;PING;OK;HARD;3;PING OK - Packet loss= 0%, RTA = 99.77 ms > > 3. > Service Warning[03-26-2003 13:44:29] SERVICE ALERT: > ServerName;PING;WARNING;HARD;3;PING WARNING - Packet loss = 0%, RTA = > 313.78 ms > > 2. > Service Warning[03-26-2003 13:43:29] SERVICE ALERT: > ServerName;PING;WARNING;SOFT;2;PING > WARNING - Packet loss = 20%, RTA = 458.14 ms > > 1. > Service Warning[03-26-2003 13:42:38] SERVICE ALERT: > ServerName;PING;WARNING;SOFT;1;PING > WARNING - Packet loss = 20%, RTA = 190.77 ms > > > Here is the part of the config file that should have told nagios not to > page me for this service: > > notification_options c,r > > http://nagios.sourceforge.net/docs/1_0/xodtemplate.html#service > > Is the notification_options directive ignored in nagios now? > > The rest is just my configs for this service in case someone wants to > look at them and point out what I'm missing. > > nagios.cfg entry > cfg_file=/usr/local/etc/nagios/ded_hosts.cfg > cfg_file=/usr/local/etc/nagios/ded_services.cfg > > ded_hosts.cfg entry > # 'Server' host definition > define host{ > use generic-host > host_name Server > alias Server_alias > address x.x.x.x > parents main.router.x > check_command check-host-alive > max_check_attempts 3 > notification_interval 240 > notification_period workhours > notification_options d,u,r > } > > > ded_services.cfg entry > # Service definition > define service{ > use generic-service > host_name Server > service_description PING > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups admins > notification_interval 240 > notification_period workhours > notification_options c,r > check_command check_ping_longOK > } > > # 'check_ping_longOK' command definition > define command{ > command_name check_ping_longOK > command_line $USER1$/check_ping -H $HOSTADDRESS$ -p 5 -t 60 > -w > 220.0,20% -c 1000.0,50% > } > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gcoon at inch.com Thu Mar 27 18:37:41 2003 From: gcoon at inch.com (Gerald) Date: Thu, 27 Mar 2003 12:37:41 -0500 (EST) Subject: Nagios notification bug? In-Reply-To: <5DB017510818EC468B05BD7BD9EACF83030ED7EC@mismail.ena.com> References: <5DB017510818EC468B05BD7BD9EACF83030ED7EC@mismail.ena.com> Message-ID: <20030327123348.Q68330@kod.inch.com> On Thu, 27 Mar 2003, Marc Powell wrote: > It sounds like in both cases there are multiple nagios processes > running... Thanks for the suggestion Marc. I checked processlist when I reload both. Netsaint used to do that often, but I have not seen nagios have this issue. Remember the kicker here is I have both netsaint and nagios running on this machine. Why would nagios be the only one to do these inappropriate pages? I reload both netsaint and nagios with the rc.d reload script. Other thoughts and suggestions are invited. :-) Gerald ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Thu Mar 27 18:27:16 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Thu, 27 Mar 2003 12:27:16 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D28950@phsexch20.mgh.harvard.edu> Benny, I reinstalled the depot version of nrpe client on the HP-UX box. The error message I am getting now is CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? I verified that nagios is the owner of the nrpe directory, and is the user account that is invoked in the inetd.conf file. -----Original Message----- From: C. Bensend [mailto:benny at bennyvision.com] Sent: Thursday, March 27, 2003 11:17 AM To: 'nagios-users at lists.sourceforge.net' Subject: Re: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 On Thu, Mar 27, 2003 at 10:18:19AM -0500, Subhendu Ghosh wrote: > I am running out of ideas... > > /etc/sevices has an entry > inetd was HUPed > The path to the binary in inetd.conf is correct > The binary has the execute bit set. Andrew, are you using the depot I built? Or is this an installation from source? Benny -- 86. I will make sure that my doomsday device is up to code and properly grounded. --Peter Anspach's list of things to do as an Evil Overlord ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ah43 at httpsite.com Thu Mar 27 18:34:43 2003 From: ah43 at httpsite.com (Andy Harrison) Date: Thu, 27 Mar 2003 12:34:43 -0500 (EST) Subject: service status detail for groups In-Reply-To: <20030327165505.GJ16212@marvin.utalan.at> References: <20030327165505.GJ16212@marvin.utalan.at> Message-ID: -----BEGIN PGP SIGNED MESSAGE----- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On 27-Mar-2003, VEGH Karoly wrote message "[Nagios-users] service status detail for groups" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ > > Hi, > > How can I get Nagios to show me service status detail for groups? > > just like this: > > http://apan.sourceforge.net/images/scr1_big.jpg I remember someone else asked this. It was a custom edit of the php. ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine homepage: http://www.nachoz.com -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPoM2MVPEkLgodAWVAQF+YQP/XPNj6Q7ENdflGJelm06BvYutRye5nzR1 E//eGJfGzIxr3iUMUDNnu9iIkpa771WvnmXtOXci3/DjJgwqDiQTt1GKKAuJnIXc H837GJiIKXpSTMjQ7hNFknlhSP4SbmLbMZu04qe1jtsPXutCP4Ba2BRR2kVbeMB4 6xZixyW+Kyc= =oUg3 -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 27 18:35:24 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 27 Mar 2003 11:35:24 -0600 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: I haven't touched an HP-UX box in ages, but here's where I'd start troubleshooting: 1) comment nrpe out of inetd.conf 2) HUP inetd 3) edit nrpe.cfg, setting "debug=1" 4) in one window, start nrpe manually (NOT as a daemon) (*) 5) in another window on another host try to telnet to port 5666 on the former host 6) make observations and report (*) I would personally start nrpe using whatever the HP-UX equivalent to Solaris' truss or Linux's strace, for added scrutiny jc > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Thursday, March 27, 2003 9:18 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > I am running out of ideas... > > /etc/sevices has an entry > inetd was HUPed > The path to the binary in inetd.conf is correct > The binary has the execute bit set. > > > Can you try running it as daemon instead of thru inetd? > > -sg > > On Thu, 27 Mar 2003, Kaplan, Andrew H. wrote: > > > Hi Subhendu, > > > > I double-checked the /etc/services file and I confirmed that > > nrpe is listed as port 5666. > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Wednesday, March 26, 2003 2:59 PM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > > > is nrpe listed as port 5666 in /etc/services? > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > Hi Subhendu, > > > > > > I was unable to telnet to the host via port 5666. > > > > > > The command syntax was telnet 'hostname' 5666 > > > The error message was > > > > > > Could not open a connection to host on port 5666: Connect failed > > > > > > -----Original Message----- > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > Sent: Wednesday, March 26, 2003 2:25 PM > > > To: '' > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with > HP-UX 10.20 > > > > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > Subhendu, > > > > > > > > I double-checked the HP-UX system, and there was no > instance of tcpd on > > > > the computer. I modified the the inetd.conf file to now > read as follows: > > > > > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > > > /opt/nrpe/nrpe.cfg --inetd > > > > > > > > I also ran the kill -HUP command for inetd. > > > > > > > > Manually running the check_nrpe command from the Nagios > server resulted in > > > > the same > > > > Connection Refused By Host error message. > > > > > > > > > > Can you telnet to the host:port running nrpe? > > > > > > If so - is the host running nagios on the allowed_hosts > list in nrpe.cfg? > > > > > > > > > > > > -- > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From kriss at fnal.gov Thu Mar 27 18:45:16 2003 From: kriss at fnal.gov (Michael Kriss) Date: Thu, 27 Mar 2003 11:45:16 -0600 (CST) Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: <20030327101645.A5913@bennyvision.com> References: <20030327101645.A5913@bennyvision.com> Message-ID: On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Subhendu, > > I double-checked the HP-UX system, and there was no instance of tcpd on > the computer. I modified the the inetd.conf file to now read as follows: > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > /opt/nrpe/nrpe.cfg --inetd Doesn't that need to be: nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd ? Your original inetd.conf had: nrpe stream tcp nowait nagios /usr/sbin/tcpd /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd You removed the /usr/sbin/tcpd but did not replace it with /opt/nrpe/bin/nrpe. I don't know about HPUX from the Solaris inetd.conf man page: DESCRIPTION The inetd.conf file contains the list of servers that inetd(1M) invokes when it receives an Internet request over a socket. Each server entry is composed of a single line of the form: service-name endpoint-type protocol wait-status uid server-program \ server-arguments server-program Either the pathname of a server program to be invoked by inetd to perform the requested ser- vice, or the value internal if inetd itself pro- vides the service. server-arguments If a server must be invoked with command line arguments, the entire command line (including <- ****** argument 0) must appear in this field (which con- <- ****** sists of all remaining words in the entry). If the server expects inetd to pass it the address of its peer (for compatibility with 4.2BSD executable daemons), then the first argument to the command should be specified as `%A'. No more than five arguments are allowed in this field. So /opt/nrpe/bin/nrpe must appear twice in inetd.conf, once for server-program and once as part of server-arguments. michael ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark.holm at inherent.com Thu Mar 27 18:47:02 2003 From: mark.holm at inherent.com (Mark Holm) Date: Thu, 27 Mar 2003 09:47:02 -0800 Subject: problems with Icons Message-ID: <4767A529EDCE4D40A7BA8EF46217D0031F7671@pobox.inherent.com> Daniel, I managed to get mine going last night. I did 3 things, the last being the definitive one that made it work: 1) Upgraded to latest libgd version 2.0.11 2) Looked at all the examples I could find of hostextinfo.cfg files and noted that the icon_image_alt wasn't a string for all the others, but rather pointed at a gif file. 3) Noted that I had left the word define out of each of the hostextinfo definitions in the hostextinfo.cfg I am using the base image files for now and they have been extracted into the share/images/logos directory and my hostextinfo.cfg file now looks like the following: ----hostextinfo.cfg--- # Templates define hostextinfo{ name Sun icon_image sunlogo.png icon_image_alt sunlogo.gif vrml_image sunlogo.png statusmap_image sunlogo.gd2 register 0 } define hostextinfo{ name RedHat icon_image redhat.png icon_image_alt redhat.gif vrml_image redhat.png statusmap_image redhat.gd2 register 0 } define hostextinfo{ name Windows icon_image win40.png icon_image_alt win40.gif vrml_image win40.png statusmap_image win40.gd2 register 0 } define hostextinfo{ name Switch icon_image switch40.png icon_image_alt switch40.gif vrml_image switch40.png statusmap_image switch40.gd2 register 0 } define hostextinfo{ name Router icon_image router40.png icon_image_alt router40.gif vrml_image router40.png statusmap_image router40.gd2 register 0 } # # Host definitions define hostextinfo{ use Sun host_name sun1.infoarchinc.com } define hostextinfo{ use RedHat host_name darkwing.exc-sol.com } define hostextinfo{ use RedHat host_name argus.exc-sol.com } define hostextinfo{ use RedHat host_name jason.exc-sol.com } define hostextinfo{ use Windows host_name exc.exc-sol.com } define hostextinfo{ use Windows host_name exc2.exc-sol.com } define hostextinfo{ use Switch host_name switch1.exc-sol.com } define hostextinfo{ use Router host_name Firewall.exc-sol.com } ----EOF---- I feel kinda dumb about #3 above. A case of being to close to what you typed for too long. I did some additional fiddling this morning and found that #2 was a red herring, and it does accept a string in that field as per the documentation. Hope this helps with your problem! markh -----Original Message----- From: Daniel Tuecks [mailto:DTuecks at neuwied.de] Sent: Thursday, March 27, 2003 8:06 AM To: Mark Holm Subject: Re: problems with Icons Hi Mark... my question is still unanswered, sorry. I let you know when it is working :) Daniel > > Daniel, > Has anybody answered your question yet? I have the same problem on my > setup and can't figure > out why it's happening. The search function on source forge doesn't work in this forum and now > the forum itself has gone down. > markh > ======----- ://F2 new technology for real integration -----======== > Mark A. Holm - Director of Network Engineering & Operations > Inherent.com, Inc. > 2140 SW Jefferson St. Phone: (503) 224-6751 > Suite 200 extension 236 > Portland, OR 97201 Fax: (503) 224-8872 > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Thu Mar 27 18:49:06 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Thu, 27 Mar 2003 12:49:06 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D28951@phsexch20.mgh.harvard.edu> Jim, Prior to receiving your message, I reinstalled the HP-UX 10.20 depot version of nrpe client on the HP-UX box. This had been compiled by C. Bensend. The error message I am getting now is CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? I verified that nagios is the owner of the nrpe directory, and is the user account that is invoked in the inetd.conf file. I also checked the /var/adm/syslog/syslog.log file and there were no errors reported for the services or inetd.conf files. -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Thursday, March 27, 2003 12:35 PM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 I haven't touched an HP-UX box in ages, but here's where I'd start troubleshooting: 1) comment nrpe out of inetd.conf 2) HUP inetd 3) edit nrpe.cfg, setting "debug=1" 4) in one window, start nrpe manually (NOT as a daemon) (*) 5) in another window on another host try to telnet to port 5666 on the former host 6) make observations and report (*) I would personally start nrpe using whatever the HP-UX equivalent to Solaris' truss or Linux's strace, for added scrutiny jc > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Thursday, March 27, 2003 9:18 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > I am running out of ideas... > > /etc/sevices has an entry > inetd was HUPed > The path to the binary in inetd.conf is correct > The binary has the execute bit set. > > > Can you try running it as daemon instead of thru inetd? > > -sg > > On Thu, 27 Mar 2003, Kaplan, Andrew H. wrote: > > > Hi Subhendu, > > > > I double-checked the /etc/services file and I confirmed that > > nrpe is listed as port 5666. > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Wednesday, March 26, 2003 2:59 PM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > > > is nrpe listed as port 5666 in /etc/services? > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > Hi Subhendu, > > > > > > I was unable to telnet to the host via port 5666. > > > > > > The command syntax was telnet 'hostname' 5666 > > > The error message was > > > > > > Could not open a connection to host on port 5666: Connect failed > > > > > > -----Original Message----- > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > Sent: Wednesday, March 26, 2003 2:25 PM > > > To: '' > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with > HP-UX 10.20 > > > > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > Subhendu, > > > > > > > > I double-checked the HP-UX system, and there was no > instance of tcpd on > > > > the computer. I modified the the inetd.conf file to now > read as follows: > > > > > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > > > /opt/nrpe/nrpe.cfg --inetd > > > > > > > > I also ran the kill -HUP command for inetd. > > > > > > > > Manually running the check_nrpe command from the Nagios > server resulted in > > > > the same > > > > Connection Refused By Host error message. > > > > > > > > > > Can you telnet to the host:port running nrpe? > > > > > > If so - is the host running nagios on the allowed_hosts > list in nrpe.cfg? > > > > > > > > > > > > -- > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From erik.larkin at nuasis.com Thu Mar 27 18:34:38 2003 From: erik.larkin at nuasis.com (Erik Larkin) Date: Thu, 27 Mar 2003 09:34:38 -0800 Subject: More info/leads: Huge delay in scheduling freshness service chec k after 3rd try Message-ID: Wow, thanks for the reply. I'm pretty impressed that you're responding to questions from the user's list. However, I don't think I provided enough information to give the full picture for that service check. I have active checks disabled server-wide, so nagios is only checking that service in response to a stale freshness check. I do want it to perform the freshness check every 3 minutes (and I do have the interval_length at its default), since the distributed servers are supposed to send a heartbeat every minute. I originally had the normal_check_interval set to 1 minute, and if I remember correctly, that caused nagios to schedule an active check every minute in response to a failed freshness check. Thinking that perhaps this was messing up the scheduling, I've changed the normal_check_interval a few times, and it's current value is still 15. This seems to mean that the freshness failes/forced check will always kick in before the 'regularly' scheduled check, 3 minutes v. 15 minutes. At any rate, the real problem is this: the freshness check correctly recognizes the service check as stale after four minutes or so, and says it's forcing a check of the service. Since that check only calls the ubiquitous stale-service script, the response should only take a few seconds. The first few log entries below reflect this, with a SERVICE ALERT in response to the stale-service script initially coming about 6 seconds after the freshness check warning. However, when the service remains stale, subsequent forced checks (ie. executions of the stale-service script) begin taking longer and longer. After the third check or so, latency increases to 99, then 280, then 749, on up to over 32000 at last run (seems to be a rough multiplier of 3, don't know if that's significant). The latency reported for the service does match the time delay between the "Warning" message from the freshness check and the "SERVICE ALERT" response from the stale-service script. I've also verified that this is in fact latency in executing the stale-service script by adding a debug line in the script that logs the time the script is executed in a heartbeat.log, and those times match the 'SERVICE ALERT' log entries (with a few seconds delay). Is this exponentially-increasing latency because of a conflict between my freshness_interval and the normal_check_interval? I thought it might be, and tried a few different normal_check_interval settings, but I couldn't change this problem behavior. Thanks again for your reply. Erik From: "Ethan Galstad" To: nagios-users at lists.sourceforge.net Date: Wed, 26 Mar 2003 20:50:57 -0600 Subject: Re: [Nagios-users] More info/leads: Huge delay in scheduling freshness service chec k after 3rd try If you haven't change the interval_length directive from its default value of 60, the problem lies in your config. In your service definition you are telling Nagios to actively check the service every 15 minutes. However, the freshness threshold for that service is set at 3 minutes (180 seconds). About once every minute the freshness checks get performed, so that's why you're seeing staleness warning approximately every 4 minutes. On 26 Mar 2003 at 10:18, Erik Larkin wrote: > > FYI, after a little more research, I think I've narrowed it down to an issue > with the scheduling queue. I tossed a debug option in my stale-service > script that logs the time it's called. Then I cross-referenced those times > with the times that nagios logged a failed freshness check, and the times > that nagios received the response from the stale-service script. The time > difference between when the script is actually called and when nagios logs > the script response is maybe a few seconds, leading me to believe that the > service reaper is ok. However, the delay between when nagios says it failed > a freshness check and is forcing a service check, and when the stale-service > script is actually called, was over 32000 seconds at last failure. So, I'm > now focusing on problems with the scheduling queue. Any ideas, anyone? > > -----Original Message----- > From: Erik Larkin > Sent: Tuesday, March 25, 2003 2:44 PM > To: 'nagios-users at lists.sourceforge.net' > Subject: Huge delay in scheduling freshness service check after 3rd try > > > > Allright, I'm finally admitting that I can't figure this one out myself. > Trust me, it's a difficult admission, and has involved much tinkering, > hair-pulling, and searching of mailing lists (although searching doesn't > seem to be working right now for the sourceforge lists?). > > Anyways, I've got a nagios architecture with multiple distributed servers > sending check results to a central nagios server via ncsa. The central > server doesn't perform any active checks (no network access to the > distributed network), but is configured to perform a freshness check for a > service called 'Heartbeat' for each distributed instance. The heartbeat is > just a ping of the loopback performed every minute, although I've since > discovered I could have used check_dummy. Seems to be a pretty common > setup, and for the most part it works very well. > > Except for the freshness checks. They work fine up until the 3rd failed > freshness check or so, at which point latency skyrockets. From 99 to 280 > to 749, on up to thousands and thousands of seconds of latency. The log > reflects a failed freshness check, and a message about forcing the service > (which is the typical echo and exit 2). But the service alert response is > delayed more and more. I've tried everything I can think of, and learned a > great deal in my searching and tweaking, but I can't change this behavior. > > Here's what I've tried: > > - change the service_reaper_frequency to 3. saw a reference for this in the > list for something else, thought it might help. I still suspect some > problem with the service reaper. > - added a 1 second sleep to the script (thought maybe it was returning its > status too quickly) > - futzed with the normal_check_interval for the heartbeat service on the > central server. gave it ranges between 1 minute and 15 minutes. > - enabled check_for_orphaned_services > - tossed a debug option in my stale_service script that sent a line of > output to a log, to make sure that the script itself was being run (it was) > - setting is_volatile (just to check) > - other things I can't think of right now. > > And here's the service entry: > > define service{ > use qab24x7-service > service_description Heartbeat > hostgroup_name qabdbfohub > normal_check_interval 15 > is_volatile 1 > max_check_attempts 1 > check_freshness 1 > notification_interval 15 > freshness_threshold 180 > check_command stale-service > } > > > And here's some relevant log snippets: > > > [1048628465] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048628471] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048628705] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 58 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048628711] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048628945] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 57 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048628966] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048629185] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 42 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048629287] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048629485] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 21 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048629770] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048629965] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 20 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > [1048630715] SERVICE ALERT: sj-qab-db01;Heartbeat;CRITICAL;HARD;1;CRITICAL: > Heartbeat check is stale! > [1048630925] Warning: The results of service 'Heartbeat' on host > 'sj-qab-db01' are stale by 31 seconds (threshold=180 seconds). I'm forcing > an immediate check of the service. > > > > Sorry for the the long email/spam, but please oh please: does anyone have > any info regarding this problem? > > > Many thanks, > > Erik Larkin > elarkin at nuasis.com > > p.s. Just to go on record, I do think Nagios rocks. Hard. But this itty > bitty problem is driving me nuts! ;) ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Thu Mar 27 18:36:14 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Thu, 27 Mar 2003 17:36:14 +0000 Subject: NagMIN - "non-standard" directory support In-Reply-To: <1A76CEE962963E40926786CA468A47D3215DCC@infocoex1.infosysinc.com> References: <1A76CEE962963E40926786CA468A47D3215DCC@infocoex1.infosysinc.com> Message-ID: Fred, Share on !!! Matt "Fred Reimers" Sent by: nagios-users-admin at lists.sourceforge.net 27/03/2003 16:23 To "Russell Scibetti" cc Subject RE: [Nagios-users] NagMIN - "non-standard" directory support http://nagmin.sourceforge.net - Explains briefly what NagMIN does. If you download the tarball the db structure is in nagmin_init.sql. NagMIN only uses MySQL. NagMIN has it's own way of doing things or, I guess, my way of doing things. As a result, it's not going to be for everyone and is not intended to be. It adds fields and tables that aren't part of Nagios. However, it's saving me a ton of time with configuration and is going to be expanded to monitor large scale networks using NMAP to learn the network. I wanted to share it. ------------------------------------------------- Fred Reimers (CCIE #1469, CCSA) Senior Network Consultant Info Systems, Inc. freimers at infosysinc.com (302)993-4532 -----Original Message----- From: Russell Scibetti [mailto:russell at quadrix.com] Sent: Thursday, March 27, 2003 10:28 AM To: Fred Reimers Subject: Re: [Nagios-users] NagMIN - "non-standard" directory support Does NagMIN use a DB backend to store configs or does it just use file editing for making config changes? If it does use a DB, can you shard the structure of the DB? I've written a fully relational database for Nagios Configs that is very robust and handles every inter-object relation that Nagios offers. Russell Fred Reimers wrote: I received a response from someone who has a "non-standard" Nagios directory structure and was not so complimentary with his comment regarding NagMIN. My response would be: #1 - why wouldn't you use the standard directory structure in the first place? and, #2 what is it?, a small detail that the gentleman left out, so that I can accommodate it? It should be a rather easy task to add a couple more prompts to ask for your nagios.cfg and cgi.cfg files. I'm trying to make this as simple as possible. Fred ..... -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ..... ..... _____________________________________________________________________ This e-mail has been scanned for viruses by the uuNet Internet Managed Scanning Service - powered by MessageLabs. -------------- next part -------------- An HTML attachment was scrubbed... URL: From karoly.vegh at uta.at Thu Mar 27 18:53:58 2003 From: karoly.vegh at uta.at (VEGH Karoly) Date: Thu, 27 Mar 2003 18:53:58 +0100 Subject: service status detail for groups In-Reply-To: <5DB017510818EC468B05BD7BD9EACF83030ED7EA@mismail.ena.com> References: <5DB017510818EC468B05BD7BD9EACF83030ED7EA@mismail.ena.com> Message-ID: <20030327175358.GL16212@marvin.utalan.at> On Thu, Mar 27, 2003 at 11:14:13AM -0600, Marc Powell wrote: > Select 'Status Summary', select the Host Group you're interested in, select 'View Service Status Detail For This Host Group' from the menu in the upper left. I'm afraid I wasnt clear enough, I mean the main frame on the left, where under tactical overview, then service Detail come all the hostgroups, on the jpg (http://apan.sourceforge.net/images/scr1_big.jpg) it says unix-boxes, Windows-servers, etc. how can i get these into the menu? tia charlie -- V?gh K?roly - System Engineer - UTA - TIS.SAS.BSS Cynics says that Hungarians created America's Hollywood before other Hungarians less destructively created America's A-bomb. http://www.mek.iif.hu/kiallit/tudtor/tudos1/martians.html ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From AHKAPLAN at PARTNERS.ORG Thu Mar 27 19:02:02 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Thu, 27 Mar 2003 13:02:02 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F01D28952@phsexch20.mgh.harvard.edu> It is there, that is simply a typo error on my part.... -----Original Message----- From: Michael Kriss [mailto:kriss at fnal.gov] Sent: Thursday, March 27, 2003 12:45 PM To: C. Bensend Cc: 'nagios-users at lists.sourceforge.net' Subject: Re: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > Subhendu, > > I double-checked the HP-UX system, and there was no instance of tcpd on > the computer. I modified the the inetd.conf file to now read as follows: > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > /opt/nrpe/nrpe.cfg --inetd Doesn't that need to be: nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd ? Your original inetd.conf had: nrpe stream tcp nowait nagios /usr/sbin/tcpd /opt/nrpe/bin/nrpe -c /opt/nrpe/nrpe.cfg --inetd You removed the /usr/sbin/tcpd but did not replace it with /opt/nrpe/bin/nrpe. I don't know about HPUX from the Solaris inetd.conf man page: DESCRIPTION The inetd.conf file contains the list of servers that inetd(1M) invokes when it receives an Internet request over a socket. Each server entry is composed of a single line of the form: service-name endpoint-type protocol wait-status uid server-program \ server-arguments server-program Either the pathname of a server program to be invoked by inetd to perform the requested ser- vice, or the value internal if inetd itself pro- vides the service. server-arguments If a server must be invoked with command line arguments, the entire command line (including <- ****** argument 0) must appear in this field (which con- <- ****** sists of all remaining words in the entry). If the server expects inetd to pass it the address of its peer (for compatibility with 4.2BSD executable daemons), then the first argument to the command should be specified as `%A'. No more than five arguments are allowed in this field. So /opt/nrpe/bin/nrpe must appear twice in inetd.conf, once for server-program and once as part of server-arguments. michael ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Lane.Williams at jhuapl.edu Thu Mar 27 19:10:17 2003 From: Lane.Williams at jhuapl.edu (Williams, P. Lane) Date: Thu, 27 Mar 2003 13:10:17 -0500 Subject: service status detail for groups Message-ID: 1. Need to uderstand HTML 2. modify /usr/local/nagios/share/side.html.......you'll have to add some parameters to the CGI link (your preferences). Pay close attention to your apache access_log file to see what your CGI's are actually doing.......I guess there is lot of different parameters you can pass to the cgi's.....there just not documented......I use the apache logs to get an idea. Lane -----Original Message----- From: VEGH Karoly [mailto:karoly.vegh at uta.at] Sent: Thursday, March 27, 2003 12:54 PM To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] service status detail for groups On Thu, Mar 27, 2003 at 11:14:13AM -0600, Marc Powell wrote: > Select 'Status Summary', select the Host Group you're interested in, select 'View Service Status Detail For This Host Group' from the menu in the upper left. I'm afraid I wasnt clear enough, I mean the main frame on the left, where under tactical overview, then service Detail come all the hostgroups, on the jpg (http://apan.sourceforge.net/images/scr1_big.jpg) it says unix-boxes, Windows-servers, etc. how can i get these into the menu? tia charlie -- V?gh K?roly - System Engineer - UTA - TIS.SAS.BSS Cynics says that Hungarians created America's Hollywood before other Hungarians less destructively created America's A-bomb. http://www.mek.iif.hu/kiallit/tudtor/tudos1/martians.html ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Thu Mar 27 19:38:34 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Thu, 27 Mar 2003 12:38:34 -0600 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: Please follow my suggested plan of attack. Keep us posted. jc > -----Original Message----- > From: Kaplan, Andrew H. [mailto:AHKAPLAN at PARTNERS.ORG] > Sent: Thursday, March 27, 2003 11:49 AM > To: Carroll, Jim P [Contractor] > Cc: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > Jim, > > Prior to receiving your message, I reinstalled the HP-UX > 10.20 depot version > > of nrpe client on the HP-UX box. This had been compiled by C. > Bensend. The > error message I am getting now is > > CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? > > I verified that nagios is the owner of the nrpe directory, and is the > user account that is invoked in the inetd.conf file. I also > checked the > /var/adm/syslog/syslog.log file and there were no errors > reported for the > services or inetd.conf files. > > -----Original Message----- > From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] > Sent: Thursday, March 27, 2003 12:35 PM > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > I haven't touched an HP-UX box in ages, but here's where I'd start > troubleshooting: > > 1) comment nrpe out of inetd.conf > 2) HUP inetd > 3) edit nrpe.cfg, setting "debug=1" > 4) in one window, start nrpe manually (NOT as a daemon) (*) > 5) in another window on another host try to telnet to port 5666 on the > former host > 6) make observations and report > > (*) I would personally start nrpe using whatever the HP-UX > equivalent to > Solaris' truss or Linux's strace, for added scrutiny > > jc > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Thursday, March 27, 2003 9:18 AM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > I am running out of ideas... > > > > /etc/sevices has an entry > > inetd was HUPed > > The path to the binary in inetd.conf is correct > > The binary has the execute bit set. > > > > > > Can you try running it as daemon instead of thru inetd? > > > > -sg > > > > On Thu, 27 Mar 2003, Kaplan, Andrew H. wrote: > > > > > Hi Subhendu, > > > > > > I double-checked the /etc/services file and I confirmed that > > > nrpe is listed as port 5666. > > > > > > -----Original Message----- > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > Sent: Wednesday, March 26, 2003 2:59 PM > > > To: 'nagios-users at lists.sourceforge.net' > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with > HP-UX 10.20 > > > > > > > > > > > > is nrpe listed as port 5666 in /etc/services? > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > Hi Subhendu, > > > > > > > > I was unable to telnet to the host via port 5666. > > > > > > > > The command syntax was telnet 'hostname' 5666 > > > > The error message was > > > > > > > > Could not open a connection to host on port 5666: Connect failed > > > > > > > > -----Original Message----- > > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > > Sent: Wednesday, March 26, 2003 2:25 PM > > > > To: '' > > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with > > HP-UX 10.20 > > > > > > > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > > > Subhendu, > > > > > > > > > > I double-checked the HP-UX system, and there was no > > instance of tcpd on > > > > > the computer. I modified the the inetd.conf file to now > > read as follows: > > > > > > > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > > > > /opt/nrpe/nrpe.cfg --inetd > > > > > > > > > > I also ran the kill -HUP command for inetd. > > > > > > > > > > Manually running the check_nrpe command from the Nagios > > server resulted in > > > > > the same > > > > > Connection Refused By Host error message. > > > > > > > > > > > > > Can you telnet to the host:port running nrpe? > > > > > > > > If so - is the host running nagios on the allowed_hosts > > list in nrpe.cfg? > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent > to /dev/null > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting > any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From smccool at ascendantmedia.com Thu Mar 27 19:57:14 2003 From: smccool at ascendantmedia.com (Shawn McCool) Date: Thu, 27 Mar 2003 12:57:14 -0600 Subject: Authentication Boggle Message-ID: <011b01c2f492$af2252e0$22652044@shawn> I'm running Suse 7.0 My httpd.conf is set up as follows ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all Alias /nagios/ /usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all my .htaccess in my /usr/local/nagios/share is AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/nagios.pwd require valid-user My password file seems to be reading right, as when i go to http://mydomain.com/nagios/index.html it prompts me for password, and I can successfully authenticate. However, in the Tactical Monitoring Overview (in the upper left grey box) it shows: Logged in as ? My cgi.cfg has use_authentication=1 And all of the authorized_for_xxxxx are set to the appropriate user. I am seeing nothing awry in neither my access_log nor my error_log. I am running apache 1.3.27 and Nagios 1.0 with Nagios Plugins 1.3.0 My Nagios dir structure looks like this: drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 bin drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 27 12:49 etc drwx------ 2 nagios nagiocmd 4.0k Mar 27 12:42 libexec drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 09:13 sbin drwxrwxr-x 8 nagios nagiocmd 4.0k Mar 27 12:49 share drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 27 12:51 var Where nagiocmd is a group which has both the nagios user and the user my apache runs as. My Nagios Share dir: -rwxr-xr-x 1 nagios nagiocmd 105 Mar 26 11:08 .htaccess drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 contexthelp drwxrwxr-x 3 nagios nagiocmd 4.0k Mar 26 08:57 docs drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 26 09:10 images -rw-rw-r-- 1 nagios nagiocmd 658 Mar 26 08:57 index.html -rw-rw-r-- 1 nagios nagiocmd 2.3k Mar 26 08:57 main.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 media -rw-rw-r-- 1 nagios nagiocmd 26 Mar 26 08:57 robots.txt -rw-rw-r-- 1 nagios nagiocmd 10k Mar 26 08:57 side.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 25 16:49 ssi drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 stylesheets Nagios SBIN: -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 avail.cgi -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 cmd.cgi -rwxrwxr-x 1 nagios nagiocmd 118k Mar 26 08:57 config.cgi -rwxrwxr-x 1 nagios nagiocmd 164k Mar 26 08:57 extinfo.cgi -rwxrwxr-x 1 nagios nagiocmd 172k Mar 26 08:57 histogram.cgi -rwxrwxr-x 1 nagios nagiocmd 108k Mar 26 08:57 history.cgi -rwxrwxr-x 1 nagios nagiocmd 105k Mar 26 08:57 notifications.cgi -rwxrwxr-x 1 nagios nagiocmd 102k Mar 26 08:57 outages.cgi -rwxrwxr-x 1 nagios nagiocmd 103k Mar 26 08:57 showlog.cgi -rwxrwxr-x 1 nagios nagiocmd 149k Mar 26 08:57 status.cgi -rwxrwxr-x 1 nagios nagiocmd 184k Mar 26 08:57 statusmap.cgi -rwxrwxr-x 1 nagios nagiocmd 119k Mar 26 08:57 statuswml.cgi -rwxrwxr-x 1 nagios nagiocmd 113k Mar 26 08:57 statuswrl.cgi -rwxrwxr-x 1 nagios nagiocmd 123k Mar 26 08:57 summary.cgi -rwxrwxr-x 1 nagios nagiocmd 127k Mar 26 08:57 tac.cgi -rwxrwxr-x 1 nagios nagiocmd 173k Mar 26 08:57 trends.cgi Nagios ETC -rwxrwxr-x 1 nagios nagiocmd 16k Mar 27 12:44 cgi.cfg -rwxrwxr-x 1 nagios nagiocmd 3.3k Mar 26 12:02 checkcommands.cfg -rwxrwxr-x 1 nagios nagiocmd 358 Mar 25 19:27 contactgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.0k Mar 25 19:26 contacts.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:09 dependencies.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:06 escalations.cfg -rwxrwxr-x 1 nagios nagiocmd 440 Mar 25 19:22 hostgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.4k Mar 25 19:20 hosts.cfg -rwxrwxr-x 1 nagios nagiocmd 3.7k Mar 25 19:05 misccommands.cfg -rwxrwxr-x 1 nagios nagiocmd 21k Mar 26 09:26 nagios.cfg -rwxrwxr-x 1 nagios nagiocmd 21 Mar 26 09:15 nagios.pwd -rwxrwxr-x 1 nagios nagiocmd 3.0k Mar 26 09:04 resource.cfg -rwxrwxr-x 1 nagios nagiocmd 1.6k Mar 26 09:09 services.cfg -rwxrwxr-x 1 nagios nagiocmd 17k Mar 25 16:49 services.cfg-sample -rwxrwxr-x 1 nagios nagiocmd 1.1k Mar 25 17:03 timeperiods.cfg If I look at any CGI other than tactical overview I get this message It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. I am not sure what is happening incorrectly in my authentication. -------------- next part -------------- An HTML attachment was scrubbed... URL: From FReimers at infosysinc.com Thu Mar 27 20:20:59 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Thu, 27 Mar 2003 14:20:59 -0500 Subject: NagMIN - Modify production .cfg files to complete installation Message-ID: <1A76CEE962963E40926786CA468A47D3215DCD@infocoex1.infosysinc.com> Matt, Regarding NagMIN not activating a new configuration on a new install. One problem is a bug that I've fixed and will release a bit later today. The other is a required configuration change. I don't automatically change your production nagios.cfg or cgi.cfg files to use the NagMIN generated configuration files when you run NagMIN setup. This would blow away your running Nagios configuration since there are no NagMIN configuration files. I also don't rewrite nagios.cfg or cgi.cfg when activating a configuration. This gives you the flexibility to use NagMIN configuration files and also other customized files of your choosing. You need to add the NagMIN configuration files to your production nagios.cfg and cgi.cfg settings to complete the NagMIN installation. The details are on the last screen displayed by the setup utility. Here are the NagMIN configuration file settings. nagios.cfg cfg_file=/usr/local/nagios/etc/Command.cfg cfg_file=/usr/local/nagios/etc/Contact.cfg cfg_file=/usr/local/nagios/etc/ContactGroup.cfg cfg_file=/usr/local/nagios/etc/Host.cfg cfg_file=/usr/local/nagios/etc/HostEscalation.cfg cfg_file=/usr/local/nagios/etc/HostGroup.cfg cfg_file=/usr/local/nagios/etc/HostTemplate.cfg cfg_file=/usr/local/nagios/etc/Service.cfg cfg_file=/usr/local/nagios/etc/ServiceDependency.cfg cfg_file=/usr/local/nagios/etc/ServiceEscalation.cfg cfg_file=/usr/local/nagios/etc/ServiceTemplate.cfg cfg_file=/usr/local/nagios/etc/TimePeriod.cfg cgi.cfg main_config_file=/usr/local/nagios/etc/nagios.cfg xedtemplate_config_file=/usr/local/nagios/etc/HostExtInfo.cfg xedtemplate_config_file=/usr/local/nagios/etc/ServicExtInfo.cfg I'd also recommend moving any other files that aren't being used out of your etc directory. Leaving resource.cfg, nagios.cfg, cgi.cfg and any other needed files. This will reduce the number of files displayed by NagMIN and only display files used in the configuration. Let me know how you make out! Fred ..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From AHKAPLAN at PARTNERS.ORG Thu Mar 27 21:36:45 2003 From: AHKAPLAN at PARTNERS.ORG (Kaplan, Andrew H.) Date: Thu, 27 Mar 2003 15:36:45 -0500 Subject: Problems Using NRPE 1.8 with HP-UX 10.20 Message-ID: <5593DA408212D511B0910002A513501F06558D9B@phsexch20.mgh.harvard.edu> Jim, I tried for arguments sake, to run the nrpe client as a standalone daemon, and it worked. There will be further testing to be done, but at this point, running the client as a standalone daemon appears to be the answer. -----Original Message----- From: Carroll, Jim P [Contractor] [mailto:jcarro10 at sprintspectrum.com] Sent: Thursday, March 27, 2003 12:35 PM To: 'nagios-users at lists.sourceforge.net' Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 I haven't touched an HP-UX box in ages, but here's where I'd start troubleshooting: 1) comment nrpe out of inetd.conf 2) HUP inetd 3) edit nrpe.cfg, setting "debug=1" 4) in one window, start nrpe manually (NOT as a daemon) (*) 5) in another window on another host try to telnet to port 5666 on the former host 6) make observations and report (*) I would personally start nrpe using whatever the HP-UX equivalent to Solaris' truss or Linux's strace, for added scrutiny jc > -----Original Message----- > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > Sent: Thursday, March 27, 2003 9:18 AM > To: 'nagios-users at lists.sourceforge.net' > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > I am running out of ideas... > > /etc/sevices has an entry > inetd was HUPed > The path to the binary in inetd.conf is correct > The binary has the execute bit set. > > > Can you try running it as daemon instead of thru inetd? > > -sg > > On Thu, 27 Mar 2003, Kaplan, Andrew H. wrote: > > > Hi Subhendu, > > > > I double-checked the /etc/services file and I confirmed that > > nrpe is listed as port 5666. > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Wednesday, March 26, 2003 2:59 PM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > > > is nrpe listed as port 5666 in /etc/services? > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > Hi Subhendu, > > > > > > I was unable to telnet to the host via port 5666. > > > > > > The command syntax was telnet 'hostname' 5666 > > > The error message was > > > > > > Could not open a connection to host on port 5666: Connect failed > > > > > > -----Original Message----- > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > Sent: Wednesday, March 26, 2003 2:25 PM > > > To: '' > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with > HP-UX 10.20 > > > > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > Subhendu, > > > > > > > > I double-checked the HP-UX system, and there was no > instance of tcpd on > > > > the computer. I modified the the inetd.conf file to now > read as follows: > > > > > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > > > /opt/nrpe/nrpe.cfg --inetd > > > > > > > > I also ran the kill -HUP command for inetd. > > > > > > > > Manually running the check_nrpe command from the Nagios > server resulted in > > > > the same > > > > Connection Refused By Host error message. > > > > > > > > > > Can you telnet to the host:port running nrpe? > > > > > > If so - is the host running nagios on the allowed_hosts > list in nrpe.cfg? > > > > > > > > > > > > -- > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Thu Mar 27 22:16:26 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Thu, 27 Mar 2003 16:16:26 -0500 (EST) Subject: NCSA vs. NRPE? In-Reply-To: <3E833175.7060702@wcom.com> References: <3E833175.7060702@wcom.com> Message-ID: With nsca - you are talking about multiples of 700 passive service checks. If these come in close together - there may be an issue in getting the data to Nagios. Passive checks are submitted through a common pipe whose overall size is limited. Data can get backed up try to get through the pipe. Others have reported some similar experiences - mostly nrpe user myself. -sg On Thu, 27 Mar 2003, Patrick Narkinsky wrote: > I'm doing a rather large Nagios installation (ca. 700 UNIX servers, all > varieties.) In looking at how to get check results back to the Nagios > server, I've been debating whether I wanted to use NRPE and active > checks or whether it would be better to setup NCSA using passive checks > directed back to the nagios server. > > For my purposes, I see the following advantages to the passive approach: > > 1) Reduces load on the nagios server, which in my environment may matter. > 2) More secure: I am not opening any holes *into* my production servers > - instead, I'm connecting back to the monitoring server. > 3) I can delegate configuration to the admins of the various servers. > So, if they want to adjust alarm thresholds, they can do so. > 4) Fewer restarts of the nagios server necessary to process object file > configuration changes. > > However, I see that most people are running NRPE. Before I spend a lot > of time going down the wrong road, am I missing something here? > > Thanks, > > Patrick Narkinsky > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > -- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From skertzman at servervault.com Thu Mar 27 23:02:01 2003 From: skertzman at servervault.com (Kertzman, Sam) Date: Thu, 27 Mar 2003 17:02:01 -0500 Subject: Pending Host Check ... Forever Message-ID: <841A2A811DB61840BA6423C08B5735D3802D0F@dulles1.ops.servervault.com> > Not requiring a check_command for a host is a _feature_ IMHO. I have a > couple of pieces of gear in my network (unmanaged hubs and switches) > that need to be represented in Nagios so that graphs and dependencies > work out correctly. However, there's no direct way to determine if the > host is up, except by the fact that I can reach hosts through > that piece of gear. But yes, the infinite "pending" status is annoying. > > Jeff Try building a check in the checkcommands.cfg file that uses 'check_dummy 0'. For example: checkcommands.cfg ... define command{ command_name check_ok command_line $USER1$/check_dummy 0 } ... hosts.cfg ... define host{ use generic_host host_name test_host alias Generic Test Host check_command check_ok } ... kertzman ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasonm at kelman.com Thu Mar 27 22:46:26 2003 From: jasonm at kelman.com (Jason Marshall) Date: Thu, 27 Mar 2003 14:46:26 -0700 (MST) Subject: Problems Using NRPE 1.8 with HP-UX 10.20 In-Reply-To: References: Message-ID: > (*) I would personally start nrpe using whatever the HP-UX equivalent to > Solaris' truss or Linux's strace, for added scrutiny That would be 'tusc' which I don't think ships with HPUX, but is available Out There. It only runs well on HPUX 11.x, though there are old (unreliable, they say) versions for the older releases if you're stuck there... > > jc > > > > -----Original Message----- > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > Sent: Thursday, March 27, 2003 9:18 AM > > To: 'nagios-users at lists.sourceforge.net' > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > I am running out of ideas... > > > > /etc/sevices has an entry > > inetd was HUPed > > The path to the binary in inetd.conf is correct > > The binary has the execute bit set. > > > > > > Can you try running it as daemon instead of thru inetd? > > > > -sg > > > > On Thu, 27 Mar 2003, Kaplan, Andrew H. wrote: > > > > > Hi Subhendu, > > > > > > I double-checked the /etc/services file and I confirmed that > > > nrpe is listed as port 5666. > > > > > > -----Original Message----- > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > Sent: Wednesday, March 26, 2003 2:59 PM > > > To: 'nagios-users at lists.sourceforge.net' > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with HP-UX 10.20 > > > > > > > > > > > > is nrpe listed as port 5666 in /etc/services? > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > Hi Subhendu, > > > > > > > > I was unable to telnet to the host via port 5666. > > > > > > > > The command syntax was telnet 'hostname' 5666 > > > > The error message was > > > > > > > > Could not open a connection to host on port 5666: Connect failed > > > > > > > > -----Original Message----- > > > > From: Subhendu Ghosh [mailto:sghosh at sghosh.org] > > > > Sent: Wednesday, March 26, 2003 2:25 PM > > > > To: '' > > > > Subject: RE: [Nagios-users] Problems Using NRPE 1.8 with > > HP-UX 10.20 > > > > > > > > > > > > On Wed, 26 Mar 2003, Kaplan, Andrew H. wrote: > > > > > > > > > Subhendu, > > > > > > > > > > I double-checked the HP-UX system, and there was no > > instance of tcpd on > > > > > the computer. I modified the the inetd.conf file to now > > read as follows: > > > > > > > > > > nrpe stream tcp nowait nagios /opt/nrpe/bin/nrpe -c > > > > > /opt/nrpe/nrpe.cfg --inetd > > > > > > > > > > I also ran the kill -HUP command for inetd. > > > > > > > > > > Manually running the check_nrpe command from the Nagios > > server resulted in > > > > > the same > > > > > Connection Refused By Host error message. > > > > > > > > > > > > > Can you telnet to the host:port running nrpe? > > > > > > > > If so - is the host running nagios on the allowed_hosts > > list in nrpe.cfg? > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: > > The Definitive IT and Networking Event. Be There! > > NetWorld+Interop Las Vegas 2003 -- Register today! > > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > > _______________________________________________ > > Nagios-users mailing list > > Nagios-users at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS > > when reporting any issue. > > ::: Messages without supporting info will risk being sent to /dev/null > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > --- Jason Marshall, Unix Geek, Kelman Technologies, Inc., Calgary, AB, Canada. From a Sun Microsystems bug report (#4102680): "Workaround: don't pound on the mouse like a wild monkey." "I have great faith in fools: Self confidence my friends call it." -Edgar Allan Poe ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From adalle at ncf.ca Thu Mar 27 22:56:17 2003 From: adalle at ncf.ca (Andre Dalle) Date: Thu, 27 Mar 2003 16:56:17 -0500 Subject: Nagios and Nagios Plugins Solaris 8 sparc/intel packages available Message-ID: <20030327215617.GA19420@ncf.ca> I have packaged sparc and intel binaries for Solaris 8 via the Blastwave.org "CSW" (Community SoftWare for Solaris) project. CSWnagios (1.0) - nagios CSWnagiosp (1.30) - nagios plugins including mysql, ldap, snmp, nrpe The plugins package includes mysql, ldap, snmp, and nrpe 1.8. http://www.ibiblio.org/pub/packages/solaris/csw/ Or, check http://blastwave.org/. I hope they are of some use. -- Andre Dalle [adalle at ncf.ca] Systems Administrator, National Capital Freenet [http://www.ncf.ca] ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jmarrett at mediagrif.com Thu Mar 27 23:12:42 2003 From: jmarrett at mediagrif.com (John Marrett) Date: Thu, 27 Mar 2003 17:12:42 -0500 Subject: statusmap.cgi takes more than 60 seconds to render Message-ID: I am in the process of configuring Nagios for the first time. I am running the latest version (1.0) on a powerful Pentium 166. I have configured some parts of my network totaling about 80 hosts. I am now attempting to change the icons for the systems in the status map. I have created a xedtemplate_config_file and put records similar to the following for all my systems. define hostextinfo { host_name swrtant1 icon_image cisco-switch.png statusmap_image cisco-switch.png } It now takes more than 60 seconds to generate the statusmap. I tried gd2 files created using the following command: pngtogd2 cisco-switch.png cisco-switch.gd2 64 1 and they show up as question marks. I believe I may be having some gd2 image compatability problems. Does anyone have suggestions on how to improve the time it takes to draw the statusmap? If a hardware upgrade is required what type of machine will I need to monitor my entire network (~200 systems, approximately 10 different types with corresponding images). Thanks for your help, -JohnF -------------- next part -------------- An HTML attachment was scrubbed... URL: From nick at docmagic.com Thu Mar 27 23:34:20 2003 From: nick at docmagic.com (Nicholas Bernstein) Date: 27 Mar 2003 14:34:20 -0800 Subject: check_dns fails on redhat 7.0 Message-ID: <1048804460.3595.29.camel@nick.docmagic.com> I was wondering if anyone has any experience with getting the check_dns command not to segfault on RH 7.0. I know, if RedHat stopped supporting 7.0, why should anyone else? - then again, our network management box is a p100, so 7.0 seems appropriate. :) -- +---------------------------------------------------------------+ | Nicholas Bernstein | nick at docmagic.com | | UNIX Systems Administrator | http://www.docmagic.com | | Document Systems Inc. | | +---------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Fri Mar 28 00:01:38 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Fri, 28 Mar 2003 10:01:38 +1100 Subject: Authentication Blues In-Reply-To: <352B04312822444A962714393AED8A4D026837@ADAEVS01.int.chickasaw.net>; from Jeremy.Russell@chickasaw.net on Thu, Mar 27, 2003 at 09:56:27AM -0600 References: <352B04312822444A962714393AED8A4D026837@ADAEVS01.int.chickasaw.net> Message-ID: <20030328100134.B307@IPAustralia.Gov.AU> Dear Sir, The authentication code mentioned is not a CGI; they are Apache modules that happen to be written in Perl. No Perl stuff interacts with users; the only interaction is with the Apache core HTTP request for Nag CGI --> Apache ----> Perl Apache::AuthenSMB auth_type: basic | ntlm other http headers It seems to me that this conforms to your site standards since no web pages are produced by Perl. Yours sincerely, -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Fri Mar 28 00:09:35 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Thu, 27 Mar 2003 17:09:35 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D11382A@ADAEVS01.int.chickasaw.net> Well, not being perl is cool, but I still would rather use a form that is in a web page somewhere and bypass the little popup window. Is that possible with this setup or is there still a popup window. Also don't want to use mod_perl. That may be the kicker. Thanks for the reply. -----Original Message----- From: Stanley Hopcroft [mailto:Stanley.Hopcroft at IPAustralia.Gov.AU] Sent: Thursday, March 27, 2003 5:02 PM To: Jeremy Russell Cc: Stanley Hopcroft; bauchi; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Authentication Blues Dear Sir, The authentication code mentioned is not a CGI; they are Apache modules that happen to be written in Perl. No Perl stuff interacts with users; the only interaction is with the Apache core HTTP request for Nag CGI --> Apache ----> Perl Apache::AuthenSMB auth_type: basic | ntlm other http headers It seems to me that this conforms to your site standards since no web pages are produced by Perl. Yours sincerely, -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From marek.dohojda at linksys.com Fri Mar 28 00:32:06 2003 From: marek.dohojda at linksys.com (Marek Dohojda) Date: Thu, 27 Mar 2003 15:32:06 -0800 Subject: Authentication Message-ID: <202FFF2E883FC640B0E12B88EA98FD370368BC@mail2.hq.linksys.com> Does anybody know a way to allow everybody to view everything, but still has authentication method to be able to change things inside the UI? The first part means to access nagios page without username or password. Thank you in advance. Marek ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GBunting864 at Worldsavings.com Fri Mar 28 01:03:47 2003 From: GBunting864 at Worldsavings.com (Bunting, Glen, IG) Date: Thu, 27 Mar 2003 16:03:47 -0800 Subject: APAN problems Message-ID: <6CF7A192A85BD1458E7C5F35D607750C5964A5@ok1ems2.worldsavings.com> I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. 1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. 2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? Thanks Glen ***************************************************************************** If you are not the intended recipient of this e-mail, please notify the sender immediately. The contents of this e-mail do not amend any existing disclosures or agreements unless expressly stated. ***************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Fri Mar 28 01:39:12 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Fri, 28 Mar 2003 11:39:12 +1100 Subject: Authentication Blues In-Reply-To: <352B04312822444A962714393AED8A4D11382A@ADAEVS01.int.chickasaw.net>; from Jeremy.Russell@chickasaw.net on Thu, Mar 27, 2003 at 05:09:35PM -0600 References: <352B04312822444A962714393AED8A4D11382A@ADAEVS01.int.chickasaw.net> Message-ID: <20030328113907.A288@IPAustralia.Gov.AU> Dear Sir, On Thu, Mar 27, 2003 at 05:09:35PM -0600, Jeremy Russell wrote: > Well, not being perl is cool, but I still would rather use a form that > is in a web page somewhere and bypass the little popup window. Is that > possible with this setup or is there still a popup window. Also don't > want to use mod_perl. That may be the kicker. Thanks for the reply. > > in a nutshell, with Apache::AuthenNTLM . no pop-up window for username and password (with MS workstations and browsers _onlu_) . requires mod_perl. So it's not suitable for you. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From gwichman at zantaz.com Fri Mar 28 02:12:55 2003 From: gwichman at zantaz.com (Gerald Wichmann) Date: Thu, 27 Mar 2003 17:12:55 -0800 Subject: Solaris check_procs segfaults? Message-ID: <12C7D768CC8ED4118A9200508BEEC6FB042F263A@zanexch.zantaz.com> Anyone else have this problem? All the other nrpe plugins seem to work except check_procs... Gerald Wichmann Senior Systems Development Engineer Zantaz, Inc. 925.598.3099 (w) This e-mail has been captured and archived by the ZANTAZ Digital Safe(tm) service. For more information, visit us at www.zantaz.com. IMPORTANT: This electronic mail message is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader of this message is not the intended recipient, or the employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify the sender immediately by telephone or directly reply to the original message(s) sent. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From andrew-netsaint at andrew.net.au Fri Mar 28 03:09:50 2003 From: andrew-netsaint at andrew.net.au (Andrew Pollock) Date: Fri, 28 Mar 2003 12:09:50 +1000 Subject: Problem with the status CGIs Message-ID: <20030328020950.GA5738@daedalus.andrew.net.au> Hi, I'm having my first foray into Nagios from being a long time NetSaint user. I've set it up to use a PostgreSQL database. I have Nagios running as the user nagios, and Apache running as the user www-data. I have created two database users, one for the Nagios process and one for the Apache process, and both can connect to the database with their relevant permissions. If I go to any of the status CGI's, I get the "Could not read host and service status information" error back. Initially, I had an /etc/nagios/cgi.cfg that wasn't readable by the webserver user, but now everything looks good. This is where it gets weird. If, as the webserver user, I run status.cgi by hand (with environment variables included), it fails in the same way it does in a web browser. If I run it via strace to try and work out why it's failing, it succeeds. Makes diagnosis awful hard. I've also put a check_dummy call into the nagios_check_command for the time being, so I don't think the FAQ entry on this subject applies to my problem. I'm using the Debian packaged version 1.0-7 Andrew ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From masroor77 at cubexs.net.pk Fri Mar 28 03:32:26 2003 From: masroor77 at cubexs.net.pk (masroor77 at cubexs.net.pk) Date: Fri, 28 Mar 2003 07:32:26 +0500 (PKT) Subject: Server error Message-ID: <1708.202.63.192.34.1048818746.squirrel@mail.cubexs.net.pk> Hello to all i found this error ,when i am trying to access cgi-bin directory. The server encountered an internal error and was unable to complete your request.Either the server is overloaded or there was an error in a CGI script. Masroor ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Fred.Albrecht at za.tiscali.com Fri Mar 28 07:59:30 2003 From: Fred.Albrecht at za.tiscali.com (Fred Albrecht) Date: Fri, 28 Mar 2003 08:59:30 +0200 Subject: NagMIN - Modify production .cfg files to complete installation Message-ID: Hi Fred the download link seems to be broken... :\ fred -----Original Message----- From: Fred Reimers [mailto:FReimers at infosysinc.com] Sent: 27 March 2003 09:21 PM To: Matthew.Quinney at hollandandholland.com Cc: nagios-users at lists.sourceforge.net; nagios-users-admin at lists.sourceforge.net; Russell Scibetti Subject: RE: [Nagios-users] NagMIN - Modify production .cfg files to complete installation Matt, Regarding NagMIN not activating a new configuration on a new install. One problem is a bug that I've fixed and will release a bit later today. The other is a required configuration change. I don't automatically change your production nagios.cfg or cgi.cfg files to use the NagMIN generated configuration files when you run NagMIN setup. This would blow away your running Nagios configuration since there are no NagMIN configuration files. I also don't rewrite nagios.cfg or cgi.cfg when activating a configuration. This gives you the flexibility to use NagMIN configuration files and also other customized files of your choosing. You need to add the NagMIN configuration files to your production nagios.cfg and cgi.cfg settings to complete the NagMIN installation. The details are on the last screen displayed by the setup utility. Here are the NagMIN configuration file settings. nagios.cfg cfg_file=/usr/local/nagios/etc/Command.cfg cfg_file=/usr/local/nagios/etc/Contact.cfg cfg_file=/usr/local/nagios/etc/ContactGroup.cfg cfg_file=/usr/local/nagios/etc/Host.cfg cfg_file=/usr/local/nagios/etc/HostEscalation.cfg cfg_file=/usr/local/nagios/etc/HostGroup.cfg cfg_file=/usr/local/nagios/etc/HostTemplate.cfg cfg_file=/usr/local/nagios/etc/Service.cfg cfg_file=/usr/local/nagios/etc/ServiceDependency.cfg cfg_file=/usr/local/nagios/etc/ServiceEscalation.cfg cfg_file=/usr/local/nagios/etc/ServiceTemplate.cfg cfg_file=/usr/local/nagios/etc/TimePeriod.cfg cgi.cfg main_config_file=/usr/local/nagios/etc/nagios.cfg xedtemplate_config_file=/usr/local/nagios/etc/HostExtInfo.cfg xedtemplate_config_file=/usr/local/nagios/etc/ServicExtInfo.cfg I'd also recommend moving any other files that aren't being used out of your etc directory. Leaving resource.cfg, nagios.cfg, cgi.cfg and any other needed files. This will reduce the number of files displayed by NagMIN and only display files used in the configuration. Let me know how you make out! Fred ..... -------------- next part -------------- An HTML attachment was scrubbed... URL: From fredrik.wanglund at datavis.se Fri Mar 28 08:39:03 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Fri, 28 Mar 2003 08:39:03 +0100 Subject: APAN problems References: <6CF7A192A85BD1458E7C5F35D607750C5964A5@ok1ems2.worldsavings.com> Message-ID: <3E83FC17.7030707@datavis.se> Apan does rely on UNIX name/IP resolving, so you must have your hosts defined in /etc/hosts. /FredrikW Bunting, Glen, IG wrote: >I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. > >1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. > >I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. > >2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. > >I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? > >Thanks > >Glen > > >***************************************************************************** >If you are not the intended recipient of this e-mail, please notify >the sender immediately. The contents of this e-mail do not amend >any existing disclosures or agreements unless expressly stated. >***************************************************************************** > > > >------------------------------------------------------- >This SF.net email is sponsored by: >The Definitive IT and Networking Event. Be There! >NetWorld+Interop Las Vegas 2003 -- Register today! >http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Fri Mar 28 08:41:55 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Fri, 28 Mar 2003 08:41:55 +0100 Subject: APAN problems References: <6CF7A192A85BD1458E7C5F35D607750C5964A5@ok1ems2.worldsavings.com> Message-ID: <3E83FCC3.4090304@datavis.se> The extinfo-definitions (and Apan) is very case-sensitive. Make sure your hostname/sevicedescription looks exactly the same in the service-definition and the serviceextinfo-definition. If this desnt work, let us look at the relevant parts of your config. /FredrikW Bunting, Glen, IG wrote: >I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. > >1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. > >I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. > >2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. > >I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? > >Thanks > >Glen > > >***************************************************************************** >If you are not the intended recipient of this e-mail, please notify >the sender immediately. The contents of this e-mail do not amend >any existing disclosures or agreements unless expressly stated. >***************************************************************************** > > > >------------------------------------------------------- >This SF.net email is sponsored by: >The Definitive IT and Networking Event. Be There! >NetWorld+Interop Las Vegas 2003 -- Register today! >http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Fri Mar 28 08:33:08 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Fri, 28 Mar 2003 08:33:08 +0100 Subject: Pending Host Check ... Forever References: <841A2A811DB61840BA6423C08B5735D3802D0F@dulles1.ops.servervault.com> Message-ID: <3E83FAB4.2060209@datavis.se> Or a litle bit more simple one: define service { ... check_command "echo OK" ... } /FredrikW Kertzman, Sam wrote: >>Not requiring a check_command for a host is a _feature_ IMHO. I have a >>couple of pieces of gear in my network (unmanaged hubs and switches) >>that need to be represented in Nagios so that graphs and dependencies >>work out correctly. However, there's no direct way to determine if the >>host is up, except by the fact that I can reach hosts through >>that piece of gear. But yes, the infinite "pending" status is annoying. >> >>Jeff >> >> > >Try building a check in the checkcommands.cfg file that uses 'check_dummy >0'. For example: > >checkcommands.cfg > >... >define command{ > command_name check_ok > command_line $USER1$/check_dummy 0 >} >... > > >hosts.cfg > >... >define host{ > use generic_host > host_name test_host > alias Generic Test Host > check_command check_ok >} >... > > >kertzman > > >------------------------------------------------------- >This SF.net email is sponsored by: >The Definitive IT and Networking Event. Be There! >NetWorld+Interop Las Vegas 2003 -- Register today! >http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Fri Mar 28 09:22:30 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Fri, 28 Mar 2003 09:22:30 +0100 Subject: Pending Host Check ... Forever References: <841A2A811DB61840BA6423C08B5735D3802D0F@dulles1.ops.servervault.com> <3E83FAB4.2060209@datavis.se> Message-ID: <3E840646.31FF95C1@gcc.dhl.com> I think some of you missed this one :-) Subject: Re: [Nagios-users] Pending Host Check ... Forever Date: Thu, 27 Mar 2003 04:28:59 -0800 (PST) From: "Roy S. Rapoport" To: Tom DE BLENDE CC: On Thu, 27 Mar 2003, Tom DE BLENDE wrote: > You know what? This looks very much like it is pending. And come to > think of it, I did see this before, and that was due to some errors in > the config file. Run a "nagios -v nagios.cfg" and see what it returns. Found the problem -- there was no check_command defined for the host. I'm surprised Nagios wasn't more upset about this. Interestingly, even running nagios -v nagios.cfg did not expose this as a problem. -roy Fredrik W?nglund wrote: > > Or a litle bit more simple one: > > define service { > ... > check_command "echo OK" > ... > } > > /FredrikW > > Kertzman, Sam wrote: > > >>Not requiring a check_command for a host is a _feature_ IMHO. I have a > >>couple of pieces of gear in my network (unmanaged hubs and switches) > >>that need to be represented in Nagios so that graphs and dependencies > >>work out correctly. However, there's no direct way to determine if the > >>host is up, except by the fact that I can reach hosts through > >>that piece of gear. But yes, the infinite "pending" status is annoying. > >> > >>Jeff > >> > >> > > > >Try building a check in the checkcommands.cfg file that uses 'check_dummy > >0'. For example: > > > >checkcommands.cfg > > > >... > >define command{ > > command_name check_ok > > command_line $USER1$/check_dummy 0 > >} > >... > > > > > >hosts.cfg > > > >... > >define host{ > > use generic_host > > host_name test_host > > alias Generic Test Host > > check_command check_ok > >} > >... > > > > > >kertzman > > > > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Fri Mar 28 10:02:13 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Fri, 28 Mar 2003 09:02:13 -0000 Subject: Solaris check_procs segfaults? Message-ID: <53104E20A25CD411B556009027E50636064D54EB@pnnemp02.pn.egg.com> Copying to nagiosplug-help. Please remove nagios-users from subsequent replies. Sounds serious. Check_procs version? Syntax used? OS version? check_procs -v output? > -----Original Message----- > From: Gerald Wichmann [SMTP:gwichman at zantaz.com] > Sent: Friday, March 28, 2003 1:13 AM > To: Nagios (E-mail) > Subject: [Nagios-users] Solaris check_procs segfaults? > > Anyone else have this problem? All the other nrpe plugins seem to work > except check_procs... > > Gerald Wichmann > This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Ton.Voon at egg.com Fri Mar 28 10:03:45 2003 From: Ton.Voon at egg.com (Voon, Ton) Date: Fri, 28 Mar 2003 09:03:45 -0000 Subject: check_dns fails on redhat 7.0 Message-ID: <53104E20A25CD411B556009027E50636064D54EC@pnnemp02.pn.egg.com> Copying to nagiosplug-help. Please remove nagios-users from subsequent replies. Sounds serious. Check_procs version? Syntax used? OS version? check_procs -v output? (s/check_procs/check_dns/i) > -----Original Message----- > From: Nicholas Bernstein [SMTP:nick at docmagic.com] > Sent: Thursday, March 27, 2003 10:34 PM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_dns fails on redhat 7.0 > > I was wondering if anyone has any experience with getting the check_dns > command not to segfault on RH 7.0. I know, if RedHat stopped supporting > 7.0, why should anyone else? - then again, our network management box is > a p100, so 7.0 seems appropriate. :) > -- > +---------------------------------------------------------------+ > | Nicholas Bernstein | nick at docmagic.com | > | UNIX Systems Administrator | http://www.docmagic.com | > | Document Systems Inc. | | > +---------------------------------------------------------------+ > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null This private and confidential e-mail has been sent to you by Egg. The Egg group of companies includes Egg Banking plc (registered no. 2999842), Egg Financial Products Ltd (registered no. 3319027) and Egg Investments Ltd (registered no. 3403963) which carries out investment business on behalf of Egg and is regulated by the Financial Services Authority. Registered in England and Wales. Registered offices: 1 Waterhouse Square, 138-142 Holborn, London EC1N 2NA. If you are not the intended recipient of this e-mail and have received it in error, please notify the sender by replying with 'received in error' as the subject and then delete it from your mailbox. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Fri Mar 28 10:36:38 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 28 Mar 2003 09:36:38 +0000 Subject: best check https Message-ID: <1048844198.960.9.camel@Monitor> Hi I would like to know what are the diferents and the best option to check https because i try both and i get diferents results. Option 1: Define command{ command_name check_https command_line $USER1$/check_http -I $HOSTADDRESS$ -S -C 30 } Option 2: define command{ command_name check_https command_line $USER1$/check_http -I $HOSTADDRESS$ -S -e "HTTP/1." -t 30 -c 30 } Best regards Edu ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From kkranio at yahoo.fr Fri Mar 28 10:53:58 2003 From: kkranio at yahoo.fr (=?iso-8859-1?q?felix=20t?=) Date: Fri, 28 Mar 2003 10:53:58 +0100 (CET) Subject: Audio alerts for passive services Message-ID: <20030328095358.64708.qmail@web10103.mail.yahoo.com> Hi all, I would really like to know how can one implement audio alerts for passive services? The doc says is specifying the .wav files in the cgi.cfg but Nagios does not seem to produce audio alerts for passive service checks that turn into a hard critical state ( when, for example, the remote host sending passive checks results become unreachable ). I'm using check_freshness option in the services definitions but even if I see that service hard state is critical I don't receive any audio alarm. I'm looking forward for any help. Kind regads, Felix Farkas ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en fran?ais ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From johannes.dagemark at wheelnetworks.com Fri Mar 28 12:41:34 2003 From: johannes.dagemark at wheelnetworks.com (Johannes Dagemark) Date: Fri, 28 Mar 2003 12:41:34 +0100 Subject: check_citrix References: <1048844198.960.9.camel@Monitor> Message-ID: <050e01c2f51e$fc33ea80$2f00a8c0@wheeljd> Hello probably a stupied question but anyway... Im trying to run the check_citrix plugin always gets complaints about a missing utils.pm [root at check2 contrib]# ./check_citrix Can't locate utils.pm in @INC (@INC contains: /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0 /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.0 /usr/lib/perl5/vendor_perl .) at ./check_citrix line 33. BEGIN failed--compilation aborted at ./check_citrix line 33. Where can I find utils.pm? Regards Johannes Dagemark ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From casperez at cesga.es Fri Mar 28 12:47:55 2003 From: casperez at cesga.es (casperez at cesga.es) Date: Fri, 28 Mar 2003 12:47:55 +0100 (CET) Subject: nrpe Message-ID: <58731.193.144.34.186.1048852075.squirrel@webmail.cesga.es> Hello, Can somebody tell me how i can put nrpe in the inetd daemon? Thank you ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Fri Mar 28 13:13:14 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 28 Mar 2003 09:13:14 -0300 Subject: Web Interface - Internal Server Error Message-ID: "Nagios v1.0 and GD library 2.0.11" When I trying to access the statusmap, trends, or histogram CGIs from the web interface results in a INTERNAL SERVER ERROR. Below the entire error. ****************************************************************** Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. ---------------------------------------------------------------------------- ---- Apache/1.3.27 Server at monitor Port 80 ******************************************************************* Anybody help me ? ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From hugo.rebello at br.danzas.com Fri Mar 28 13:37:10 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 28 Mar 2003 09:37:10 -0300 Subject: FW: Web Interface - Internal Server Error Message-ID: OK. My status map is work Below the FAQ that I used. http://www.nagios.org/faqs/viewfaq.php?faq_id=119 -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net]On Behalf Of Hugo Rebello Sent: sexta-feira, 28 de mar?o de 2003 09:13 To: 'Nagios Users (E-mail) ' Subject: [Nagios-users] Web Interface - Internal Server Error "Nagios v1.0 and GD library 2.0.11" When I trying to access the statusmap, trends, or histogram CGIs from the web interface results in a INTERNAL SERVER ERROR. Below the entire error. ****************************************************************** Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, root at localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error. ---------------------------------------------------------------------------- ---- Apache/1.3.27 Server at monitor Port 80 ******************************************************************* Anybody help me ? ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Fri Mar 28 13:31:14 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Fri, 28 Mar 2003 13:31:14 +0100 Subject: check_citrix References: <1048844198.960.9.camel@Monitor> <050e01c2f51e$fc33ea80$2f00a8c0@wheeljd> Message-ID: <3E844092.AF10F47F@gcc.dhl.com> In your libexec directory. Move the check_citrix to where your other plugins are. Johannes Dagemark wrote: > > Hello > > probably a stupied question but anyway... > > Im trying to run the check_citrix plugin always gets complaints about a missing > utils.pm > > [root at check2 contrib]# ./check_citrix > Can't locate utils.pm in @INC (@INC contains: > /usr/lib/perl5/5.8.0/i386-linux-thread-multi /usr/lib/perl5/5.8.0 > /usr/lib/perl5/site_perl/5.8.0/i386-linux-thread-multi > /usr/lib/perl5/site_perl/5.8.0 /usr/lib/perl5/site_perl > /usr/lib/perl5/vendor_perl/5.8.0/i386-linux-thread-multi > /usr/lib/perl5/vendor_perl/5.8.0 /usr/lib/perl5/vendor_perl .) at ./check_citrix > line 33. > BEGIN failed--compilation aborted at ./check_citrix line 33. > > Where can I find utils.pm? > > Regards > > Johannes Dagemark > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jasmine.chua at securecirt.com Fri Mar 28 15:57:32 2003 From: jasmine.chua at securecirt.com (Jasmine) Date: Fri, 28 Mar 2003 22:57:32 +0800 Subject: check_nrpe occasional timeout! Message-ID: <200303282257.33914.jasmine.chua@securecirt.com> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi Just wondering if anyone gets occasional CHECK_NRPE: Timeout? Is it due to slow network connections? - -- Jasmine Chua Security Engineer SecureCiRT Pte Ltd Blk 750C Chai Chee Road #04-01 Technopark at ChaiChee Singapore 469003 Tel: 6243 6800 DID: 6243 6802 Fax: 6441 5119 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+hGLcNgvTa7Hj2AURAoyxAJ41pMF/tqwGcOuD3EvRnbBD04WgtQCdGS3C jXwdcpUwVhN5T51vfDzPiZs= =nu5p -----END PGP SIGNATURE----- ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pascal.renaut at electricite-strasbourg.fr Fri Mar 28 17:20:31 2003 From: pascal.renaut at electricite-strasbourg.fr (Pascal RENAUT/GROUPE-ES) Date: Fri, 28 Mar 2003 17:20:31 +0100 Subject: Check_oracle Message-ID: Hi all, I would like to view tablespace free space (DATA, IDX, SYSTEM, RBS and TEMP) by using check_oracle. My problem is to set the argument (check_oracle --tablespace ) When I replace by the SID, the plugin returns me a false response (like : "test (my SID) : DATA OK (tablespace DATA) - 0% used [0 / 0MB available ] Can you help me please Thanks PS : If you know others plugins which perform same work, I'll buy it ..................................................................................................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From oliver.devnull at gmx.net Fri Mar 28 17:28:10 2003 From: oliver.devnull at gmx.net (oliver.devnull at gmx.net) Date: Fri, 28 Mar 2003 17:28:10 +0100 (MET) Subject: (no subject) Message-ID: <7695.1048868890@www12.gmx.net> Hi Andre and List ! > I have packaged sparc and intel binaries for Solaris 8 > via the Blastwave.org "CSW" (Community SoftWare for > Solaris) project. > CSWnagios (1.0) - nagios > CSWnagiosp (1.30) - nagios plugins including mysql, ldap, snmp, nrpe > I hope they are of some use. Definetly ! Nice work ! Came right in time for me since I don't have compile environ available on SUN (yet)... Just 2 follow-up questions: - Is there (somewhere) also a sparc/solaris 2.6 package available ? (yep.... not only 'incomplete' environ but also one with two os-versions ;-) ) - I thought the plugin-package would install independently... I just want to monitor sun, nagios server will live on a LX machine - hence according to my current knowledge I would just need NRPE and some plugins (all stuffed into CSWnagiosp). But when I install CSWnagiosp with pkadd I get: "WARNING: The package "nagios - nagios network monitoring base package (no plugins)" is a prerequisite package and should be installed." Can I just skip that or shall I install also the (in my case unneeded) base package ? Thanx for your help in advance. Greetings from the city without the wall. Oliver -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte l?cheln! Fotogalerie online mit GMX ohne eigene Homepage! ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Fri Mar 28 17:30:47 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Fri, 28 Mar 2003 10:30:47 -0600 Subject: Authentication Blues Message-ID: <352B04312822444A962714393AED8A4D11382B@ADAEVS01.int.chickasaw.net> Man, That would be cool. I might just have to push for mod_perl! Thanks! -----Original Message----- From: Stanley Hopcroft [mailto:Stanley.Hopcroft at IPAustralia.Gov.AU] Sent: Thursday, March 27, 2003 6:39 PM To: Jeremy Russell Cc: Stanley Hopcroft; bauchi; nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Authentication Blues Dear Sir, On Thu, Mar 27, 2003 at 05:09:35PM -0600, Jeremy Russell wrote: > Well, not being perl is cool, but I still would rather use a form that > is in a web page somewhere and bypass the little popup window. Is > that possible with this setup or is there still a popup window. Also > don't want to use mod_perl. That may be the kicker. Thanks for the > reply. > > in a nutshell, with Apache::AuthenNTLM . no pop-up window for username and password (with MS workstations and browsers _onlu_) . requires mod_perl. So it's not suitable for you. Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jmarrett at mediagrif.com Fri Mar 28 17:42:17 2003 From: jmarrett at mediagrif.com (John Marrett) Date: Fri, 28 Mar 2003 11:42:17 -0500 Subject: statusmap.cgi takes more than 60 seconds to re nder Message-ID: My apologies for my HTML, my companies mail server rewrites them automagically... I know that a P166 isn't a powerful machine, it was more of a joke, though apparently not much of one. I might be able to get a better machine if the project get's approved. As it stands the CPU is pegged at 100% during the render. Given that it can render the map with the default question mark icon in a few seconds I find it strange that it can't do the same with non default icons. I take it no caching of previsouly used images is done. I have now tried to use templates instead of specifying the icon for each host. Unfortunately this doesn't appear to help. I have tried using gd2 icons for the statusmap to reduce the overhead; when I try this however I just get question marks instead of the proper icons. I believe that I may be having problems with the icons I created using png2gd2. I have tried using the two following commands to create them: pngtogd2 cisco-database.png cisco-database.gd2 64 1 and also pngtogd cisco-database.png cisco-database.gd2 I have two versions of libgd installed on the system: /usr/lib/libgd.so /usr/lib/libgd.so.1 /usr/lib/libgd.so.1.8.4 /usr/lib/libgd.so.2 /usr/lib/libgd.so.2.0.1 I'm not sure which is being used by the statusmap.cgi or the pngtogd2. pngtogd2 is from the debian package libgd-tools Does anyone have any suggestions? -JohnF -----Original Message----- From: Fred Albrecht [mailto:Fred.Albrecht at za.tiscali.com] Sent: Friday, March 28, 2003 1:14 AM To: John Marrett Subject: RE: [Nagios-users] statusmap.cgi takes more than 60 seconds to render Hi John What you can do is have a look at how busy your cpu gets when the statusmap cgi is running. You'll probably find that you cpu is maxed out at 100%, it can only work so hard. ;( And, with all due respect, a P166 is NOT a powerfull machine. For comfort sake I'd say get yourself a P4 (if you prefer to stay with PC's) and think of it as an investement in your network, IMHO. best regards :) fred -----Original Message----- From: John Marrett [mailto:jmarrett at mediagrif.com] Sent: 28 March 2003 12:13 AM To: 'nagios-users at lists.sourceforge.net' Subject: [Nagios-users] statusmap.cgi takes more than 60 seconds to render I am in the process of configuring Nagios for the first time. I am running the latest version (1.0) on a powerful Pentium 166. I have configured some parts of my network totaling about 80 hosts. I am now attempting to change the icons for the systems in the status map. I have created a xedtemplate_config_file and put records similar to the following for all my systems. define hostextinfo { host_name swrtant1 icon_image cisco-switch.png statusmap_image cisco-switch.png } It now takes more than 60 seconds to generate the statusmap. I tried gd2 files created using the following command: pngtogd2 cisco-switch.png cisco-switch.gd2 64 1 and they show up as question marks. I believe I may be having some gd2 image compatability problems. Does anyone have suggestions on how to improve the time it takes to draw the statusmap? If a hardware upgrade is required what type of machine will I need to monitor my entire network (~200 systems, approximately 10 different types with corresponding images). Thanks for your help, -JohnF -------------- next part -------------- An HTML attachment was scrubbed... URL: From hugo.rebello at br.danzas.com Fri Mar 28 18:12:18 2003 From: hugo.rebello at br.danzas.com (Hugo Rebello) Date: Fri, 28 Mar 2003 14:12:18 -0300 Subject: Icon for 3-D and Status Map Message-ID: Please,I use Nagios v1.0 with GD libray 2.0.11 My 3-D Status Map and Status Map is work now, but the icons are not very good. I found in www.nagios.org/faqs a help using extended_host_information options, but I don't understand very well. Anybody help me ? How do I change the icons ? Thank you. Hugo ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Fri Mar 28 18:24:59 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Fri, 28 Mar 2003 11:24:59 -0600 (CST) Subject: check_nrpe occasional timeout! In-Reply-To: <200303282257.33914.jasmine.chua@securecirt.com> References: <200303282257.33914.jasmine.chua@securecirt.com> Message-ID: <43835.204.83.191.2.1048872299.squirrel@webmail.bangtherockstogether.net> > Hi > > Just wondering if anyone gets occasional CHECK_NRPE: Timeout? Is it due to slow > network connections? Absolutely ;) ... a colleague of mine is working on a pretty advanced Oracle checking plugin (which he keeps telling me he will release *soon*) ;) ... unfortunately we have soem pretty slow returns from some of the queries it does and nrpe timed out often. For us, all I did was increase the timeout on nrpe to around 30 seconds and viola the problem went away ... without crippling the machines I might add :) -- Lonny ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GBunting864 at Worldsavings.com Fri Mar 28 18:26:47 2003 From: GBunting864 at Worldsavings.com (Bunting, Glen, IG) Date: Fri, 28 Mar 2003 09:26:47 -0800 Subject: APAN problems Message-ID: <6CF7A192A85BD1458E7C5F35D607750C59682A@ok1ems2.worldsavings.com> Thanks Fredrik, Now that I have added the entries into the hosts file the tests are now running without error. Glen -----Original Message----- From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] Sent: Thursday, March 27, 2003 11:39 PM To: Bunting, Glen, IG Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] APAN problems Apan does rely on UNIX name/IP resolving, so you must have your hosts defined in /etc/hosts. /FredrikW Bunting, Glen, IG wrote: >I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. > >1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. > >I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. > >2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. > >I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? > >Thanks > >Glen > > >***************************************************************************** >If you are not the intended recipient of this e-mail, please notify >the sender immediately. The contents of this e-mail do not amend >any existing disclosures or agreements unless expressly stated. >***************************************************************************** > > > >------------------------------------------------------- >This SF.net email is sponsored by: >The Definitive IT and Networking Event. Be There! >NetWorld+Interop Las Vegas 2003 -- Register today! >http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ***************************************************************************** If you are not the intended recipient of this e-mail, please notify the sender immediately. The contents of this e-mail do not amend any existing disclosures or agreements unless expressly stated. ***************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GBunting864 at Worldsavings.com Fri Mar 28 18:33:00 2003 From: GBunting864 at Worldsavings.com (Bunting, Glen, IG) Date: Fri, 28 Mar 2003 09:33:00 -0800 Subject: APAN problems Message-ID: <6CF7A192A85BD1458E7C5F35D607750C596855@ok1ems2.worldsavings.com> Fredrik, I have compared the case sensitivity of hostname/description and they look correct. Here are the relevant parts of my configs. I still do not have any links from within nagios. ############################################################################################ # Services for APAN ############################################################################################ # service definition for APAN ping define service{ host_name GlenNT,JeffNT,JeffIIS,JeffLinux,gbredhat1 service_description Ping is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups nt-admins,linux-admins notification_interval 120 notification_period 24x7 notification_options c,r check_command apan!ping!100.0,20%!500.0,60% name Ping use generic-service normal_check_interval 1 } ############################################################################################ # Extended service information ############################################################################################ # rrd link of ping round-trip times define serviceextinfo{ host_name gbredhat1 service_description Ping notes_url /nagios/cgi-bin/apan.cgi?host=gbredhat1&service=Ping icon_image graph.png icon_image_alt View graphs } ############################################################################################ # Enabling extended host info ############################################################################################ xedtemplate_config_file=/usr/local/nagios/etc/hostextinfo.cfg xedtemplate_config_file=/usr/local/nagios/etc/serviceextinfo.cfg Thanks Glen -----Original Message----- From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] Sent: Thursday, March 27, 2003 11:42 PM To: Bunting, Glen, IG Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] APAN problems The extinfo-definitions (and Apan) is very case-sensitive. Make sure your hostname/sevicedescription looks exactly the same in the service-definition and the serviceextinfo-definition. If this desnt work, let us look at the relevant parts of your config. /FredrikW Bunting, Glen, IG wrote: >I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. > >1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. > >I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. > >2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. > >I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? > >Thanks > >Glen > > >***************************************************************************** >If you are not the intended recipient of this e-mail, please notify >the sender immediately. The contents of this e-mail do not amend >any existing disclosures or agreements unless expressly stated. >***************************************************************************** > > > >------------------------------------------------------- >This SF.net email is sponsored by: >The Definitive IT and Networking Event. Be There! >NetWorld+Interop Las Vegas 2003 -- Register today! >http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >_______________________________________________ >Nagios-users mailing list >Nagios-users at lists.sourceforge.net >https://lists.sourceforge.net/lists/listinfo/nagios-users >::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >::: Messages without supporting info will risk being sent to /dev/null > > ***************************************************************************** If you are not the intended recipient of this e-mail, please notify the sender immediately. The contents of this e-mail do not amend any existing disclosures or agreements unless expressly stated. ***************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Fri Mar 28 18:50:33 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Fri, 28 Mar 2003 11:50:33 -0600 Subject: check_nrpe occasional timeout! Message-ID: I used to, back when I was originally running Nagios on a small test box. It was a PIII, 500 MHz with (I believe) 128MB of RAM. Solution: I migrated to a 800MHz box with 1GB of RAM. jc > -----Original Message----- > From: Jasmine [mailto:jasmine.chua at securecirt.com] > Sent: Friday, March 28, 2003 8:58 AM > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] check_nrpe occasional timeout! > > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi > > Just wondering if anyone gets occasional CHECK_NRPE: Timeout? > Is it due to > slow network connections? > > > - -- > Jasmine Chua > Security Engineer > > SecureCiRT Pte Ltd > Blk 750C Chai Chee Road > #04-01 Technopark at ChaiChee > Singapore 469003 > Tel: 6243 6800 DID: 6243 6802 > Fax: 6441 5119 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.1 (GNU/Linux) > > iD8DBQE+hGLcNgvTa7Hj2AURAoyxAJ41pMF/tqwGcOuD3EvRnbBD04WgtQCdGS3C > jXwdcpUwVhN5T51vfDzPiZs= > =nu5p > -----END PGP SIGNATURE----- > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nick at docmagic.com Fri Mar 28 19:52:35 2003 From: nick at docmagic.com (Nicholas Bernstein) Date: 28 Mar 2003 10:52:35 -0800 Subject: Trends & Availability not working Message-ID: <1048877554.7536.6.camel@nick.docmagic.com> When I go into trends or Availability and do a report for the last 24 hours (I've only had it up for 24hrs), the host or service is listed as Indeterminate: (100.0%). If I go to Host Detail, the get either UP "(Host assumed to be up)" or "PING OK- Packet loss = 0%m RTA = .65". Where should I start looking to troubleshoot this? Thanks! -- +---------------------------------------------------------------+ | Nicholas Bernstein | nick at docmagic.com | | UNIX Systems Administrator | http://www.docmagic.com | | Document Systems Inc. | | +---------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nick at docmagic.com Fri Mar 28 20:06:39 2003 From: nick at docmagic.com (Nicholas Bernstein) Date: 28 Mar 2003 11:06:39 -0800 Subject: nrpe questions Message-ID: <1048878399.7527.15.camel@nick.docmagic.com> Could someone give me an example of the nrpe command they are using on the nagios server side? I have nrpe set up through xinetd - and it partially seems to be working. I can telnet to the port and issue a command, but I get dropped. telnet output: ----------------------------------------------------- Escape character is '^]'. check_load Connection closed by foreign host. /etc/xinetd.d/nrpt: ----------------------------------------------------- # default: on # description: NRPE service nrpe { flags = REUSE socket_type = stream wait = no user = nobody server = /usr/local/bin/nrpe server_args = -c /etc/nrpe.cfg --inetd log_on_failure += USERID disable = no only_from = 192.168.210.29 } ------------------------------------------------------- /etc/nrpe.cfg: [nick at da3 nrpe]$ more /etc/nrpe.cfg ############################################################################# # Sample NRPE Config File # Written by: Ethan Galstad (nagios at nagios.org) # # Last Modified: 12-30-2002 # # NOTES: # This is a sample configuration file for the NRPE daemon. It needs to be # located on the remote host that is running the NRPE daemon, not the host # from which the check_nrpe client is being executed. ############################################################################# # PORT NUMBER # Port number we should wait for connections on. # NOTE: This must be a non-priviledged port (i.e. > 1024). # NOTE: This option is ignored if NRPE is running under either inetd or xinetd server_port=5666 # SERVER ADDRESS # Address that nrpe should bind to in case there are more than one interface # and you do not want nrpe to bind on all interfaces. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd #server_address=192.168.1.1 # ALLOWED HOST ADDRESSES # This is a comma-delimited list of IP address of hosts that are allowed # to talk to the NRPE daemon. # # NOTE: The daemon only does rudimentary checking of the client's IP # address. I would highly recommend adding entries in your # /etc/hosts.allow file to allow only the specified host to connect # to the port you are running this daemon on. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd allowed_hosts=127.0.0.1 # NRPE USER # This determines the effective user that the NRPE daemon should run as. # You can either supply a username or a UID. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd nrpe_user=nagios # NRPE GROUP # This determines the effective group that the NRPE daemon should run as. # You can either supply a group name or a GID. # # NOTE: This option is ignored if NRPE is running under either inetd or xinetd nrpe_group=nagios # DEBUGGING OPTION # This option determines whether or not debugging messages are logged to the # syslog facility. # Values: 0=debugging off, 1=debugging on debug=0 # COMMAND TIMEOUT # This specifies the maximum number of seconds that the NRPE daemon will # allow plugins to finish executing before killing them off. command_timeout=60 # COMMAND DEFINITIONS # Command definitions that this daemon will run. Definitions # are in the following format: # # command[]= # # When the daemon receives a request to return the results of # it will execute the command specified by the argument. # # Unlike Nagios, the command line cannot contain macros - it must be # typed exactly as it should be executed. # # Note: Any plugins that are used in the command lines must reside # on the machine that this daemon is running on! The examples below # assume that you have plugins installed in a /usr/local/nagios/libexec # directory. Also note that you will have to modify the definitions below # to match the argument format the plugins expect. Remember, these are # examples only! command[check_users]=/usr/local/nrpe/check_users -w 5 -c 10 command[check_load]=/usr/local/nrpe/check_load -w 15,10,5 -c 30,25,20 command[check_disk1]=/usr/local/nrpe/check_disk -w 20 -c 10 -p /dev/hda1 command[check_disk2]=/usr/local/nrpe/check_disk -w 20 -c 10 -p /dev/hdb1 command[check_zombie_procs]=/usr/local/nrpe/check_procs -w 5 -c 10 -s Z command[check_total_procs]=/usr/local/nrpe/check_procs -w 150 -c 200 -- +---------------------------------------------------------------+ | Nicholas Bernstein | nick at docmagic.com | | UNIX Systems Administrator | http://www.docmagic.com | | Document Systems Inc. | | +---------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From smccool at ascendantmedia.com Fri Mar 28 20:00:51 2003 From: smccool at ascendantmedia.com (Shawn McCool) Date: Fri, 28 Mar 2003 13:00:51 -0600 Subject: Authentication Boggle REMOTE_USER References: <011b01c2f492$af2252e0$22652044@shawn> Message-ID: <00af01c2f55c$5a757a40$22652044@shawn> I made a test PHP script test.php and did print "-->" . $_SERVER['REMOTE_USER']; I did this on another machine of mine and it functioned perfectly. However on this one it is returning nothing. Does anyone know what may keep the environment variable REMOTE_USER from being set properly after a successful authentication? ----- Original Message ----- From: Shawn McCool To: nagios-users at lists.sourceforge.net Sent: Thursday, March 27, 2003 12:57 PM Subject: [Nagios-users] Authentication Boggle I'm running Suse 7.0 My httpd.conf is set up as follows ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all Alias /nagios/ /usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all my .htaccess in my /usr/local/nagios/share is AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/nagios.pwd require valid-user My password file seems to be reading right, as when i go to http://mydomain.com/nagios/index.html it prompts me for password, and I can successfully authenticate. However, in the Tactical Monitoring Overview (in the upper left grey box) it shows: Logged in as ? My cgi.cfg has use_authentication=1 And all of the authorized_for_xxxxx are set to the appropriate user. I am seeing nothing awry in neither my access_log nor my error_log. I am running apache 1.3.27 and Nagios 1.0 with Nagios Plugins 1.3.0 My Nagios dir structure looks like this: drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 bin drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 27 12:49 etc drwx------ 2 nagios nagiocmd 4.0k Mar 27 12:42 libexec drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 09:13 sbin drwxrwxr-x 8 nagios nagiocmd 4.0k Mar 27 12:49 share drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 27 12:51 var Where nagiocmd is a group which has both the nagios user and the user my apache runs as. My Nagios Share dir: -rwxr-xr-x 1 nagios nagiocmd 105 Mar 26 11:08 .htaccess drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 contexthelp drwxrwxr-x 3 nagios nagiocmd 4.0k Mar 26 08:57 docs drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 26 09:10 images -rw-rw-r-- 1 nagios nagiocmd 658 Mar 26 08:57 index.html -rw-rw-r-- 1 nagios nagiocmd 2.3k Mar 26 08:57 main.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 media -rw-rw-r-- 1 nagios nagiocmd 26 Mar 26 08:57 robots.txt -rw-rw-r-- 1 nagios nagiocmd 10k Mar 26 08:57 side.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 25 16:49 ssi drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 stylesheets Nagios SBIN: -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 avail.cgi -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 cmd.cgi -rwxrwxr-x 1 nagios nagiocmd 118k Mar 26 08:57 config.cgi -rwxrwxr-x 1 nagios nagiocmd 164k Mar 26 08:57 extinfo.cgi -rwxrwxr-x 1 nagios nagiocmd 172k Mar 26 08:57 histogram.cgi -rwxrwxr-x 1 nagios nagiocmd 108k Mar 26 08:57 history.cgi -rwxrwxr-x 1 nagios nagiocmd 105k Mar 26 08:57 notifications.cgi -rwxrwxr-x 1 nagios nagiocmd 102k Mar 26 08:57 outages.cgi -rwxrwxr-x 1 nagios nagiocmd 103k Mar 26 08:57 showlog.cgi -rwxrwxr-x 1 nagios nagiocmd 149k Mar 26 08:57 status.cgi -rwxrwxr-x 1 nagios nagiocmd 184k Mar 26 08:57 statusmap.cgi -rwxrwxr-x 1 nagios nagiocmd 119k Mar 26 08:57 statuswml.cgi -rwxrwxr-x 1 nagios nagiocmd 113k Mar 26 08:57 statuswrl.cgi -rwxrwxr-x 1 nagios nagiocmd 123k Mar 26 08:57 summary.cgi -rwxrwxr-x 1 nagios nagiocmd 127k Mar 26 08:57 tac.cgi -rwxrwxr-x 1 nagios nagiocmd 173k Mar 26 08:57 trends.cgi Nagios ETC -rwxrwxr-x 1 nagios nagiocmd 16k Mar 27 12:44 cgi.cfg -rwxrwxr-x 1 nagios nagiocmd 3.3k Mar 26 12:02 checkcommands.cfg -rwxrwxr-x 1 nagios nagiocmd 358 Mar 25 19:27 contactgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.0k Mar 25 19:26 contacts.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:09 dependencies.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:06 escalations.cfg -rwxrwxr-x 1 nagios nagiocmd 440 Mar 25 19:22 hostgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.4k Mar 25 19:20 hosts.cfg -rwxrwxr-x 1 nagios nagiocmd 3.7k Mar 25 19:05 misccommands.cfg -rwxrwxr-x 1 nagios nagiocmd 21k Mar 26 09:26 nagios.cfg -rwxrwxr-x 1 nagios nagiocmd 21 Mar 26 09:15 nagios.pwd -rwxrwxr-x 1 nagios nagiocmd 3.0k Mar 26 09:04 resource.cfg -rwxrwxr-x 1 nagios nagiocmd 1.6k Mar 26 09:09 services.cfg -rwxrwxr-x 1 nagios nagiocmd 17k Mar 25 16:49 services.cfg-sample -rwxrwxr-x 1 nagios nagiocmd 1.1k Mar 25 17:03 timeperiods.cfg If I look at any CGI other than tactical overview I get this message It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. I am not sure what is happening incorrectly in my authentication. -------------- next part -------------- An HTML attachment was scrubbed... URL: From FReimers at infosysinc.com Fri Mar 28 20:14:59 2003 From: FReimers at infosysinc.com (Fred Reimers) Date: Fri, 28 Mar 2003 14:14:59 -0500 Subject: NagMIN / Nagios Templates Message-ID: <1A76CEE962963E40926786CA468A47D3215DCF@infocoex1.infosysinc.com> Dan, I know that there are a number of different ways of doing things in Nagios. I don't see a need to support all of them. Part of the problem with administering Nagios is that there's no consistency to the configuration between engineers. I'm trying to get NagMIN automated to the point that a Tier1 level support person can make basic changes. To that end, I'm purposefully simplifying things through enhancement and elimination. I don't see any need to support templates that are also hosts, contacts or services. In my opinion, it's confusing at best and adds no value to NagMIN. This may have eased some configuration burdens in the past when editing the files directly. I think the Service Group or Port Scan features of NagMIN make more sense. My eventual goal with NagMIN is to minimize having to manually configure services at all. It just doesn't scale well. Like I mentioned earlier, I have one service defined and am using 15 of 44 templates. In one instance, I'm monitoring 344 services using PortScan and Service Groups for 72 hosts. If you need to do embedded service templates like this for special cases, you can still create Nagios configuration files and add them to nagios.cfg. You can edit them from NagMIN. Fred -----Original Message----- From: Dan Rich [mailto:drich at employees.org] Sent: Friday, March 28, 2003 1:32 PM To: Fred Reimers Subject: Re: Contact Templates Fred Reimers said: > Dan, > > I didn't know you could create contact templates!! I'll add the table in > tonight. This will help with some other stuff I'm trying to automate. I think you're going to have problems down the road though if you keep differentiating between templates and the defined data. There's nothing to stop me from defining lots of templates and building them together as I go. For example, the following is a valid config: define service{ name test-24x7 use generic-service notification_period 24x7 register 0 } define service{ name test-wcr use test-24x7 notification_options w,c,r register 0 } define service{ name ssh-test-service use test-wcr service_description SSH is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups smallservers-admin-admins notification_interval 120 notification_period 24x7 notification_options w,c,r check_command check_ssh register 0 } define service use ssh-test-service host_name myhost contact_groups test } ..... ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Fri Mar 28 20:28:26 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Fri, 28 Mar 2003 13:28:26 -0600 Subject: Authentication Boggle REMOTE_USER Message-ID: <352B04312822444A962714393AED8A4D11382D@ADAEVS01.int.chickasaw.net> > I made a test PHP script test.php and did print "-->" . $_SERVER['REMOTE_USER']; > I did this on another machine of mine and it functioned perfectly. However on this one it is returning Do you mean it works from a different workstations browser or on a different web server? > nothing. Does anyone know what may keep the environment variable REMOTE_USER from being > set properly after a successful authentication? If you're having trouble with a specific workstation/browser, it could be the browser somehow corrupting the credentials. ----- Original Message ----- From: Shawn McCool To: nagios-users at lists.sourceforge.net Sent: Thursday, March 27, 2003 12:57 PM Subject: [Nagios-users] Authentication Boggle I'm running Suse 7.0 My httpd.conf is set up as follows ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all Alias /nagios/ /usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all my .htaccess in my /usr/local/nagios/share is AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/nagios.pwd require valid-user My password file seems to be reading right, as when i go to http://mydomain.com/nagios/index.html it prompts me for password, and I can successfully authenticate. However, in the Tactical Monitoring Overview (in the upper left grey box) it shows: Logged in as ? My cgi.cfg has use_authentication=1 And all of the authorized_for_xxxxx are set to the appropriate user. I am seeing nothing awry in neither my access_log nor my error_log. I am running apache 1.3.27 and Nagios 1.0 with Nagios Plugins 1.3.0 My Nagios dir structure looks like this: drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 bin drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 27 12:49 etc drwx------ 2 nagios nagiocmd 4.0k Mar 27 12:42 libexec drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 09:13 sbin drwxrwxr-x 8 nagios nagiocmd 4.0k Mar 27 12:49 share drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 27 12:51 var Where nagiocmd is a group which has both the nagios user and the user my apache runs as. My Nagios Share dir: -rwxr-xr-x 1 nagios nagiocmd 105 Mar 26 11:08 .htaccess drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 contexthelp drwxrwxr-x 3 nagios nagiocmd 4.0k Mar 26 08:57 docs drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 26 09:10 images -rw-rw-r-- 1 nagios nagiocmd 658 Mar 26 08:57 index.html -rw-rw-r-- 1 nagios nagiocmd 2.3k Mar 26 08:57 main.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 media -rw-rw-r-- 1 nagios nagiocmd 26 Mar 26 08:57 robots.txt -rw-rw-r-- 1 nagios nagiocmd 10k Mar 26 08:57 side.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 25 16:49 ssi drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 stylesheets Nagios SBIN: -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 avail.cgi -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 cmd.cgi -rwxrwxr-x 1 nagios nagiocmd 118k Mar 26 08:57 config.cgi -rwxrwxr-x 1 nagios nagiocmd 164k Mar 26 08:57 extinfo.cgi -rwxrwxr-x 1 nagios nagiocmd 172k Mar 26 08:57 histogram.cgi -rwxrwxr-x 1 nagios nagiocmd 108k Mar 26 08:57 history.cgi -rwxrwxr-x 1 nagios nagiocmd 105k Mar 26 08:57 notifications.cgi -rwxrwxr-x 1 nagios nagiocmd 102k Mar 26 08:57 outages.cgi -rwxrwxr-x 1 nagios nagiocmd 103k Mar 26 08:57 showlog.cgi -rwxrwxr-x 1 nagios nagiocmd 149k Mar 26 08:57 status.cgi -rwxrwxr-x 1 nagios nagiocmd 184k Mar 26 08:57 statusmap.cgi -rwxrwxr-x 1 nagios nagiocmd 119k Mar 26 08:57 statuswml.cgi -rwxrwxr-x 1 nagios nagiocmd 113k Mar 26 08:57 statuswrl.cgi -rwxrwxr-x 1 nagios nagiocmd 123k Mar 26 08:57 summary.cgi -rwxrwxr-x 1 nagios nagiocmd 127k Mar 26 08:57 tac.cgi -rwxrwxr-x 1 nagios nagiocmd 173k Mar 26 08:57 trends.cgi Nagios ETC -rwxrwxr-x 1 nagios nagiocmd 16k Mar 27 12:44 cgi.cfg -rwxrwxr-x 1 nagios nagiocmd 3.3k Mar 26 12:02 checkcommands.cfg -rwxrwxr-x 1 nagios nagiocmd 358 Mar 25 19:27 contactgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.0k Mar 25 19:26 contacts.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:09 dependencies.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:06 escalations.cfg -rwxrwxr-x 1 nagios nagiocmd 440 Mar 25 19:22 hostgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.4k Mar 25 19:20 hosts.cfg -rwxrwxr-x 1 nagios nagiocmd 3.7k Mar 25 19:05 misccommands.cfg -rwxrwxr-x 1 nagios nagiocmd 21k Mar 26 09:26 nagios.cfg -rwxrwxr-x 1 nagios nagiocmd 21 Mar 26 09:15 nagios.pwd -rwxrwxr-x 1 nagios nagiocmd 3.0k Mar 26 09:04 resource.cfg -rwxrwxr-x 1 nagios nagiocmd 1.6k Mar 26 09:09 services.cfg -rwxrwxr-x 1 nagios nagiocmd 17k Mar 25 16:49 services.cfg-sample -rwxrwxr-x 1 nagios nagiocmd 1.1k Mar 25 17:03 timeperiods.cfg If I look at any CGI other than tactical overview I get this message It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. I am not sure what is happening incorrectly in my authentication. -------------- next part -------------- An HTML attachment was scrubbed... URL: From zimplton at hotmail.com Fri Mar 28 20:41:03 2003 From: zimplton at hotmail.com (Brian Lemm) Date: Fri, 28 Mar 2003 19:41:03 +0000 Subject: Issues with Graphs Message-ID: I have isntalled the gd library with support for png, jpeg, and freetype. I complied nagios and the configuration script said it found the GD libraries. When I go to the trends link and enter the information, the grid shows up but the graph on the grid is missing. It shows the virtical lines where the status changes occur but not the colored part. I ran ldd trands.cgi and I have included the results at the end. Does anyone know what could be going on. Thanks for any help Brian libgd.so.2 => /usr/local/lib/libgd.so.2 (0x4001b000) libz.so.1 => /usr/lib/libz.so.1 (0x4005c000) libm.so.6 => /lib/i686/libm.so.6 (0x4006a000) libpng.so.3 => /usr/lib/libpng.so.3 (0x4008c000) libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0x400af000) libc.so.6 => /lib/i686/libc.so.6 (0x42000000) libfreetype.so.6 => /usr/local/lib/libfreetype.so.6 (0x400cd000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000) _________________________________________________________________ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From stevelml1 at scee.sony.co.uk Fri Mar 28 20:37:54 2003 From: stevelml1 at scee.sony.co.uk (Steve Loughran) Date: Fri, 28 Mar 2003 19:37:54 -0000 Subject: Authentication Boggle REMOTE_USER References: <011b01c2f492$af2252e0$22652044@shawn> <00af01c2f55c$5a757a40$22652044@shawn> Message-ID: <00af01c2f561$87392fe0$cefe10ac@NILTXP> would the missing trailing / char in the "share" statement cause any problems? no icdea to be honest, and not at work to check.... or maybe its the extra / char on the "sbin" directory entry. or maybe the .htaccess file isnt in *BOTH* directories (I notice you only mention the .htaccess file in the "share" dir.....is there one in the "sbin" dir?.... been there, done that... far too many times!) Steve ----- Original Message ----- From: "Shawn McCool" To: Sent: Friday, March 28, 2003 7:00 PM Subject: Re: [Nagios-users] Authentication Boggle REMOTE_USER I made a test PHP script test.php and did print "-->" . $_SERVER['REMOTE_USER']; I did this on another machine of mine and it functioned perfectly. However on this one it is returning nothing. Does anyone know what may keep the environment variable REMOTE_USER from being set properly after a successful authentication? ----- Original Message ----- From: Shawn McCool To: nagios-users at lists.sourceforge.net Sent: Thursday, March 27, 2003 12:57 PM Subject: [Nagios-users] Authentication Boggle I'm running Suse 7.0 My httpd.conf is set up as follows ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all Alias /nagios/ /usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all my .htaccess in my /usr/local/nagios/share is AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/nagios.pwd require valid-user My password file seems to be reading right, as when i go to http://mydomain.com/nagios/index.html it prompts me for password, and I can successfully authenticate. However, in the Tactical Monitoring Overview (in the upper left grey box) it shows: Logged in as ? My cgi.cfg has use_authentication=1 And all of the authorized_for_xxxxx are set to the appropriate user. I am seeing nothing awry in neither my access_log nor my error_log. I am running apache 1.3.27 and Nagios 1.0 with Nagios Plugins 1.3.0 My Nagios dir structure looks like this: drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 bin drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 27 12:49 etc drwx------ 2 nagios nagiocmd 4.0k Mar 27 12:42 libexec drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 09:13 sbin drwxrwxr-x 8 nagios nagiocmd 4.0k Mar 27 12:49 share drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 27 12:51 var Where nagiocmd is a group which has both the nagios user and the user my apache runs as. My Nagios Share dir: -rwxr-xr-x 1 nagios nagiocmd 105 Mar 26 11:08 .htaccess drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 contexthelp drwxrwxr-x 3 nagios nagiocmd 4.0k Mar 26 08:57 docs drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 26 09:10 images -rw-rw-r-- 1 nagios nagiocmd 658 Mar 26 08:57 index.html -rw-rw-r-- 1 nagios nagiocmd 2.3k Mar 26 08:57 main.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 media -rw-rw-r-- 1 nagios nagiocmd 26 Mar 26 08:57 robots.txt -rw-rw-r-- 1 nagios nagiocmd 10k Mar 26 08:57 side.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 25 16:49 ssi drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 stylesheets Nagios SBIN: -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 avail.cgi -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 cmd.cgi -rwxrwxr-x 1 nagios nagiocmd 118k Mar 26 08:57 config.cgi -rwxrwxr-x 1 nagios nagiocmd 164k Mar 26 08:57 extinfo.cgi -rwxrwxr-x 1 nagios nagiocmd 172k Mar 26 08:57 histogram.cgi -rwxrwxr-x 1 nagios nagiocmd 108k Mar 26 08:57 history.cgi -rwxrwxr-x 1 nagios nagiocmd 105k Mar 26 08:57 notifications.cgi -rwxrwxr-x 1 nagios nagiocmd 102k Mar 26 08:57 outages.cgi -rwxrwxr-x 1 nagios nagiocmd 103k Mar 26 08:57 showlog.cgi -rwxrwxr-x 1 nagios nagiocmd 149k Mar 26 08:57 status.cgi -rwxrwxr-x 1 nagios nagiocmd 184k Mar 26 08:57 statusmap.cgi -rwxrwxr-x 1 nagios nagiocmd 119k Mar 26 08:57 statuswml.cgi -rwxrwxr-x 1 nagios nagiocmd 113k Mar 26 08:57 statuswrl.cgi -rwxrwxr-x 1 nagios nagiocmd 123k Mar 26 08:57 summary.cgi -rwxrwxr-x 1 nagios nagiocmd 127k Mar 26 08:57 tac.cgi -rwxrwxr-x 1 nagios nagiocmd 173k Mar 26 08:57 trends.cgi Nagios ETC -rwxrwxr-x 1 nagios nagiocmd 16k Mar 27 12:44 cgi.cfg -rwxrwxr-x 1 nagios nagiocmd 3.3k Mar 26 12:02 checkcommands.cfg -rwxrwxr-x 1 nagios nagiocmd 358 Mar 25 19:27 contactgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.0k Mar 25 19:26 contacts.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:09 dependencies.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:06 escalations.cfg -rwxrwxr-x 1 nagios nagiocmd 440 Mar 25 19:22 hostgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.4k Mar 25 19:20 hosts.cfg -rwxrwxr-x 1 nagios nagiocmd 3.7k Mar 25 19:05 misccommands.cfg -rwxrwxr-x 1 nagios nagiocmd 21k Mar 26 09:26 nagios.cfg -rwxrwxr-x 1 nagios nagiocmd 21 Mar 26 09:15 nagios.pwd -rwxrwxr-x 1 nagios nagiocmd 3.0k Mar 26 09:04 resource.cfg -rwxrwxr-x 1 nagios nagiocmd 1.6k Mar 26 09:09 services.cfg -rwxrwxr-x 1 nagios nagiocmd 17k Mar 25 16:49 services.cfg-sample -rwxrwxr-x 1 nagios nagiocmd 1.1k Mar 25 17:03 timeperiods.cfg If I look at any CGI other than tactical overview I get this message It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. I am not sure what is happening incorrectly in my authentication. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Fri Mar 28 20:42:50 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Fri, 28 Mar 2003 13:42:50 -0600 Subject: Authentication Boggle REMOTE_USER Message-ID: <352B04312822444A962714393AED8A4D11382E@ADAEVS01.int.chickasaw.net> >or maybe the .htaccess file isnt in *BOTH* directories (I notice you only mention the >.htaccess file in the "share" dir.....is there one in the "sbin" dir?.... been there, >done that... far too many times!) This is correct this could very well be your problem -----Original Message----- From: Steve Loughran [mailto:stevelml1 at scee.sony.co.uk] Sent: Friday, March 28, 2003 1:38 PM To: Nagios Users; Shawn McCool Subject: Re: [Nagios-users] Authentication Boggle REMOTE_USER would the missing trailing / char in the "share" statement cause any problems? no icdea to be honest, and not at work to check.... or maybe its the extra / char on the "sbin" directory entry. or maybe the .htaccess file isnt in *BOTH* directories (I notice you only mention the .htaccess file in the "share" dir.....is there one in the "sbin" dir?.... been there, done that... far too many times!) Steve ----- Original Message ----- From: "Shawn McCool" To: Sent: Friday, March 28, 2003 7:00 PM Subject: Re: [Nagios-users] Authentication Boggle REMOTE_USER I made a test PHP script test.php and did print "-->" . $_SERVER['REMOTE_USER']; I did this on another machine of mine and it functioned perfectly. However on this one it is returning nothing. Does anyone know what may keep the environment variable REMOTE_USER from being set properly after a successful authentication? ----- Original Message ----- From: Shawn McCool To: nagios-users at lists.sourceforge.net Sent: Thursday, March 27, 2003 12:57 PM Subject: [Nagios-users] Authentication Boggle I'm running Suse 7.0 My httpd.conf is set up as follows ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ AllowOverride AuthConfig Options ExecCGI Order allow,deny Allow from all Alias /nagios/ /usr/local/nagios/share/ Options None AllowOverride AuthConfig Order allow,deny Allow from all my .htaccess in my /usr/local/nagios/share is AuthName "Nagios Access" AuthType Basic AuthUserFile /usr/local/nagios/etc/nagios.pwd require valid-user My password file seems to be reading right, as when i go to http://mydomain.com/nagios/index.html it prompts me for password, and I can successfully authenticate. However, in the Tactical Monitoring Overview (in the upper left grey box) it shows: Logged in as ? My cgi.cfg has use_authentication=1 And all of the authorized_for_xxxxx are set to the appropriate user. I am seeing nothing awry in neither my access_log nor my error_log. I am running apache 1.3.27 and Nagios 1.0 with Nagios Plugins 1.3.0 My Nagios dir structure looks like this: drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 bin drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 27 12:49 etc drwx------ 2 nagios nagiocmd 4.0k Mar 27 12:42 libexec drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 09:13 sbin drwxrwxr-x 8 nagios nagiocmd 4.0k Mar 27 12:49 share drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 27 12:51 var Where nagiocmd is a group which has both the nagios user and the user my apache runs as. My Nagios Share dir: -rwxr-xr-x 1 nagios nagiocmd 105 Mar 26 11:08 .htaccess drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 contexthelp drwxrwxr-x 3 nagios nagiocmd 4.0k Mar 26 08:57 docs drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 26 09:10 images -rw-rw-r-- 1 nagios nagiocmd 658 Mar 26 08:57 index.html -rw-rw-r-- 1 nagios nagiocmd 2.3k Mar 26 08:57 main.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 media -rw-rw-r-- 1 nagios nagiocmd 26 Mar 26 08:57 robots.txt -rw-rw-r-- 1 nagios nagiocmd 10k Mar 26 08:57 side.html drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 25 16:49 ssi drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 stylesheets Nagios SBIN: -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 avail.cgi -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 cmd.cgi -rwxrwxr-x 1 nagios nagiocmd 118k Mar 26 08:57 config.cgi -rwxrwxr-x 1 nagios nagiocmd 164k Mar 26 08:57 extinfo.cgi -rwxrwxr-x 1 nagios nagiocmd 172k Mar 26 08:57 histogram.cgi -rwxrwxr-x 1 nagios nagiocmd 108k Mar 26 08:57 history.cgi -rwxrwxr-x 1 nagios nagiocmd 105k Mar 26 08:57 notifications.cgi -rwxrwxr-x 1 nagios nagiocmd 102k Mar 26 08:57 outages.cgi -rwxrwxr-x 1 nagios nagiocmd 103k Mar 26 08:57 showlog.cgi -rwxrwxr-x 1 nagios nagiocmd 149k Mar 26 08:57 status.cgi -rwxrwxr-x 1 nagios nagiocmd 184k Mar 26 08:57 statusmap.cgi -rwxrwxr-x 1 nagios nagiocmd 119k Mar 26 08:57 statuswml.cgi -rwxrwxr-x 1 nagios nagiocmd 113k Mar 26 08:57 statuswrl.cgi -rwxrwxr-x 1 nagios nagiocmd 123k Mar 26 08:57 summary.cgi -rwxrwxr-x 1 nagios nagiocmd 127k Mar 26 08:57 tac.cgi -rwxrwxr-x 1 nagios nagiocmd 173k Mar 26 08:57 trends.cgi Nagios ETC -rwxrwxr-x 1 nagios nagiocmd 16k Mar 27 12:44 cgi.cfg -rwxrwxr-x 1 nagios nagiocmd 3.3k Mar 26 12:02 checkcommands.cfg -rwxrwxr-x 1 nagios nagiocmd 358 Mar 25 19:27 contactgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.0k Mar 25 19:26 contacts.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:09 dependencies.cfg -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:06 escalations.cfg -rwxrwxr-x 1 nagios nagiocmd 440 Mar 25 19:22 hostgroups.cfg -rwxrwxr-x 1 nagios nagiocmd 1.4k Mar 25 19:20 hosts.cfg -rwxrwxr-x 1 nagios nagiocmd 3.7k Mar 25 19:05 misccommands.cfg -rwxrwxr-x 1 nagios nagiocmd 21k Mar 26 09:26 nagios.cfg -rwxrwxr-x 1 nagios nagiocmd 21 Mar 26 09:15 nagios.pwd -rwxrwxr-x 1 nagios nagiocmd 3.0k Mar 26 09:04 resource.cfg -rwxrwxr-x 1 nagios nagiocmd 1.6k Mar 26 09:09 services.cfg -rwxrwxr-x 1 nagios nagiocmd 17k Mar 25 16:49 services.cfg-sample -rwxrwxr-x 1 nagios nagiocmd 1.1k Mar 25 17:03 timeperiods.cfg If I look at any CGI other than tactical overview I get this message It appears as though you do not have permission to view information for any of the hosts you requested... If you believe this is an error, check the HTTP server authentication requirements for accessing this CGI and check the authorization options in your CGI configuration file. I am not sure what is happening incorrectly in my authentication. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chris at in-motion.net Fri Mar 28 20:46:21 2003 From: chris at in-motion.net (Chris Brown) Date: Fri, 28 Mar 2003 14:46:21 -0500 Subject: check_ping won't timeout Message-ID: <5.1.0.14.2.20030328144143.01baa290@pop3.in-motion.net> I have about 100 check_ping commands in my nagios configuration. When I remove the ethernet cable from one of my hosts that it is trying to "check_ping", the nagios system hangs and waits for that ping to timeout. When I do some investigation, the command it is executing is: /bin/ping -n -U -c 5 10.1.1.1 In other words, on RedHat, the -c parameter in ping waits for the count. How can I modify this command to use -w instead of -c ? The only thing I can see that I can modify is the check_ping command parameters, not the command it is actually executing. Or, how can I make it timeout correctly? Thank you, Chris Brown chris at in-motion.net ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chad.white at med.ge.com Fri Mar 28 21:10:10 2003 From: chad.white at med.ge.com (White, Chad (MED)) Date: Fri, 28 Mar 2003 12:10:10 -0800 Subject: Issues with Graphs In-Reply-To: References: Message-ID: <47075A1A-6159-11D7-A75C-000A95775192@med.ge.com> On Friday, March 28, 2003, at 11:41 AM, Brian Lemm wrote: > I have isntalled the gd library with support for png, jpeg, and > freetype. I complied nagios and the configuration script said it > found the GD libraries. When I go to the trends link and enter the > information, the grid shows up but the graph on the grid is missing. > It shows the virtical lines where the status changes occur but not the > colored part. I ran ldd trands.cgi and I have included the results at > the end. Does anyone know what could be going on. > Sorry I can't help, but I am having the exact same problem. In my case, it is Nagios 1.0, running on Solaris 8 SPARC. The graphs and histograms show up, but they are empty. I figured it was something wrong with my cgi.cfg but I haven't found anything yet. thx, Chad White Systems Administrator GE Medical Systems - IT chad.white at med.ge.com Visit us at http://www.gemedicalsystems.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From frank.gadot at epscorp.com Fri Mar 28 21:13:11 2003 From: frank.gadot at epscorp.com (Frank Gadot) Date: 28 Mar 2003 15:13:11 -0500 Subject: New user Message-ID: <1048882390.21941.7.camel@localhost> Hi ! I just installed NAGIOS, it is GREAT ! I was wondering if there is any plugin or addon that would allow me to create a configuration file from SCRATCH ? If no, and if there is some volunteers, I'd like to work on a binary application (I am not that good with PHP) that would allow a user to create all the basic files. Frank ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From smccool at ascendantmedia.com Fri Mar 28 22:03:45 2003 From: smccool at ascendantmedia.com (Shawn McCool) Date: Fri, 28 Mar 2003 15:03:45 -0600 Subject: Authentication Boggle REMOTE_USER References: <011b01c2f492$af2252e0$22652044@shawn> <00af01c2f55c$5a757a40$22652044@shawn> <00af01c2f561$87392fe0$cefe10ac@NILTXP> Message-ID: <00f501c2f56d$85bbc130$22652044@shawn> Thanks, put the .htaccess in sbin and it works great. Appreciated. ----- Original Message ----- From: "Steve Loughran" To: "Nagios Users" ; "Shawn McCool" Sent: Friday, March 28, 2003 1:37 PM Subject: Re: [Nagios-users] Authentication Boggle REMOTE_USER > > > > > would the missing trailing / char in the "share" statement cause any > problems? no icdea to be honest, and not at work to check.... or maybe its > the extra / char on the "sbin" directory entry. > > or maybe the .htaccess file isnt in *BOTH* directories (I notice you only > mention the .htaccess file in the "share" dir.....is there one in the "sbin" > dir?.... been there, done that... far too many times!) > > Steve > > > ----- Original Message ----- > From: "Shawn McCool" > To: > Sent: Friday, March 28, 2003 7:00 PM > Subject: Re: [Nagios-users] Authentication Boggle REMOTE_USER > > > I made a test PHP script test.php and did print "-->" . > $_SERVER['REMOTE_USER']; > > I did this on another machine of mine and it functioned perfectly. However > on this one it is returning > nothing. Does anyone know what may keep the environment variable > REMOTE_USER from being > set properly after a successful authentication? > ----- Original Message ----- > From: Shawn McCool > To: nagios-users at lists.sourceforge.net > Sent: Thursday, March 27, 2003 12:57 PM > Subject: [Nagios-users] Authentication Boggle > > > I'm running Suse 7.0 > My httpd.conf is set up as follows > > ScriptAlias /nagios/cgi-bin/ /usr/local/nagios/sbin/ > > AllowOverride AuthConfig > Options ExecCGI > Order allow,deny > Allow from all > > > Alias /nagios/ /usr/local/nagios/share/ > > Options None > AllowOverride AuthConfig > Order allow,deny > Allow from all > > > my .htaccess in my /usr/local/nagios/share is > > AuthName "Nagios Access" > AuthType Basic > AuthUserFile /usr/local/nagios/etc/nagios.pwd > require valid-user > > > My password file seems to be reading right, as when i go to > http://mydomain.com/nagios/index.html > it prompts me for password, and I can successfully authenticate. However, > in the Tactical Monitoring Overview (in the upper left grey box) it shows: > > Logged in as ? > > My cgi.cfg has > > use_authentication=1 > > And all of the authorized_for_xxxxx are set to the appropriate user. > > I am seeing nothing awry in neither my access_log nor my error_log. > > I am running apache 1.3.27 and Nagios 1.0 with Nagios Plugins 1.3.0 > > My Nagios dir structure looks like this: > > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 bin > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 27 12:49 etc > drwx------ 2 nagios nagiocmd 4.0k Mar 27 12:42 libexec > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 09:13 sbin > drwxrwxr-x 8 nagios nagiocmd 4.0k Mar 27 12:49 share > drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 27 12:51 var > > > > Where nagiocmd is a group which has both the nagios user and the user my > apache runs as. > > My Nagios Share dir: > > -rwxr-xr-x 1 nagios nagiocmd 105 Mar 26 11:08 .htaccess > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 contexthelp > drwxrwxr-x 3 nagios nagiocmd 4.0k Mar 26 08:57 docs > drwxrwxr-x 4 nagios nagiocmd 4.0k Mar 26 09:10 images > -rw-rw-r-- 1 nagios nagiocmd 658 Mar 26 08:57 index.html > -rw-rw-r-- 1 nagios nagiocmd 2.3k Mar 26 08:57 main.html > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 media > -rw-rw-r-- 1 nagios nagiocmd 26 Mar 26 08:57 robots.txt > -rw-rw-r-- 1 nagios nagiocmd 10k Mar 26 08:57 side.html > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 25 16:49 ssi > drwxrwxr-x 2 nagios nagiocmd 4.0k Mar 26 08:57 stylesheets > > Nagios SBIN: > > -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 avail.cgi > -rwxrwxr-x 1 nagios nagiocmd 150k Mar 26 08:57 cmd.cgi > -rwxrwxr-x 1 nagios nagiocmd 118k Mar 26 08:57 config.cgi > -rwxrwxr-x 1 nagios nagiocmd 164k Mar 26 08:57 extinfo.cgi > -rwxrwxr-x 1 nagios nagiocmd 172k Mar 26 08:57 histogram.cgi > -rwxrwxr-x 1 nagios nagiocmd 108k Mar 26 08:57 history.cgi > -rwxrwxr-x 1 nagios nagiocmd 105k Mar 26 08:57 notifications.cgi > -rwxrwxr-x 1 nagios nagiocmd 102k Mar 26 08:57 outages.cgi > -rwxrwxr-x 1 nagios nagiocmd 103k Mar 26 08:57 showlog.cgi > -rwxrwxr-x 1 nagios nagiocmd 149k Mar 26 08:57 status.cgi > -rwxrwxr-x 1 nagios nagiocmd 184k Mar 26 08:57 statusmap.cgi > -rwxrwxr-x 1 nagios nagiocmd 119k Mar 26 08:57 statuswml.cgi > -rwxrwxr-x 1 nagios nagiocmd 113k Mar 26 08:57 statuswrl.cgi > -rwxrwxr-x 1 nagios nagiocmd 123k Mar 26 08:57 summary.cgi > -rwxrwxr-x 1 nagios nagiocmd 127k Mar 26 08:57 tac.cgi > -rwxrwxr-x 1 nagios nagiocmd 173k Mar 26 08:57 trends.cgi > > Nagios ETC > > -rwxrwxr-x 1 nagios nagiocmd 16k Mar 27 12:44 cgi.cfg > -rwxrwxr-x 1 nagios nagiocmd 3.3k Mar 26 12:02 checkcommands.cfg > -rwxrwxr-x 1 nagios nagiocmd 358 Mar 25 19:27 contactgroups.cfg > -rwxrwxr-x 1 nagios nagiocmd 1.0k Mar 25 19:26 contacts.cfg > -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:09 dependencies.cfg > -rwxrwxr-x 1 nagios nagiocmd 670 Mar 26 09:06 escalations.cfg > -rwxrwxr-x 1 nagios nagiocmd 440 Mar 25 19:22 hostgroups.cfg > -rwxrwxr-x 1 nagios nagiocmd 1.4k Mar 25 19:20 hosts.cfg > -rwxrwxr-x 1 nagios nagiocmd 3.7k Mar 25 19:05 misccommands.cfg > -rwxrwxr-x 1 nagios nagiocmd 21k Mar 26 09:26 nagios.cfg > -rwxrwxr-x 1 nagios nagiocmd 21 Mar 26 09:15 nagios.pwd > -rwxrwxr-x 1 nagios nagiocmd 3.0k Mar 26 09:04 resource.cfg > -rwxrwxr-x 1 nagios nagiocmd 1.6k Mar 26 09:09 services.cfg > -rwxrwxr-x 1 nagios nagiocmd 17k Mar 25 16:49 services.cfg-sample > -rwxrwxr-x 1 nagios nagiocmd 1.1k Mar 25 17:03 timeperiods.cfg > > > If I look at any CGI other than tactical overview I get this message > > It appears as though you do not have permission to view information for > any of the hosts you requested... > If you believe this is an error, check the HTTP server authentication > requirements for accessing this CGI > and check the authorization options in your CGI configuration file. > > > I am not sure what is happening incorrectly in my authentication. > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From crash at pinehurst.net Fri Mar 28 22:10:20 2003 From: crash at pinehurst.net (Jeff Lane) Date: Fri, 28 Mar 2003 16:10:20 -0500 Subject: New to this Message-ID: <3E84BA3C.7030605@pinehurst.net> Hey all, I just got nagios going, and love it so far... but I have run into a couple snags... First of all, what do I need to do to get the 3d maps running? in other words, I know I need VRML browser and such, but what is there available for Linux specifically? second, is there any way to get the check_http to check a certain port? I am trying to run it against a server with webmin installed, BUT it is only checking port 80. Since the only web service on that machine is webmin, on a completely different port, it is giving critical warnings... Thanks Jeff -- Jeffrey Lane ConnectNC.com / Internet of the Sandhills W4KDH at arrl.net chown -r us:us /yourbase/ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Fri Mar 28 23:55:50 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Fri, 28 Mar 2003 17:55:50 -0500 (EST) Subject: New to this In-Reply-To: <3E84BA3C.7030605@pinehurst.net> References: <3E84BA3C.7030605@pinehurst.net> Message-ID: On Fri, 28 Mar 2003, Jeff Lane wrote: > Hey all, > > I just got nagios going, and love it so far... but I have run into a > couple snags... > > First of all, what do I need to do to get the 3d maps running? in other > words, I know I need VRML browser and such, but what is there available > for Linux specifically? Google > > second, is there any way to get the check_http to check a certain port? > I am trying to run it against a server with webmin installed, BUT it > is only checking port 80. Since the only web service on that machine is > webmin, on a completely different port, it is giving critical warnings... ./check_http -h (works for most, if not all, plugins) help on all the possible options... -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sandromergvaz at uol.com.br Sat Mar 29 00:49:32 2003 From: sandromergvaz at uol.com.br (Sandro Vaz (UOL)) Date: Fri, 28 Mar 2003 20:49:32 -0300 Subject: RES: New to this In-Reply-To: References: Message-ID: Jeff: With a little bit more of patience (6 months ago I was a new user...) A) Look at Nagios docs. They are pretty good. B) Search at the Nagios FAQ (to your specific VRML doubt look at http://www.nagios.org/faqs/viewfaq.php?faq_id=52). C) Google, Google, Google. D) Think about the problem, take your chance trying to solve yourself. E) Send an e-mail to this list, sending all information about the problem (our cristal balls are, most of the time, off). F) Always remember that you (and all of us) are taking other people's time. G) And finnaly, do not send 10 e-mails about the same problem in one day. People here are free to help, or they/we prefer to drink a beer sometimes. I have seen some people doing this here, and I believe that's the worst way to get help (that's not your case). I'd wish that there should be a way to pop these lines before clicking the "Send" button, for our always welcome Nagios new users. HTH, Sandro Vaz -----Mensagem original----- De: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] Em nome de Subhendu Ghosh Enviada em: sexta-feira, 28 de mar?o de 2003 19:56 Para: nagios-users at lists.sourceforge.net Assunto: Re: [Nagios-users] New to this On Fri, 28 Mar 2003, Jeff Lane wrote: > Hey all, > > I just got nagios going, and love it so far... but I have run into a > couple snags... > > First of all, what do I need to do to get the 3d maps running? in > other > words, I know I need VRML browser and such, but what is there available > for Linux specifically? Google > > second, is there any way to get the check_http to check a certain port? > I am trying to run it against a server with webmin installed, BUT it > is only checking port 80. Since the only web service on that machine is > webmin, on a completely different port, it is giving critical warnings... ./check_http -h (works for most, if not all, plugins) help on all the possible options... -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.465 / Virus Database: 263 - Release Date: 25/3/2003 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.465 / Virus Database: 263 - Release Date: 25/3/2003 ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tstocking at insynccom.com Sat Mar 29 01:52:27 2003 From: tstocking at insynccom.com (Thomas Stocking) Date: Fri, 28 Mar 2003 16:52:27 -0800 Subject: Trends & Availability not working Message-ID: <001b01c2f58d$78e6ca20$6601a8c0@olympus.insynccom.com> Nicholas, You should be sure that if you are using "Assume State", that you set the initial state to OK. That problem gave me pause until I played with the options for a while... Thomas Thomas Stocking, GCIA, GCIH Captech Partners thomas at captech.com http://www.captech.com (415) 507-9267 When I go into trends or Availability and do a report for the last 24 hours (I've only had it up for 24hrs), the host or service is listed as Indeterminate: (100.0%). If I go to Host Detail, the get either UP "(Host assumed to be up)" or "PING OK- Packet loss = 0%m RTA = .65". Where should I start looking to troubleshoot this? Thanks! -- +---------------------------------------------------------------+ | Nicholas Bernstein | nick at docmagic.com | | UNIX Systems Administrator | http://www.docmagic.com | | Document Systems Inc. | | +---------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tstocking at insynccom.com Sat Mar 29 02:06:23 2003 From: tstocking at insynccom.com (Thomas Stocking) Date: Fri, 28 Mar 2003 17:06:23 -0800 Subject: check_ping won't timeout Message-ID: <002201c2f58f$6b5bc520$6601a8c0@olympus.insynccom.com> Chris, I would use check_fping. It's faster, and seems less prone to this sort of thing. Thomas Thomas Stocking, GCIA, GCIH Captech Partners thomas at captech.com http://www.captech.com (415) 507-9267 Date: Fri, 28 Mar 2003 14:46:21 -0500 To: nagios-users at lists.sourceforge.net From: Chris Brown Subject: [Nagios-users] check_ping won't timeout I have about 100 check_ping commands in my nagios configuration. When I remove the ethernet cable from one of my hosts that it is trying to "check_ping", the nagios system hangs and waits for that ping to timeout. When I do some investigation, the command it is executing is: /bin/ping -n -U -c 5 10.1.1.1 In other words, on RedHat, the -c parameter in ping waits for the count. How can I modify this command to use -w instead of -c ? The only thing I can see that I can modify is the check_ping command parameters, not the command it is actually executing. Or, how can I make it timeout correctly? Thank you, Chris Brown chris at in-motion.net ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ofb at mail.budget-tech.com Sat Mar 29 03:58:23 2003 From: ofb at mail.budget-tech.com (Olivier Beauchemin) Date: Fri, 28 Mar 2003 21:58:23 -0500 Subject: Distributed Nagios Message-ID: <200303282158.AA49283742@mail.budget-tech.com> Anyone? ### Has anyone out there ever used Nagios in distributed mode, with an HA central server? I have someone who is interested in a 10 remote site --> 1 NOC setup with about 1,200 servers across the network. ...just ping to start, more later. Thoughts? Ideas? Warnings? Thanks, Olivier ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From rplewe at hpce.nec.com Sat Mar 29 08:38:55 2003 From: rplewe at hpce.nec.com (Rasmus Plewe) Date: Sat, 29 Mar 2003 08:38:55 +0100 Subject: New user In-Reply-To: <1048882390.21941.7.camel@localhost>; from frank.gadot@epscorp.com on Fri, Mar 28, 2003 at 03:13:11PM -0500 References: <1048882390.21941.7.camel@localhost> Message-ID: <20030329083855.A1555@hpce.nec.com> On Fri, Mar 28, 2003 at 03:13:11PM -0500, Frank Gadot wrote: > Hi ! > > I just installed NAGIOS, it is GREAT ! > I was wondering if there is any plugin or addon that would allow me to > create a configuration file from SCRATCH ? There are lots. I prefer emacs myself, but you should be fine with vi or any other editor, too. Rasmus ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From oliver.devnull at gmx.net Sat Mar 29 15:21:46 2003 From: oliver.devnull at gmx.net (Oliver Thieke) Date: Sat, 29 Mar 2003 15:21:46 +0100 Subject: Nagios/Nagios Plugins Solaris 8 packages available In-Reply-To: <20030327215617.GA19420@ncf.ca> References: <20030327215617.GA19420@ncf.ca> Message-ID: <5.1.0.14.0.20030328163625.00af4ec0@pop.gmx.net> Hi Andre and List ! > I have packaged sparc and intel binaries for Solaris 8 > via the Blastwave.org "CSW" (Community SoftWare for > Solaris) project. > CSWnagios (1.0) - nagios > CSWnagiosp (1.30) - nagios plugins including mysql, ldap, snmp, nrpe > I hope they are of some use. Definetly ! Nice work ! Came right in time for me since I don't have compile environ available on SUN (yet)... Just 2 follow-up questions: - Is there (somewhere) also a sparc/solaris 2.6 package available ? (yep.... not only 'incomplete' environ but also one with two os-versions ;-) ) - I thought the plugin-package would install independently... I just want to monitor the sun boxes, Nagios server will live on a LX machine - hence according to my current knowledge I would just need NRPE and some plugins (all stuffed into CSWnagiosp) for the sun amchines. But when I install CSWnagiosp with pkadd I get: "WARNING: The package "nagios - nagios network monitoring base package (no plugins)" is a prerequisite package and should be installed." Can I just skip that or shall I install also the (in my case unneeded) base package ? Thanx for your help in advance. Greetings from the city without the wall. Oliver ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Frank.Gadot at epscorp.com Sat Mar 29 18:13:09 2003 From: Frank.Gadot at epscorp.com (Gadot, Frank) Date: Sat, 29 Mar 2003 12:13:09 -0500 Subject: New user Message-ID: <12C29B3FAC79184F91211AAFA94A2C1704D5B2@ns07.epscorp.com> SGkgIQ0KIA0KSSB3YXMgbm90IHRhbGtpbmcgYWJvdXQgYW4gZWRpdG9yLCBidXQgYSBraW5kIG9m IHNoZWxsIHNjcmlwdCBvciBiaW5hcnkgcHJvZ3JhbSB0aGF0IHdvdWxkIGRvIGl0Lg0KSWYgc29t ZW9uZSBpcyByZWFkeSB0byBnaXZlIG1lIGEgaGFuZCwgSSB3b3VsZCBlbmpveS4gSWYgbm90LCBJ IHdvdWxkIHdvcmsgb24gdGhhdCBpbiBhIGNvdXBsZSBvZiBtb250aCBhbmQgbGV0IHlvdSBrbm93 LiBJIHBsYW4gb24gdXNpbmcgS1lMSVguDQogDQpGcmFuaw0KDQoJLS0tLS1PcmlnaW5hbCBNZXNz YWdlLS0tLS0gDQoJRnJvbTogUmFzbXVzIFBsZXdlIFttYWlsdG86cnBsZXdlQGhwY2UubmVjLmNv bV0gDQoJU2VudDogU2F0IDMvMjkvMjAwMyAyOjM4IEFNIA0KCVRvOiBOYWdpb3MgdXNlcnMgbGlz dCANCglDYzogDQoJU3ViamVjdDogUmU6IFtOYWdpb3MtdXNlcnNdIE5ldyB1c2VyDQoJDQoJDQoN CglPbiBGcmksIE1hciAyOCwgMjAwMyBhdCAwMzoxMzoxMVBNIC0wNTAwLCBGcmFuayBHYWRvdCB3 cm90ZToNCgk+IEhpICENCgk+DQoJPiBJIGp1c3QgaW5zdGFsbGVkIE5BR0lPUywgaXQgaXMgR1JF QVQgIQ0KCT4gSSB3YXMgd29uZGVyaW5nIGlmIHRoZXJlIGlzIGFueSBwbHVnaW4gb3IgYWRkb24g dGhhdCB3b3VsZCBhbGxvdyBtZSB0bw0KCT4gY3JlYXRlIGEgY29uZmlndXJhdGlvbiBmaWxlIGZy b20gU0NSQVRDSCA/DQoJDQoJVGhlcmUgYXJlIGxvdHMuIEkgcHJlZmVyIGVtYWNzIG15c2VsZiwg YnV0IHlvdSBzaG91bGQgYmUgZmluZSB3aXRoIHZpDQoJb3IgYW55IG90aGVyIGVkaXRvciwgdG9v Lg0KCQ0KCQ0KCVJhc211cw0KCQ0KCQ0KCS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCglUaGlzIFNGLm5ldCBlbWFpbCBpcyBzcG9uc29yZWQg Ynk6DQoJVGhlIERlZmluaXRpdmUgSVQgYW5kIE5ldHdvcmtpbmcgRXZlbnQuIEJlIFRoZXJlIQ0K CU5ldFdvcmxkK0ludGVyb3AgTGFzIFZlZ2FzIDIwMDMgLS0gUmVnaXN0ZXIgdG9kYXkhDQoJaHR0 cDovL2Fkcy5zb3VyY2Vmb3JnZS5uZXQvY2dpLWJpbi9yZWRpcmVjdC5wbD9rZXluMDAwMWVuDQoJ X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18NCglOYWdpb3Mt dXNlcnMgbWFpbGluZyBsaXN0DQoJTmFnaW9zLXVzZXJzQGxpc3RzLnNvdXJjZWZvcmdlLm5ldA0K CWh0dHBzOi8vbGlzdHMuc291cmNlZm9yZ2UubmV0L2xpc3RzL2xpc3RpbmZvL25hZ2lvcy11c2Vy cw0KCTo6OiBQbGVhc2UgaW5jbHVkZSBOYWdpb3MgdmVyc2lvbiwgcGx1Z2luIHZlcnNpb24gKC12 KSBhbmQgT1Mgd2hlbiByZXBvcnRpbmcgYW55IGlzc3VlLg0KCTo6OiBNZXNzYWdlcyB3aXRob3V0 IHN1cHBvcnRpbmcgaW5mbyB3aWxsIHJpc2sgYmVpbmcgc2VudCB0byAvZGV2L251bGwNCgkNCg0K ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From felix at pz4.org Sat Mar 29 20:51:01 2003 From: felix at pz4.org (matrix4050) Date: 29 Mar 2003 19:51:01 -0000 Subject: ping UNKNOWN status Message-ID: <20030329195101.20303.qmail@pod-163.dolphin-server.co.uk> Hello, The check_ping command doesn't seem to work with nagios. The "Status Information" is "/bin/ping -n -U -c 5 IP_HERE" and the STATUS of my ping command is UNKNOWN even though i tried to execute the above command manually and I got all the correct output. Here is how my ping command looks in service.cfg: define service{ use generic-service ; Name of service template to use host_name domain.com service_description PING is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups linux-admins notification_interval 240 notification_period 24x7 notification_options c,r check_command check_ping!100.0,20%!500.0,60% } And checkcommands.cfg: define command{ command_name check_ping command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 } Thank You for the help in advance. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From felix at pz4.org Sat Mar 29 21:54:51 2003 From: felix at pz4.org (Felix F.) Date: Sat, 29 Mar 2003 15:54:51 -0500 Subject: ping UNKNOWN status Message-ID: <000101c2f635$7329e420$6e01a8c0@xp> Hello, The check_ping command doesn't seem to work with nagios. The "Status Information" is "/bin/ping -n -U -c 5 IP_HERE" and the STATUS of my ping command is UNKNOWN even though i tried to execute the above command manually and I got all the correct output. Here is how my ping command looks in service.cfg: define service{ use generic-service ; Name of service template to use host_name domain.com service_description PING is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 5 retry_check_interval 1 contact_groups linux-admins notification_interval 240 notification_period 24x7 notification_options c,r check_command check_ping!100.0,20%!500.0,60% } And checkcommands.cfg: define command{ command_name check_ping command_line $USER1$/check_ping -H $HOSTADDRESS$ -w $ARG1$ -c $ARG2$ -p 5 } Thank You for the help in advance. -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant_video at yahoo.com Sun Mar 30 04:51:36 2003 From: prashant_video at yahoo.com (Prashant Desai) Date: Sat, 29 Mar 2003 18:51:36 -0800 (PST) Subject: Compile Error on Redhat 7.3 Message-ID: <20030330025136.89370.qmail@web14701.mail.yahoo.com> HI all i am trying to compile the nagios-1.0 on the Redhat linux 7.3, but while make all , itrs giving this error gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c getcgi.o cgiutils.o auth.o popen.o ../common/object s.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/xsddefault.c -lgd -lz -lm -lpng -ljpeg ed ata.o ../xdata/xedtemplate.c -o statusmap.cgi /usr/bin/ld: Dwarf Error: Invalid or unhandled FORM value: 14. /tmp/ccOqawMU.o: In function `load_image_from_file': /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: undefined reference to `gdImageCreateFromJpeg' collect2: ld returned 1 exit status make[1]: *** [statusmap.cgi] Error 1 make[1]: Leaving directory `/home/prashant/nms/nagios-1.0/cgi' make: *** [all] Error 2 i have checked that all the pre-requisite is installed on the system, kindly some one pls guide me on this regards Prashant __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Sun Mar 30 05:39:08 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 29 Mar 2003 22:39:08 -0500 Subject: Compile Error on Redhat 7.3 In-Reply-To: <20030330025136.89370.qmail@web14701.mail.yahoo.com> References: <20030330025136.89370.qmail@web14701.mail.yahoo.com> Message-ID: <1048995548.1531.25.camel@miles.debisschop.net> On Sat, 2003-03-29 at 21:51, Prashant Desai wrote: > HI all > > i am trying to compile the nagios-1.0 on the > Redhat linux 7.3, but while make all , itrs giving > this error > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > getcgi.o cgiutils.o auth.o popen.o ../common/object > s.c ../xdata/xodtemplate.c ../common/statusdata.c > ../xdata/xsddefault.c -lgd -lz -lm -lpng -ljpeg ed > ata.o ../xdata/xedtemplate.c -o statusmap.cgi > /usr/bin/ld: Dwarf Error: Invalid or unhandled FORM > value: 14. > /tmp/ccOqawMU.o: In function `load_image_from_file': > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > undefined reference to `gdImageCreateFromJpeg' > collect2: ld returned 1 exit status > make[1]: *** [statusmap.cgi] Error 1 > make[1]: Leaving directory > `/home/prashant/nms/nagios-1.0/cgi' > make: *** [all] Error 2 > > > i have checked that all the pre-requisite is > installed on the system, > > kindly some one pls guide me on this While you say that you are sure the prereqs are installed, I doubt this. Be sure that gd-devel and ligjpeg-devel are installed. (IIRC, you also need freetype-devel, but I don't think this is your problem). -- Karl ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Sun Mar 30 05:36:13 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 29 Mar 2003 22:36:13 -0500 Subject: ping UNKNOWN status In-Reply-To: <20030329195101.20303.qmail@pod-163.dolphin-server.co.uk> References: <20030329195101.20303.qmail@pod-163.dolphin-server.co.uk> Message-ID: <1048995373.1527.21.camel@miles.debisschop.net> On Sat, 2003-03-29 at 14:51, matrix4050 wrote: > Hello, > > The check_ping command doesn't seem to work with nagios. > > The "Status Information" is "/bin/ping -n -U -c 5 IP_HERE" and the STATUS of my ping command is UNKNOWN even though i tried to execute the above command manually and I got all the correct output. Someone recently had a similar problem, and discovered thar resource.cfg was not rreadble by nagios. Also, when you ran the command, was it as nagios? Some systems place limits on who can execute ping, and nagios is typically confugured as a non-priveleged user (it should be configured as such for security reasons). BTW, you later post was not needed, and the HTML should be avoided as well. Waiting a few hours for an answer to appear on a weekend should not be too much of a trial for you, especially given how much you have paid for the support. -- Karl ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From preety1202002 at yahoo.com Sun Mar 30 05:52:58 2003 From: preety1202002 at yahoo.com (mary konadu) Date: Sat, 29 Mar 2003 19:52:58 -0800 (PST) Subject: nagios-users Message-ID: <20030330035258.23928.qmail@web14808.mail.yahoo.com> i want to be able to go to ghanachat.com without difficulties --------------------------------- Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! -------------- next part -------------- An HTML attachment was scrubbed... URL: From karl at debisschop.net Sun Mar 30 15:38:47 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 30 Mar 2003 08:38:47 -0500 Subject: ping UNKNOWN status In-Reply-To: <000201c2f681$9ae70280$6e01a8c0@xp> References: <000201c2f681$9ae70280$6e01a8c0@xp> Message-ID: <1049031526.12830.6.camel@miles.debisschop.net> On Sun, 2003-03-30 at 01:00, Felix F. wrote: > Hello, > > It looks like the resource file did not have read permission but I fixed > that. The problem still persists. > > I've tried using: > > check_command check_ping!100.0!20!500.0!60! > and > check_command check_ping!100.0,20%!500.0,60% > > Both show PING as unknown. > > The /bin/ping command is owned by root but has world execution enabled. is it setuid root as well? > Sorry about the forum post. Didn't know they were linked. Hmm. Neither did I. Now I see why we ended up with two posts. -- Karl > -----Original Message----- > From: nagios-users-admin at lists.sourceforge.net > [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Karl > DeBisschop > Sent: Saturday, March 29, 2003 10:36 PM > To: matrix4050 > Cc: Nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] ping UNKNOWN status > > On Sat, 2003-03-29 at 14:51, matrix4050 wrote: > > Hello, > > > > The check_ping command doesn't seem to work with nagios. > > > > The "Status Information" is "/bin/ping -n -U -c 5 IP_HERE" and the > STATUS of my ping command is UNKNOWN even though i tried to execute the > above command manually and I got all the correct output. > > Someone recently had a similar problem, and discovered thar resource.cfg > was not rreadble by nagios. > > Also, when you ran the command, was it as nagios? Some systems place > limits on who can execute ping, and nagios is typically confugured as a > non-priveleged user (it should be configured as such for security > reasons). > > BTW, you later post was not needed, and the HTML should be avoided as > well. Waiting a few hours for an answer to appear on a weekend should > not be too much of a trial for you, especially given how much you have > paid for the support. > > -- > Karl > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From prisoner at addventure.com Sun Mar 30 17:51:32 2003 From: prisoner at addventure.com (Allen Firstenberg) Date: Sun, 30 Mar 2003 10:51:32 -0500 Subject: Notifications won't notify Message-ID: <20030330155132.GA48647@addventure.com> I'm having a problem with a test installation that, quite honestly, has me completely stumped and feeling stupid. This was working a couple of days ago, and I went to test some changes I'm planning for our production system. I deleted all the files in var to clear out old state that I wanted to make sure didn't mess up my tests. The current configuration is at the bottom of this message. Since the changes, the system no longer triggers a notification. Not that it doesn't _send_out_ notifications, but that it doesn't even seem to trigger them. The "notifications" tab in the CGI reports "no notifications have been reported in the current log file", but the events which should have caused notifications appear fine. I'm not even sure where to begin looking for a problem at this point: the test does get run and the results logged. Email has gone out in the past, but even when it hasn't (I did have a bug once), it showed up in the notification log still. I get no warnings when I start nagios up. I _think_ permissions are all fine, at least they seem to be based on the instructions and FAQ. Where should I look next? Any thoughts appreciated. Once again, thanks for the help and this excellent program. The configuration: This is running under nagios-1.0. I have omitted some portions which I don't think woudl help any. The "check-test" command runs a test program I have which alternates between "OK", "warning" and "critical" six times an hour, and appears to be working correctly. notify-by-email is the stock one. # Generic service definition template define service{ name service-generic active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 1 event_handler_enabled 1 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 is_volatile 0 check_period 24x7 max_check_attempts 3 normal_check_interval 3 retry_check_interval 1 notification_interval 120 notification_period 24x7 register 0 } define service{ host_name testhost service_description test notification_interval 0 normal_check_interval 1 retry_check_interval 1 max_check_attempts 1 use service-generic contact_groups all-users check_command check-test } define contactgroup{ contactgroup_name all-users alias All Administrators members prisoner } define contact{ contact_name prisoner alias Allen "Prisoner" Firstenberg email prisoner at testhost service_notification_period 24x7 service_notification_options w,u,c,r service_notification_commands notify-by-email host_notification_period 24x7 host_notification_options d,u,r host_notification_commands host-notify-by-email } ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From russell at quadrix.com Sun Mar 30 22:20:49 2003 From: russell at quadrix.com (Russell Scibetti) Date: Sun, 30 Mar 2003 15:20:49 -0500 Subject: NagMIN DB Message-ID: <3E8751A1.2000008@quadrix.com> For NagMIN, it mentions that running setup could overwrite your database. Will this overwrite ALL database data, or just any previous databases named nagios? I have several databases in my MySQL instance, and before I try NagMIN, I want to make sure I'm not going to lose all my other non-nagios work. Thanks. Russell -- Russell Scibetti Quadrix Solutions, Inc. http://www.quadrix.com (732) 235-2335, ext. 7038 ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bas.vanderveen at kahuna.nl Sun Mar 30 23:00:03 2003 From: bas.vanderveen at kahuna.nl (Bas van der Veen) Date: Sun, 30 Mar 2003 23:00:03 +0200 Subject: Service Checks Not Executing in a Timely Fashion Message-ID: Hi, I had the same problem, I am pinging 300 hosts every 2 minutes. Turned out my problems was bandwith related: As soon as I started shaping with a guaranteed 32k and a allowed burst rate of 64k, the problem disappeared, and everything has been running smoothly ever since. Bas -----Original Message----- From: Matthias Kurzer [mailto:Kurzer at c-bs.de] Sent: vrijdag 21 maart 2003 12:03 To: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Service Checks Not Executing in a Timely Fashion Robert S. Galloway wrote: > I've got a strange problem and I have no idea where to go with it. Basically > what is happening is that service checks are being scheduled as configured, > but at random, some checks are not being executed for up to 5 or 6 minutes > past their scheduled time. This is according to the scheduling queue CGI. > The information there is consistent with the information that I get in the > service details. Maybe You have the same problem like I. There are nagios child prozesses, they never stops? -- Matthias Kurzer/IT Systemadministrator c: Channel Business Service GmbH Tel.: +49 40 76629-1966 Mail: kurzer at c-bs.de ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ****************************************************************** This footnote confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. ****************************************************************** http://www.kahuna.nl ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at sancho2k.net Sun Mar 30 23:38:07 2003 From: lists at sancho2k.net (Sancho2k.net Lists) Date: Sun, 30 Mar 2003 14:38:07 -0700 Subject: enabling debugging, compile error Message-ID: <3E8763BF.4090105@sancho2k.net> I ran into a problem where launching nagios (1.0) seems to launch and detach fine, but immediately exits. Nothing remotely informative is given in the log, and checking my config with the -v option shows no problems. So now I'm trying to recompile with all possible debugging options enabled. Following is the configure string I use: ========================================================================= ./configure --prefix=/var/www/htdocs/restricted/nagios --with-nagios-user=nagios --with-nagios-grp=nagios --with-perlcache --enable-embedded-perl --with-gd-lib=/usr/local/lib --with-gd-inc=/usr/local/include --disable-statuswrl --with-mysql-lib=/usr/local/lib/mysql --with-mysql-inc=/usr/local/include/mysql --with-mysql-xdata --with-mysql-status --with-mysql-comments --with-mysql-extinfo --with-mysql-retention --with-mysql-downtime --with-command-grp=nagioscmd --with-htmurl=https://admin.sancho2k.net/nagios --with-cgiurl=https://admin.sancho2k.net/nagios/cgi-bin --enable-DEBUG0 --enable-DEBUG1 --enable-DEBUG2 --enable-DEBUG3 --enable-DEBUG4 --enable-DEBUG5 ========================================================================= Following is the error I encounter when I run 'gmake all' after the configure exits: ========================================================================= cd ./cgi && gmake gmake[1]: Entering directory `/root/nagios-1.0/cgi' gcc -g -O2 -I/usr/local/include/mysql -I/usr/local/include -fno-strict-aliasing -I/usr/local/include -I/usr/libdata/perl5/i386-openbsd/5.6.1/CORE -DHAVE_CONFIG_H -DNSCGI -c -o getcgi.o getcgi.c gcc -g -O2 -I/usr/local/include/mysql -I/usr/local/include -fno-strict-aliasing -I/usr/local/include -I/usr/libdata/perl5/i386-openbsd/5.6.1/CORE -DHAVE_CONFIG_H -DNSCGI -c -o cgiutils.o cgiutils.c gcc -g -O2 -I/usr/local/include/mysql -I/usr/local/include -fno-strict-aliasing -I/usr/local/include -I/usr/libdata/perl5/i386-openbsd/5.6.1/CORE -DHAVE_CONFIG_H -DNSCGI -c -o auth.o auth.c gcc -g -O2 -I/usr/local/include/mysql -I/usr/local/include -fno-strict-aliasing -I/usr/local/include -I/usr/libdata/perl5/i386-openbsd/5.6.1/CORE -DHAVE_CONFIG_H -DNSCGI -c -o popen.o popen.c gcc -g -O2 -I/usr/local/include/mysql -I/usr/local/include -fno-strict-aliasing -I/usr/local/include -I/usr/libdata/perl5/i386-openbsd/5.6.1/CORE -DHAVE_CONFIG_H -DNSCGI -L/usr/local/lib/mysql -L/usr/local/lib -lmysqlclient avail.c getcgi.o cgiutils.o auth.o popen.o ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/xsddb.c -o avail.cgi ../xdata/xodtemplate.c: In function `xodtemplate_add_object_property': ../xdata/xodtemplate.c:1344: `temp_buffer' undeclared (first use in this function) ../xdata/xodtemplate.c:1344: (Each undeclared identifier is reported only once ../xdata/xodtemplate.c:1344: for each function it appears in.) ../xdata/xodtemplate.c:1346: `NSLOG_CONFIG_ERROR' undeclared (first use in this function) gmake[1]: *** [avail.cgi] Error 1 gmake[1]: Leaving directory `/root/nagios-1.0/cgi' gmake: *** [all] Error 2 ========================================================================= Is it proper to put all DEBUG options at once? Or should only one be used? Hoping for helpful input on this failure. OpenBSD 3.2, gcc version 2.95.3 20010125 (prerelease), gmake=GNU Make version 3.79.1 Thanks, DS ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From adalle at ncf.ca Mon Mar 31 01:51:51 2003 From: adalle at ncf.ca (Andre Dalle) Date: Sun, 30 Mar 2003 18:51:51 -0500 Subject: Nagios/Nagios Plugins Solaris 8 packages available In-Reply-To: <5.1.0.14.0.20030328163625.00af4ec0@pop.gmx.net> References: <20030327215617.GA19420@ncf.ca> <5.1.0.14.0.20030328163625.00af4ec0@pop.gmx.net> Message-ID: <20030330235151.GC10861@ncf.ca> Yes, the CSWnagiosp has several dependencies in fact, which don't all have to be satisfied depending on what you are doing. I split nagios into a base and plugins package for just your situation; where you want to install nrpe and check plugins on client system to be monitored by your central nagios server. Go ahead and install it; if something isn't working right then let me know and I will fix the package. As for Solaris 2.6, well I don't have access to a 2.6 build environment either, so I can't help you there. You could try the 2.8 package though; I don't think anything very bad will happen - perhaps you will be lucky. I'm glad someone is benefitting from these packages! On Sat, Mar 29, 2003 at 03:21:46PM +0100, Oliver Thieke wrote: > Hi Andre and List ! > > > I have packaged sparc and intel binaries for Solaris 8 > > via the Blastwave.org "CSW" (Community SoftWare for > > Solaris) project. > > CSWnagios (1.0) - nagios > > CSWnagiosp (1.30) - nagios plugins including mysql, ldap, snmp, nrpe > > I hope they are of some use. > > Definetly ! Nice work ! Came right in time for me since > I don't have compile environ available on SUN (yet)... > > Just 2 follow-up questions: > > - Is there (somewhere) also a sparc/solaris 2.6 package > available ? (yep.... not only 'incomplete' environ > but also one with two os-versions ;-) ) > > - I thought the plugin-package would install independently... > I just want to monitor the sun boxes, Nagios server will > live on a LX machine - hence according to my current knowledge > I would just need NRPE and some plugins (all stuffed into > CSWnagiosp) for the sun amchines. But when I install > CSWnagiosp with pkadd I get: > "WARNING: The package "nagios - nagios network > monitoring base package (no plugins)" is a prerequisite > package and should be installed." > > Can I just skip that or shall I install also the > (in my case unneeded) base package ? > > Thanx for your help in advance. > > Greetings from the city without the wall. > > Oliver > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. ::: Messages without supporting info will risk being > sent to /dev/null -- Andre Dalle [adalle at ncf.ca] Systems Administrator, National Capital Freenet [http://www.ncf.ca] ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From christian at dnet.net.id Mon Mar 31 03:17:29 2003 From: christian at dnet.net.id (Chris) Date: Mon, 31 Mar 2003 08:17:29 +0700 Subject: nrpe In-Reply-To: <58731.193.144.34.186.1048852075.squirrel@webmail.cesga.es> References: <58731.193.144.34.186.1048852075.squirrel@webmail.cesga.es> Message-ID: <200303310817.29414.christian@dnet.net.id> read nrpe manual or http://www.nagios.org/faqs/viewfaq.php?faq_id=101&expand=false&showdesc=true chris. On Friday 28 March 2003 18:47, casperez at cesga.es wrote: > Hello, > Can somebody tell me how i can put nrpe in the inetd daemon? > > Thank you > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Brad at pretzel.com.au Mon Mar 31 07:14:44 2003 From: Brad at pretzel.com.au (Brad Dunn) Date: Mon, 31 Mar 2003 13:14:44 +0800 Subject: openssl Message-ID: <131A385F21AAD311BD6400902763781D020DD2FC@Z8> Firstly I would like to point out I'm well aware of the sheer amount this "SSL problem" has come up on the list, but I'm still quite unable to ./configure the plugins again and get check_http to get all the SSL options. I'll try be as informative as I can about how I've got it all. Firstly plugins# whereis openssl openssl: /usr/bin/openssl /usr/include/openssl /usr/share/man/man1/openssl.1ssl.gz /usr/share/man/man1/openssl.1.gz Now when I move into the plugins etc, and choose ./configure I use the following ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios --with-nagios-group=nagios --with-openssl=/usr/include/openssl (or /usr/include) Then im displayed with this .... checking for openssl... (cached) /usr/bin/openssl checking for krb5.h... (cached) no checking for krb5.h... no checking for openssl/ssl.h... (cached) no checking for openssl/x509.h... (cached) no checking for openssl/rsa.h... (cached) no checking for openssl/pem.h... (cached) no checking for openssl/crypto.h... (cached) no checking for openssl/err.h... (cached) no checking for ssl.h... (cached) no checking for x509.h... (cached) no checking for rsa.h... (cached) no checking for pem.h... (cached) no checking for crypto.h... (cached) no checking for err.h... (cached) yes ..... >From what I can gather it just doesn't find Open SSL propperly, does anyone have any sugestions to help me get this going? Thanks a lot. b r a d d u n n ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lists at sancho2k.net Mon Mar 31 08:27:25 2003 From: lists at sancho2k.net (Sancho2k.net Lists) Date: Sun, 30 Mar 2003 23:27:25 -0700 Subject: openssl In-Reply-To: <131A385F21AAD311BD6400902763781D020DD2FC@Z8> References: <131A385F21AAD311BD6400902763781D020DD2FC@Z8> Message-ID: <3E87DFCD.2050609@sancho2k.net> Brad Dunn wrote: > Firstly I would like to point out I'm well aware of the sheer amount this > "SSL problem" has come up on the list, but I'm still quite unable to > ./configure the plugins again and get check_http to get all the SSL options. > I'll try be as informative as I can about how I've got it all. > > Firstly > > > plugins# whereis openssl > openssl: /usr/bin/openssl /usr/include/openssl > /usr/share/man/man1/openssl.1ssl.gz /usr/share/man/man1/openssl.1.gz > > checking for openssl/ssl.h... (cached) no > checking for openssl/x509.h... (cached) no > checking for openssl/rsa.h... (cached) no > checking for openssl/pem.h... (cached) no > checking for openssl/crypto.h... (cached) no > checking for openssl/err.h... (cached) no > checking for ssl.h... (cached) no > checking for x509.h... (cached) no > checking for rsa.h... (cached) no > checking for pem.h... (cached) no > checking for crypto.h... (cached) no > checking for err.h... (cached) yes > ..... > From what I can gather it just doesn't find Open SSL propperly, does anyone > have any sugestions to help me get this going? > > Thanks a lot. Try just /usr. If you haven't already, that is... DS ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 31 08:45:58 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 31 Mar 2003 01:45:58 -0500 (EST) Subject: openssl In-Reply-To: <131A385F21AAD311BD6400902763781D020DD2FC@Z8> References: <131A385F21AAD311BD6400902763781D020DD2FC@Z8> Message-ID: On Mon, 31 Mar 2003, Brad Dunn wrote: > Firstly I would like to point out I'm well aware of the sheer amount this > "SSL problem" has come up on the list, but I'm still quite unable to > ./configure the plugins again and get check_http to get all the SSL options. > I'll try be as informative as I can about how I've got it all. > > Firstly > > > plugins# whereis openssl > openssl: /usr/bin/openssl /usr/include/openssl > /usr/share/man/man1/openssl.1ssl.gz /usr/share/man/man1/openssl.1.gz > > Now when I move into the plugins etc, and choose ./configure I use the > following > > ./configure --prefix=/usr/local/nagios --with-nagios-user=nagios > --with-nagios-group=nagios --with-openssl=/usr/include/openssl (or > /usr/include) > > Then im displayed with this > .... > checking for openssl... (cached) /usr/bin/openssl > checking for krb5.h... (cached) no > checking for krb5.h... no > checking for openssl/ssl.h... (cached) no > checking for openssl/x509.h... (cached) no > checking for openssl/rsa.h... (cached) no > checking for openssl/pem.h... (cached) no > checking for openssl/crypto.h... (cached) no > checking for openssl/err.h... (cached) no > checking for ssl.h... (cached) no > checking for x509.h... (cached) no > checking for rsa.h... (cached) no > checking for pem.h... (cached) no > checking for crypto.h... (cached) no > checking for err.h... (cached) yes > ..... > >From what I can gather it just doesn't find Open SSL propperly, does anyone > have any sugestions to help me get this going? > > Thanks a lot. > > > Looks like you have openssl installed as part of the system (you didn't mention which OS) It might be that the openssl packages on your system do not include the headers necessary for development work, just the binaries. On linux, look for the openssl-devel packages -- -sg ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bas.vanderveen at kahuna.nl Mon Mar 31 08:59:13 2003 From: bas.vanderveen at kahuna.nl (Bas van der Veen) Date: Mon, 31 Mar 2003 08:59:13 +0200 Subject: Host inconsistencies in tactical overview Message-ID: Hi, I had 292 hosts in Nagios, with a ping service associated with it. Last week, I added another 15 hosts with the ping service associated. The problem I am having: tactical overview pane sometimes shows a total of 292 hosts, and sometimes a total of 307 hosts (the latter would be right). What is the problem here? Regards, Bas ****************************************************************** This footnote confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. ****************************************************************** http://www.kahuna.nl ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From tdeblend at gcc.dhl.com Mon Mar 31 09:25:26 2003 From: tdeblend at gcc.dhl.com (Tom DE BLENDE) Date: Mon, 31 Mar 2003 09:25:26 +0200 Subject: Host inconsistencies in tactical overview References: Message-ID: <3E87ED66.AB439F21@gcc.dhl.com> A new week, the same questions... http://www.nagios.org/faqs/viewfaq.php?faq_id=21&expand=false&showdesc=true Bas van der Veen wrote: > > Hi, > > I had 292 hosts in Nagios, with a ping service associated with it. > Last week, I added another 15 hosts with the ping service associated. The problem I am having: tactical overview pane sometimes shows a total of 292 hosts, and sometimes a total of 307 hosts (the latter would be right). > > What is the problem here? > > Regards, > > Bas > > ****************************************************************** > This footnote confirms that this email message has > been swept by MIMEsweeper for the presence of > computer viruses. > ****************************************************************** > http://www.kahuna.nl > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Stanley.Hopcroft at IPAustralia.Gov.AU Mon Mar 31 09:27:17 2003 From: Stanley.Hopcroft at IPAustralia.Gov.AU (Stanley Hopcroft) Date: Mon, 31 Mar 2003 17:27:17 +1000 Subject: openssl In-Reply-To: ; from sghosh@sghosh.org on Mon, Mar 31, 2003 at 01:45:58AM -0500 References: <131A385F21AAD311BD6400902763781D020DD2FC@Z8> Message-ID: <20030331172715.C282@IPAustralia.Gov.AU> Dear Gentlemen, > > > > Then im displayed with this > > .... > > checking for openssl... (cached) /usr/bin/openssl > > checking for krb5.h... (cached) no > > checking for krb5.h... no > > checking for openssl/ssl.h... (cached) no > > checking for openssl/x509.h... (cached) no > > checking for openssl/rsa.h... (cached) no > > checking for openssl/pem.h... (cached) no > > checking for openssl/crypto.h... (cached) no > > checking for openssl/err.h... (cached) no > > checking for ssl.h... (cached) no > > checking for x509.h... (cached) no > > checking for rsa.h... (cached) no > > checking for pem.h... (cached) no > > checking for crypto.h... (cached) no > > checking for err.h... (cached) yes > > ..... > > >From what I can gather it just doesn't find Open SSL propperly, does anyone > > have any sugestions to help me get this going? > > > > Thanks a lot. > > > > > > > Would it be worth running configure again after deleting the cached values that it found last time it was run (rm config.cache && ./configure ) ? Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From bas.vanderveen at kahuna.nl Mon Mar 31 09:27:54 2003 From: bas.vanderveen at kahuna.nl (Bas van der Veen) Date: Mon, 31 Mar 2003 09:27:54 +0200 Subject: Host inconsistencies in tactical overview Message-ID: [shame mode]I *cough* must somehow have overlooked it[/shame mode] -----Original Message----- From: Tom DE BLENDE [mailto:tdeblend at gcc.dhl.com] Sent: maandag 31 maart 2003 9:25 To: Bas van der Veen Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] Host inconsistencies in tactical overview A new week, the same questions... http://www.nagios.org/faqs/viewfaq.php?faq_id=21&expand=false&showdesc=true Bas van der Veen wrote: > > Hi, > > I had 292 hosts in Nagios, with a ping service associated with it. > Last week, I added another 15 hosts with the ping service associated. The problem I am having: tactical overview pane sometimes shows a total of 292 hosts, and sometimes a total of 307 hosts (the latter would be right). > > What is the problem here? > > Regards, > > Bas > > ****************************************************************** > This footnote confirms that this email message has > been swept by MIMEsweeper for the presence of > computer viruses. > ****************************************************************** > http://www.kahuna.nl > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null ****************************************************************** This footnote confirms that this email message has been swept by MIMEsweeper for the presence of computer viruses. ****************************************************************** http://www.kahuna.nl ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Brad at pretzel.com.au Mon Mar 31 09:37:17 2003 From: Brad at pretzel.com.au (Brad Dunn) Date: Mon, 31 Mar 2003 15:37:17 +0800 Subject: openssl Message-ID: <131A385F21AAD311BD6400902763781D020DD30A@Z8> Thanks, that fixed it right up b r a d d u n n -----Original Message----- From: Stanley Hopcroft [mailto:Stanley.Hopcroft at IPAustralia.Gov.AU] Sent: Monday, 31 March 2003 3:27 PM To: Brad Dunn Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] openssl Dear Gentlemen, > > > > Then im displayed with this > > .... > > checking for openssl... (cached) /usr/bin/openssl > > checking for krb5.h... (cached) no > > checking for krb5.h... no > > checking for openssl/ssl.h... (cached) no > > checking for openssl/x509.h... (cached) no > > checking for openssl/rsa.h... (cached) no > > checking for openssl/pem.h... (cached) no > > checking for openssl/crypto.h... (cached) no > > checking for openssl/err.h... (cached) no > > checking for ssl.h... (cached) no > > checking for x509.h... (cached) no > > checking for rsa.h... (cached) no > > checking for pem.h... (cached) no > > checking for crypto.h... (cached) no > > checking for err.h... (cached) yes > > ..... > > >From what I can gather it just doesn't find Open SSL propperly, > > >does anyone > > have any sugestions to help me get this going? > > > > Thanks a lot. > > > > > > > Would it be worth running configure again after deleting the cached values that it found last time it was run (rm config.cache && ./configure ) ? Yours sincerely. -- ------------------------------------------------------------------------ Stanley Hopcroft ------------------------------------------------------------------------ '...No man is an island, entire of itself; every man is a piece of the continent, a part of the main. If a clod be washed away by the sea, Europe is the less, as well as if a promontory were, as well as if a manor of thy friend's or of thine own were. Any man's death diminishes me, because I am involved in mankind; and therefore never send to know for whom the bell tolls; it tolls for thee...' from Meditation 17, J Donne. ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From prashant_video at yahoo.com Mon Mar 31 09:54:38 2003 From: prashant_video at yahoo.com (Prashant Desai) Date: Sun, 30 Mar 2003 23:54:38 -0800 (PST) Subject: Compile Error on Redhat 7.3 In-Reply-To: <1048995548.1531.25.camel@miles.debisschop.net> References: <1048995548.1531.25.camel@miles.debisschop.net> Message-ID: <20030331075438.33353.qmail@web14710.mail.yahoo.com> Hi Thanx for the reply , yeah i checked , gd and gd-devel both are installed, what could be the problem, i have even opened /usr/include/gd.h and the function defination is there for "gdImageCreateFromJpeg" so i am not able to understand the problem ?? kindly some one help me , regards Prashant --- Karl DeBisschop wrote: > On Sat, 2003-03-29 at 21:51, Prashant Desai wrote: > > HI all > > > > i am trying to compile the nagios-1.0 on the > > Redhat linux 7.3, but while make all , itrs giving > > this error > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > > getcgi.o cgiutils.o auth.o popen.o > ../common/object > > s.c ../xdata/xodtemplate.c ../common/statusdata.c > > ../xdata/xsddefault.c -lgd -lz -lm -lpng -ljpeg ed > > ata.o ../xdata/xedtemplate.c -o statusmap.cgi > > /usr/bin/ld: Dwarf Error: Invalid or unhandled > FORM > > value: 14. > > /tmp/ccOqawMU.o: In function > `load_image_from_file': > > > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > > undefined reference to `gdImageCreateFromJpeg' > > collect2: ld returned 1 exit status > > make[1]: *** [statusmap.cgi] Error 1 > > make[1]: Leaving directory > > `/home/prashant/nms/nagios-1.0/cgi' > > make: *** [all] Error 2 > > > > > > i have checked that all the pre-requisite is > > installed on the system, > > > > kindly some one pls guide me on this > > > While you say that you are sure the prereqs are > installed, I doubt this. > Be sure that gd-devel and ligjpeg-devel are > installed. (IIRC, you also > need freetype-devel, but I don't think this is your > problem). > > -- > Karl > __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pascal.renaut at electricite-strasbourg.fr Mon Mar 31 11:22:41 2003 From: pascal.renaut at electricite-strasbourg.fr (Pascal RENAUT/GROUPE-ES) Date: Mon, 31 Mar 2003 11:22:41 +0200 Subject: Problem with the Check_snmp Message-ID: Hi all, I'm using the package net-snmp (5.0.8.pre1) to request OID. I would like to check the CPU utilization on my host with this OID : .1.3.6.1.4.1.2021.11.11.0 but this OID doesn't exist. Must I install others pakages, mibs ? Can you help me please ? .................................................................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From prashant_video at yahoo.com Mon Mar 31 11:44:30 2003 From: prashant_video at yahoo.com (Prashant Desai) Date: Mon, 31 Mar 2003 01:44:30 -0800 (PST) Subject: Compile Error on Redhat 7.3 pls help me Message-ID: <20030331094430.13500.qmail@web14705.mail.yahoo.com> Hi all i have checked every thing , all the required devel and header files ae there in /usr/include & /usr/lib directory on my system running redhat 7.3, i can even see that GD LIB found while running ./configure , still the same error is coming , i have also checked my gd.h and the function declaration for GdImageFromJpeg is there (not declaration not the defination) kindly tell me what could have went wrong , it's almost 2 days now and i am still unable to compile the nagois , regards Prashant Note: forwarded message attached. __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com -------------- next part -------------- An embedded message was scrubbed... From: Prashant Desai Subject: Re: [Nagios-users] Compile Error on Redhat 7.3 Date: Sun, 30 Mar 2003 23:54:38 -0800 (PST) Size: 4471 URL: From jhp at addix.net Mon Mar 31 11:56:30 2003 From: jhp at addix.net (Jan-Hendrik Palic) Date: Mon, 31 Mar 2003 11:56:30 +0200 Subject: Problem with the Check_snmp In-Reply-To: References: Message-ID: <20030331095630.GA28573@addix.net> Hi .. On Mon, Mar 31, 2003 at 11:22:41AM +0200, Pascal RENAUT/GROUPE-ES wrote: >I'm using the package net-snmp (5.0.8.pre1) to request OID. I would like to >check the CPU utilization on my host with this OID : >.1.3.6.1.4.1.2021.11.11.0 but this OID doesn't exist. >Must I install others pakages, mibs ? hmmm afaik does net-snmp not include the intel-MIBS for checking such hardware like this ... I suggest, you install it and try again .. Regards Jan ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Matthew.Quinney at hollandandholland.com Mon Mar 31 12:35:17 2003 From: Matthew.Quinney at hollandandholland.com (Matthew.Quinney at hollandandholland.com) Date: Mon, 31 Mar 2003 11:35:17 +0100 Subject: nrpe questions In-Reply-To: <1048878399.7527.15.camel@nick.docmagic.com> References: <1048878399.7527.15.camel@nick.docmagic.com> Message-ID: Dear All, Does anybody know if the check_by_ssh command can be configured to use a passphrase ? I have found some old links on the web but unfortunately they do not work. Many thanks Matthew Quinney -------------- next part -------------- An HTML attachment was scrubbed... URL: From prashant_video at yahoo.com Mon Mar 31 13:14:41 2003 From: prashant_video at yahoo.com (Prashant Desai) Date: Mon, 31 Mar 2003 03:14:41 -0800 (PST) Subject: no one on the list who can help Message-ID: <20030331111441.94885.qmail@web14712.mail.yahoo.com> Hi all i am trying to compile nagios-1.0 on the redhat 7.3. i have installed all the prerequisite necessary for nagois-1.0 compile. see details of the same is as follows [root at loghost nagios-1.0]# rpm -q gd gd-1.8.4-4 [root at loghost nagios-1.0]# rpm -q gd-devel gd-devel-1.8.4-4 [root at loghost nagios-1.0]# rpm -q libjpeg libjpeg-6b-16 [root at loghost nagios-1.0]# rpm -q libjpeg-devel libjpeg-devel-6b-16 [root at loghost nagios-1.0]# rpm -q libpng libpng-1.0.12-2 [root at loghost nagios-1.0]# rpm -q libpng-devel libpng-devel-1.0.12-2 [root at loghost nagios-1.0]# rpm -q zlib zlib-1.1.3-24 [root at loghost nagios-1.0]# rpm -q zlib-devel zlib-devel-1.1.3-24 still i am getting following error while compiling nagios. gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statuswrl.c getcgi.o cgiutils.o auth.o popen .o ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/x sddefault.c -lm edata.o ../xdata/xedtemplate.c -o statuswrl.cgi gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c getcgi.o cgiutils.o auth.o popen .o ../common/objects.c ../xdata/xodtemplate.c ../common/statusdata.c ../xdata/x sddefault.c -lgd -lz -lm -lpng -ljpeg edata.o ../xdata/xedtemplate.c -o statusma p.cgi /usr/bin/ld: Dwarf Error: Invalid or unhandled FORM value: 14. /tmp/ccDyzHCU.o: In function `load_image_from_file': /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: undefined reference to `gdIm ageCreateFromJpeg' collect2: ld returned 1 exit status make[1]: *** [statusmap.cgi] Error 1 make[1]: Leaving directory `/home/prashant/nms/nagios-1.0/cgi' make: *** [all] Error 2 kindly sopme one help me it's not that i didt tried , i tried hard and still trying from last 2 days , but not luckey enough to get it compiled regards Prashant __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Mon Mar 31 13:44:52 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-15?q?H=FCttig?=) Date: Mon, 31 Mar 2003 12:44:52 +0100 Subject: check_http via proxy with Authentication Message-ID: <200303311344.52903.Michael.Huettig@Medien-Systempartner.de> Hi anyone, has some one tried to check your internal proxy with check_http as dicussed before, wether it's accepting user:pass for proxy-authentication. Purpose is to check, wether proxy is accepting authentication, not if the requested URL is reachable. When i tried ./check_http -H -p 8080 -u http://www.google.com -a : i get response HTTP ok: HTTP/1.0 407 Proxy authentication required - 0 second response time Thanks -- Michael ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Mon Mar 31 13:57:34 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-15?q?H=FCttig?=) Date: Mon, 31 Mar 2003 12:57:34 +0100 Subject: check_snmp with no answer from host Message-ID: <200303311357.34305.Michael.Huettig@Medien-Systempartner.de> Hi, i tried to get some switch-information via snmp (Load etc.), but most time i get ./check_snmp -H 172.16.1.247 -C -o .1.3.6.1.4.1.800.2.18.7.26.1.4 -w 60 -c 80 -l 'CPU usage (1Hr Average)' -u '%' CPU usage (1Hr Average) problem - No data recieved from host I think it's not a net-snmp-problem because sometimes there is enough data. CPU usage (1Hr Average) OK - 18 % Might there be a problem in our ATM-Environment? Any ideas ??? -- Michael ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Michael.Huettig at Medien-Systempartner.de Mon Mar 31 14:43:43 2003 From: Michael.Huettig at Medien-Systempartner.de (Michael =?iso-8859-1?q?H=FCttig?=) Date: Mon, 31 Mar 2003 13:43:43 +0100 Subject: no one on the list who can help In-Reply-To: <20030331111441.94885.qmail@web14712.mail.yahoo.com> References: <20030331111441.94885.qmail@web14712.mail.yahoo.com> Message-ID: <200303311443.43172.Michael.Huettig@Medien-Systempartner.de> Am Montag, 31. M?rz 2003 13:14 schrieb Prashant Desai: i just made nagios-1.0 last friday, no problem at all. Trie to update your libaries 'cause with newer one, there are no problems. [mhuettig at nagios nagios-1.0]$ rpm -q gd gd-1.8.4-4 [mhuettig at nagios nagios-1.0]$ rpm -q gd-devel gd-devel-1.8.4-4 [mhuettig at nagios nagios-1.0]$ rpm -q libjpeg libjpeg-6b-19 [mhuettig at nagios nagios-1.0]$ rpm -q libjpeg-devel libjpeg-devel-6b-19 [mhuettig at nagios nagios-1.0]$ rpm -q libpng libpng-1.0.14-0.7x.4 [mhuettig at nagios nagios-1.0]$ rpm -q libpng-devel libpng-devel-1.0.14-0.7x.4 [mhuettig at nagios nagios-1.0]$ rpm -q zlib zlib-1.1.3-25.7 [mhuettig at nagios nagios-1.0]$ rpm -q zlib-devel zlib-devel-1.1.3-25.7 -- Michael > Hi all > > i am trying to compile nagios-1.0 on the redhat > 7.3. i have installed all the prerequisite necessary > for nagois-1.0 compile. > see details of the same is as follows > > [root at loghost nagios-1.0]# rpm -q gd > gd-1.8.4-4 > [root at loghost nagios-1.0]# rpm -q gd-devel > gd-devel-1.8.4-4 > [root at loghost nagios-1.0]# rpm -q libjpeg > libjpeg-6b-16 > [root at loghost nagios-1.0]# rpm -q libjpeg-devel > libjpeg-devel-6b-16 > [root at loghost nagios-1.0]# rpm -q libpng > libpng-1.0.12-2 > [root at loghost nagios-1.0]# rpm -q libpng-devel > libpng-devel-1.0.12-2 > [root at loghost nagios-1.0]# rpm -q zlib > zlib-1.1.3-24 > [root at loghost nagios-1.0]# rpm -q zlib-devel > zlib-devel-1.1.3-24 > > > still i am getting following error while compiling > nagios. > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statuswrl.c > getcgi.o cgiutils.o auth.o popen > .o ../common/objects.c ../xdata/xodtemplate.c > ../common/statusdata.c ../xdata/x > sddefault.c -lm edata.o ../xdata/xedtemplate.c -o > statuswrl.cgi > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > getcgi.o cgiutils.o auth.o popen > .o ../common/objects.c ../xdata/xodtemplate.c > ../common/statusdata.c ../xdata/x > sddefault.c -lgd -lz -lm -lpng -ljpeg edata.o > ../xdata/xedtemplate.c -o statusma > p.cgi > /usr/bin/ld: Dwarf Error: Invalid or unhandled FORM > value: 14. > /tmp/ccDyzHCU.o: In function `load_image_from_file': > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > undefined reference to `gdIm > ageCreateFromJpeg' > collect2: ld returned 1 exit status > make[1]: *** [statusmap.cgi] Error 1 > make[1]: Leaving directory > `/home/prashant/nms/nagios-1.0/cgi' > make: *** [all] Error 2 > > > > kindly sopme one help me it's not that i didt tried > , i tried hard and still trying from last 2 days , but > not luckey enough to get it compiled > > regards > Prashant > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! > http://platinum.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > > ::: Please include Nagios version, plugin version (-v) and OS when > ::: reporting any issue. Messages without supporting info will risk being > ::: sent to /dev/null ********************************************************************** Diese E-Mail wurde auf Viren ueberprueft. www.mimesweeper.com ********************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From karl at debisschop.net Mon Mar 31 14:28:00 2003 From: karl at debisschop.net (Karl DeBisschop) Date: 31 Mar 2003 07:28:00 -0500 Subject: Compile Error on Redhat 7.3 In-Reply-To: <20030331075438.33353.qmail@web14710.mail.yahoo.com> References: <20030331075438.33353.qmail@web14710.mail.yahoo.com> Message-ID: <1049113680.1178.1.camel@miles.debisschop.net> On Mon, 2003-03-31 at 02:54, Prashant Desai wrote: > Hi > > Thanx for the reply , yeah i checked , gd and > gd-devel both are installed, what could be the > problem, > > i have even opened /usr/include/gd.h and the > function defination is there for > "gdImageCreateFromJpeg" so i am not able to > understand the problem ?? is libjpeg-devel there? We're they all there before your first configure? If not, you may need to 'make distclean' -- Karl > regards > Prashant > --- Karl DeBisschop wrote: > > On Sat, 2003-03-29 at 21:51, Prashant Desai wrote: > > > HI all > > > > > > i am trying to compile the nagios-1.0 on the > > > Redhat linux 7.3, but while make all , itrs giving > > > this error > > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > > > getcgi.o cgiutils.o auth.o popen.o > > ../common/object > > > s.c ../xdata/xodtemplate.c ../common/statusdata.c > > > ../xdata/xsddefault.c -lgd -lz -lm -lpng -ljpeg ed > > > ata.o ../xdata/xedtemplate.c -o statusmap.cgi > > > /usr/bin/ld: Dwarf Error: Invalid or unhandled > > FORM > > > value: 14. > > > /tmp/ccOqawMU.o: In function > > `load_image_from_file': > > > > > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > > > undefined reference to `gdImageCreateFromJpeg' > > > collect2: ld returned 1 exit status > > > make[1]: *** [statusmap.cgi] Error 1 > > > make[1]: Leaving directory > > > `/home/prashant/nms/nagios-1.0/cgi' > > > make: *** [all] Error 2 > > > > > > > > > i have checked that all the pre-requisite is > > > installed on the system, > > > > > > kindly some one pls guide me on this > > > > > > While you say that you are sure the prereqs are > > installed, I doubt this. > > Be sure that gd-devel and ligjpeg-devel are > > installed. (IIRC, you also > > need freetype-devel, but I don't think this is your > > problem). > > > > -- > > Karl > > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! > http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From prashant_video at yahoo.com Mon Mar 31 14:22:20 2003 From: prashant_video at yahoo.com (Prashant Desai) Date: Mon, 31 Mar 2003 04:22:20 -0800 (PST) Subject: Solved Compile Error on Redhat 7.3 pls help me In-Reply-To: <20030331094430.13500.qmail@web14705.mail.yahoo.com> References: <20030331094430.13500.qmail@web14705.mail.yahoo.com> Message-ID: <20030331122220.71695.qmail@web14701.mail.yahoo.com> Hi all at last it's resolved now , i hav recompiled gd 2.x and it's resolved , but when i clecik on status map it's not showing the vendors images just images with "?" symbol is coming pls help regards Prashant --- Prashant Desai wrote: > Hi all > > i have checked every thing , all the required > devel > and header files ae there in /usr/include & /usr/lib > directory on my system running redhat 7.3, i can > even > see that GD LIB found while running ./configure , > still the same error is coming , i have also checked > my gd.h and the function declaration for > GdImageFromJpeg is there (not declaration not the > defination) > > kindly tell me what could have went wrong , it's > almost 2 days now and i am still unable to compile > the > nagois , > > > regards > Prashant > > > > > > > > > > Note: forwarded message attached. > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, > live on your desktop! > http://platinum.yahoo.com > ATTACHMENT part 2 message/rfc822 > From: Prashant Desai > Subject: Re: [Nagios-users] Compile Error on Redhat > 7.3 > To: Karl DeBisschop > CC: nagios-users at lists.sourceforge.net > Date: Sun, 30 Mar 2003 23:54:38 -0800 (PST) > > Hi > > Thanx for the reply , yeah i checked , gd and > gd-devel both are installed, what could be the > problem, > > i have even opened /usr/include/gd.h and the > function defination is there for > "gdImageCreateFromJpeg" so i am not able to > understand the problem ?? > > kindly some one help me , > > > regards > Prashant > --- Karl DeBisschop wrote: > > On Sat, 2003-03-29 at 21:51, Prashant Desai wrote: > > > HI all > > > > > > i am trying to compile the nagios-1.0 on the > > > Redhat linux 7.3, but while make all , itrs > giving > > > this error > > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > > > getcgi.o cgiutils.o auth.o popen.o > > ../common/object > > > s.c ../xdata/xodtemplate.c > ../common/statusdata.c > > > ../xdata/xsddefault.c -lgd -lz -lm -lpng -ljpeg > ed > > > ata.o ../xdata/xedtemplate.c -o statusmap.cgi > > > /usr/bin/ld: Dwarf Error: Invalid or unhandled > > FORM > > > value: 14. > > > /tmp/ccOqawMU.o: In function > > `load_image_from_file': > > > > > > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > > > undefined reference to `gdImageCreateFromJpeg' > > > collect2: ld returned 1 exit status > > > make[1]: *** [statusmap.cgi] Error 1 > > > make[1]: Leaving directory > > > `/home/prashant/nms/nagios-1.0/cgi' > > > make: *** [all] Error 2 > > > > > > > > > i have checked that all the pre-requisite is > > > installed on the system, > > > > > > kindly some one pls guide me on this > > > > > > While you say that you are sure the prereqs are > > installed, I doubt this. > > Be sure that gd-devel and ligjpeg-devel are > > installed. (IIRC, you also > > need freetype-devel, but I don't think this is > your > > problem). > > > > -- > > Karl > > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, > live on your desktop! > http://platinum.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ejl at man.fwltech.com Mon Mar 31 14:34:50 2003 From: ejl at man.fwltech.com (Ewan Leith) Date: Mon, 31 Mar 2003 13:34:50 +0100 Subject: no one on the list who can help Message-ID: <1012BD903945D411915500105A48FF57F06A54@nt.man.fwltech.com> A Dwarf Error suggests it is your binutils or gcc at fault, not the libraries. rpm -q gcc rpm -q binutils I suspect you need to update your binutils. If you have updated to gcc3.1 from 2.95 you might not be able to download a redhat rpm for 7.3, im not sure. Ewan > -----Original Message----- > From: Prashant Desai [mailto:prashant_video at yahoo.com] > Sent: 31 March 2003 12:15 > To: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] no one on the list who can help > > > > Hi all > > i am trying to compile nagios-1.0 on the redhat > 7.3. i have installed all the prerequisite necessary > for nagois-1.0 compile. > see details of the same is as follows > > [root at loghost nagios-1.0]# rpm -q gd > gd-1.8.4-4 > [root at loghost nagios-1.0]# rpm -q gd-devel > gd-devel-1.8.4-4 > [root at loghost nagios-1.0]# rpm -q libjpeg > libjpeg-6b-16 > [root at loghost nagios-1.0]# rpm -q libjpeg-devel > libjpeg-devel-6b-16 > [root at loghost nagios-1.0]# rpm -q libpng > libpng-1.0.12-2 > [root at loghost nagios-1.0]# rpm -q libpng-devel > libpng-devel-1.0.12-2 > [root at loghost nagios-1.0]# rpm -q zlib > zlib-1.1.3-24 > [root at loghost nagios-1.0]# rpm -q zlib-devel > zlib-devel-1.1.3-24 > > > still i am getting following error while compiling > nagios. > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statuswrl.c > getcgi.o cgiutils.o auth.o popen > .o ../common/objects.c ../xdata/xodtemplate.c > ../common/statusdata.c ../xdata/x > sddefault.c -lm edata.o ../xdata/xedtemplate.c -o > statuswrl.cgi > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > getcgi.o cgiutils.o auth.o popen > .o ../common/objects.c ../xdata/xodtemplate.c > ../common/statusdata.c ../xdata/x > sddefault.c -lgd -lz -lm -lpng -ljpeg edata.o > ../xdata/xedtemplate.c -o statusma > p.cgi > /usr/bin/ld: Dwarf Error: Invalid or unhandled FORM > value: 14. > /tmp/ccDyzHCU.o: In function `load_image_from_file': > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > undefined reference to `gdIm > ageCreateFromJpeg' > collect2: ld returned 1 exit status > make[1]: *** [statusmap.cgi] Error 1 > make[1]: Leaving directory > `/home/prashant/nms/nagios-1.0/cgi' > make: *** [all] Error 2 > > > > kindly sopme one help me it's not that i didt tried > , i tried hard and still trying from last 2 days , but > not luckey enough to get it compiled > > regards > Prashant > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! > http://platinum.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From simon.lorenz at fresca.co.uk Mon Mar 31 14:45:03 2003 From: simon.lorenz at fresca.co.uk (bigfish) Date: 31 Mar 2003 12:45:03 -0000 Subject: Cant connect to MYSQL DB! Message-ID: <20030331124503.23337.qmail@pod-163.dolphin-server.co.uk> Hello all, I have just recompiled with --with-mysql-xdata and want to use MySQL to store all status etc data. But after recomiling both plugins + nagios I get the following mesages in the log file: Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password ''. Status data will not be saved! Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password ''. Retention data will not be processed or saved! Mar 31 13:24:34 cuba nagios: Error: Could not re-connect to database server on host '' for status data. I'll keep trying every 60 seconds... Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password '' for comment data! Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password '' for downtime data! I have specifyed the connections details in all sections of the cgi.cfg and am succeffuly able to connect with these details using check_msql directly. Any ideas? thanks Bigfish ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From simon.lorenz at fresca.co.uk Mon Mar 31 14:49:53 2003 From: simon.lorenz at fresca.co.uk (Simon Lorenz - Fresca) Date: Mon, 31 Mar 2003 13:49:53 +0100 Subject: Error: Could not connect to MySQL database Message-ID: Hello all, I have just recompiled with --with-mysql-xdata and want to use MySQL to store all status etc data. But after recomiling both plugins + nagios I get the following mesages in the log file: Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password ''. Status data will not be saved! Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password ''. Retention data will not be processed or saved! Mar 31 13:24:34 cuba nagios: Error: Could not re-connect to database server on host '' for status data. I'll keep trying every 60 seconds... Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password '' for comment data! Mar 31 13:24:34 cuba nagios: Error: Could not connect to MySQL database '' on host '' using username '' and password '' for downtime data! I have specifyed the connections details in all sections of the cgi.cfg and am succeffuly able to connect with these details using check_msql directly. Any ideas? Using nagios=Nagios 1.0 plugins=1.3 MySQL=4.0.11-gamma-standard Thanks Simon ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From simon.lorenz at fresca.co.uk Mon Mar 31 15:08:40 2003 From: simon.lorenz at fresca.co.uk (bigfish) Date: 31 Mar 2003 13:08:40 -0000 Subject: Cant connect to MYSQL DB! In-Reply-To: <20030331124503.23337.qmail@pod-163.dolphin-server.co.uk> References: <20030331124503.23337.qmail@pod-163.dolphin-server.co.uk> Message-ID: <20030331130840.27494.qmail@pod-163.dolphin-server.co.uk> Fixed it mysel by looking a little harder!!! Needed to add th DB connection details to resource.cfg as well. Now I get: Error: Could not lock status data tables in database 'dbnagios' Although the user has SELECT, INSERT, UPDATE, and DELETE privileges? ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From twelsh at square-box.com Mon Mar 31 15:22:07 2003 From: twelsh at square-box.com (Tom Welsh) Date: Mon, 31 Mar 2003 14:22:07 +0100 Subject: Solved Compile Error on Redhat 7.3 pls help me In-Reply-To: <20030331122220.71695.qmail@web14701.mail.yahoo.com> References: <20030331122220.71695.qmail@web14701.mail.yahoo.com> Message-ID: <002201c2f788$86f7e0c0$0400a8c0@squarebox.com> You need to specify the images for it to show the icons.... You do this in hostextinfo.cfg This is an excerpt from all my configs shown on http://demo.square-box.com #'gdserver19' host definition define hostextinfo{ host_name gdserver19 icon_image win40.jpg icon_image_alt win40.gif vrml_image win40.png statusmap_image win40.gd2 } hope this helps Tom Welsh twelsh at square-box.com -----Original Message----- From: nagios-users-admin at lists.sourceforge.net [mailto:nagios-users-admin at lists.sourceforge.net] On Behalf Of Prashant Desai Sent: 31 March 2003 13:22 To: Prashant Desai; nagios-users at lists.sourceforge.net Subject: [Nagios-users] Re: Solved Compile Error on Redhat 7.3 pls help me Hi all at last it's resolved now , i hav recompiled gd 2.x and it's resolved , but when i clecik on status map it's not showing the vendors images just images with "?" symbol is coming pls help regards Prashant --- Prashant Desai wrote: > Hi all > > i have checked every thing , all the required > devel > and header files ae there in /usr/include & /usr/lib > directory on my system running redhat 7.3, i can > even > see that GD LIB found while running ./configure , > still the same error is coming , i have also checked > my gd.h and the function declaration for > GdImageFromJpeg is there (not declaration not the > defination) > > kindly tell me what could have went wrong , it's > almost 2 days now and i am still unable to compile > the > nagois , > > > regards > Prashant > > > > > > > > > > Note: forwarded message attached. > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, > live on your desktop! > http://platinum.yahoo.com > ATTACHMENT part 2 message/rfc822 > From: Prashant Desai > Subject: Re: [Nagios-users] Compile Error on Redhat > 7.3 > To: Karl DeBisschop > CC: nagios-users at lists.sourceforge.net > Date: Sun, 30 Mar 2003 23:54:38 -0800 (PST) > > Hi > > Thanx for the reply , yeah i checked , gd and > gd-devel both are installed, what could be the > problem, > > i have even opened /usr/include/gd.h and the > function defination is there for > "gdImageCreateFromJpeg" so i am not able to > understand the problem ?? > > kindly some one help me , > > > regards > Prashant > --- Karl DeBisschop wrote: > > On Sat, 2003-03-29 at 21:51, Prashant Desai wrote: > > > HI all > > > > > > i am trying to compile the nagios-1.0 on the > > > Redhat linux 7.3, but while make all , itrs > giving > > > this error > > > gcc -g -O2 -DHAVE_CONFIG_H -DNSCGI statusmap.c > > > getcgi.o cgiutils.o auth.o popen.o > > ../common/object > > > s.c ../xdata/xodtemplate.c > ../common/statusdata.c > > > ../xdata/xsddefault.c -lgd -lz -lm -lpng -ljpeg > ed > > > ata.o ../xdata/xedtemplate.c -o statusmap.cgi > > > /usr/bin/ld: Dwarf Error: Invalid or unhandled > > FORM > > > value: 14. > > > /tmp/ccOqawMU.o: In function > > `load_image_from_file': > > > > > > /home/prashant/nms/nagios-1.0/cgi/statusmap.c:2222: > > > undefined reference to `gdImageCreateFromJpeg' > > > collect2: ld returned 1 exit status > > > make[1]: *** [statusmap.cgi] Error 1 > > > make[1]: Leaving directory > > > `/home/prashant/nms/nagios-1.0/cgi' > > > make: *** [all] Error 2 > > > > > > > > > i have checked that all the pre-requisite is > > > installed on the system, > > > > > > kindly some one pls guide me on this > > > > > > While you say that you are sure the prereqs are > > installed, I doubt this. > > Be sure that gd-devel and ligjpeg-devel are > > installed. (IIRC, you also > > need freetype-devel, but I don't think this is > your > > problem). > > > > -- > > Karl > > > > > __________________________________________________ > Do you Yahoo!? > Yahoo! Platinum - Watch CBS' NCAA March Madness, > live on your desktop! > http://platinum.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version > (-v) and OS when reporting any issue. > ::: Messages without supporting info will risk being > sent to /dev/null __________________________________________________ Do you Yahoo!? Yahoo! Platinum - Watch CBS' NCAA March Madness, live on your desktop! http://platinum.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Mon Mar 31 15:17:15 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Mon, 31 Mar 2003 15:17:15 +0200 Subject: APAN problems References: <6CF7A192A85BD1458E7C5F35D607750C596855@ok1ems2.worldsavings.com> Message-ID: <3E883FDB.2070208@datavis.se> Does any serviceextinfo work? Does the user that the web-server runs as have read-permissions on the files? Bunting, Glen, IG wrote: >Fredrik, > >I have compared the case sensitivity of hostname/description and they look correct. Here are the relevant parts of my configs. I still do not have any links from within nagios. > >############################################################################################ ># Services for APAN >############################################################################################ > ># service definition for APAN ping > >define service{ > host_name GlenNT,JeffNT,JeffIIS,JeffLinux,gbredhat1 > service_description Ping > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups nt-admins,linux-admins > notification_interval 120 > notification_period 24x7 > notification_options c,r > check_command apan!ping!100.0,20%!500.0,60% > name Ping > use generic-service > normal_check_interval 1 > } > >############################################################################################ ># Extended service information >############################################################################################ > ># rrd link of ping round-trip times >define serviceextinfo{ > host_name gbredhat1 > service_description Ping > notes_url /nagios/cgi-bin/apan.cgi?host=gbredhat1&service=Ping > icon_image graph.png > icon_image_alt View graphs > } > >############################################################################################ ># Enabling extended host info >############################################################################################ > >xedtemplate_config_file=/usr/local/nagios/etc/hostextinfo.cfg >xedtemplate_config_file=/usr/local/nagios/etc/serviceextinfo.cfg > >Thanks > >Glen > >-----Original Message----- >From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] >Sent: Thursday, March 27, 2003 11:42 PM >To: Bunting, Glen, IG >Cc: nagios-users at lists.sourceforge.net >Subject: Re: [Nagios-users] APAN problems > > >The extinfo-definitions (and Apan) is very case-sensitive. Make sure >your hostname/sevicedescription looks exactly the same in the >service-definition and the serviceextinfo-definition. >If this desnt work, let us look at the relevant parts of your config. > > >/FredrikW > > > >Bunting, Glen, IG wrote: > > > >>I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. >> >>1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. >> >>I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. >> >>2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. >> >>I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? >> >>Thanks >> >>Glen >> >> >>***************************************************************************** >>If you are not the intended recipient of this e-mail, please notify >>the sender immediately. The contents of this e-mail do not amend >>any existing disclosures or agreements unless expressly stated. >>***************************************************************************** >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: >>The Definitive IT and Networking Event. Be There! >>NetWorld+Interop Las Vegas 2003 -- Register today! >>http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >>::: Messages without supporting info will risk being sent to /dev/null >> >> >> >> > > > > >***************************************************************************** >If you are not the intended recipient of this e-mail, please notify >the sender immediately. The contents of this e-mail do not amend >any existing disclosures or agreements unless expressly stated. >***************************************************************************** > > > ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From chbaker at powersystems.rockwell.com Mon Mar 31 15:46:21 2003 From: chbaker at powersystems.rockwell.com (chbaker at powersystems.rockwell.com) Date: Mon, 31 Mar 2003 08:46:21 -0500 Subject: Trends & Availability not working Message-ID: I've been skimming back and forth in the docs trying to determine how to set the initial state. Would someone mind just telling us where that is? Charles H. Baker chbaker at powersystems dot rockwell dot com work: 864.281.2409 fax: 864.281.2487 cell: 864.363.5302 BOFH excuse #40: Not enough memory, go get system upgrade. "Thomas Stocking" To: Sent by: cc: nagios-users-admin at lists.sour Subject: [Nagios-users] Re: Trends & Availability not working ceforge.net 03/28/2003 07:52 PM Please respond to tstocking Nicholas, You should be sure that if you are using "Assume State", that you set the initial state to OK. That problem gave me pause until I played with the options for a while... Thomas Thomas Stocking, GCIA, GCIH Captech Partners thomas at captech.com http://www.captech.com (415) 507-9267 When I go into trends or Availability and do a report for the last 24 hours (I've only had it up for 24hrs), the host or service is listed as Indeterminate: (100.0%). If I go to Host Detail, the get either UP "(Host assumed to be up)" or "PING OK- Packet loss = 0%m RTA = .65". Where should I start looking to troubleshoot this? Thanks! -- +---------------------------------------------------------------+ | Nicholas Bernstein | nick at docmagic.com | | UNIX Systems Administrator | http://www.docmagic.com | | Document Systems Inc. | | +---------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by: The Definitive IT and Networking Event. Be There! NetWorld+Interop Las Vegas 2003 -- Register today! http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From ejl at man.fwltech.com Mon Mar 31 17:15:03 2003 From: ejl at man.fwltech.com (Ewan Leith) Date: Mon, 31 Mar 2003 16:15:03 +0100 Subject: Trends & Availability not working Message-ID: <1012BD903945D411915500105A48FF57F06A58@nt.man.fwltech.com> I think, though im not 100% certain, you set log_initial_states=1 in nagios.cfg Ewan > -----Original Message----- > From: chbaker at powersystems.rockwell.com > [mailto:chbaker at powersystems.rockwell.com] > Sent: 31 March 2003 14:46 > To: nagios-users at lists.sourceforge.net > Subject: Re: [Nagios-users] Re: Trends & Availability not working > > > > I've been skimming back and forth in the docs trying to > determine how to > set > the initial state. Would someone mind just telling us where that is? > > Charles H. Baker > chbaker at powersystems dot rockwell dot com > work: 864.281.2409 fax: 864.281.2487 cell: 864.363.5302 > BOFH excuse #40: > Not enough memory, go get system upgrade. > > > > > > "Thomas Stocking" > > > > To: > > Sent by: > cc: > > nagios-users-admin at lists.sour > Subject: [Nagios-users] Re: Trends & Availability not working > > ceforge.net > > > > > > > > > 03/28/2003 07:52 PM > > > Please respond to tstocking > > > > > > > > > > > > > Nicholas, > You should be sure that if you are using "Assume State", that > you set the > initial state to OK. > That problem gave me pause until I played with the options > for a while... > Thomas > > Thomas Stocking, GCIA, GCIH > Captech Partners > thomas at captech.com > http://www.captech.com > (415) 507-9267 > > > When I go into trends or Availability and do a report for the last 24 > hours (I've only had it up for 24hrs), the host or service is > listed as > Indeterminate: (100.0%). If I go to Host Detail, the get either UP > "(Host assumed to be up)" or "PING OK- Packet loss = 0%m RTA = .65". > Where should I start looking to troubleshoot this? > > Thanks! > > > -- > +---------------------------------------------------------------+ > | Nicholas Bernstein | nick at docmagic.com | > | UNIX Systems Administrator | http://www.docmagic.com | > | Document Systems Inc. | | > +---------------------------------------------------------------+ > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: > The Definitive IT and Networking Event. Be There! > NetWorld+Interop Las Vegas 2003 -- Register today! > http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when > reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From eduardoleitao at interacesso.pt Mon Mar 31 15:23:41 2003 From: eduardoleitao at interacesso.pt (Eduardo =?ISO-8859-1?Q?Leit=E3o?=) Date: 31 Mar 2003 14:23:41 +0100 Subject: notifications Message-ID: <1049117021.2994.2.camel@Monitor> Hi I'm new using nagios and i would like to know what i must do to send notifications. There are documentation that explain what to do? Please some help? Thanks Edu ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From fredrik.wanglund at datavis.se Mon Mar 31 16:35:46 2003 From: fredrik.wanglund at datavis.se (=?ISO-8859-1?Q?Fredrik_W=E4nglund?=) Date: Mon, 31 Mar 2003 16:35:46 +0200 Subject: Cant turn of notifications References: <3E8751A1.2000008@quadrix.com> Message-ID: <3E885242.2060905@datavis.se> I'm trying to disable notifications for a series of hosts. I have attached my template and service-definition below. I have changed 'notifications_enabled' to '0' in the template and restart Nagios, but notifications is still sent out... If I add a new service to Nagios that uses the same template, the notification is supressed (and an icon witha a crossed-over speaker shows up in the web). Why cant' I disable notifications for an existing service? define service { name bb-template active_checks_enabled 1 passive_checks_enabled 1 parallelize_check 1 obsess_over_service 1 check_freshness 0 notifications_enabled 0 event_handler_enabled 0 flap_detection_enabled 1 process_perf_data 1 retain_status_information 1 retain_nonstatus_information 1 register 0 max_check_attempts 5 normal_check_interval 3 retry_check_interval 1 check_period 24x7 notification_interval 10 notification_period 24x7 notification_options w,u,c,r contact_groups UNIX-kungar } And this service-definitions: define service { host_name sc1,sc2,sc3,sc4,sc5,sc_gavle service_description Net-usage check_command apan!snmpget!10!20 use bb-template normal_check_interval 1 } /FredrikW ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pascal.renaut at electricite-strasbourg.fr Mon Mar 31 17:38:36 2003 From: pascal.renaut at electricite-strasbourg.fr (Pascal RENAUT/GROUPE-ES) Date: Mon, 31 Mar 2003 17:38:36 +0200 Subject: CPU Utilization : AIX 4.3.3 Message-ID: Hi all, I would like to know CPU utilization on my remote host under AIX 4.3.3 I compiled net-snmp (5.0.8-pre1) under this host but I don't find the OID to check the CPU utilization If someone knows the OID (or other solution...) thanks... .................................................................................................... Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de Strasbourg / 67953 Strasbourg Cedex 9 T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : pascal.renaut at electricite-strasbourg.fr ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From pkrzystofiak at endeavors.com Mon Mar 31 19:41:21 2003 From: pkrzystofiak at endeavors.com (Peter Krzystofiak) Date: Mon, 31 Mar 2003 09:41:21 -0800 Subject: Blank Email Notifcations & check_external_commands Message-ID: <53109A46D4F58F458B18D009EAEEDC8345B8AE@mail.endeavorstech.com> Hello, 1. All of a sudden, I receive blank email notifications when services go down. Is there some property that controls this? 2. Also, when I set the check_external_commands=1 and I try to restart the service, nagios does not startup. It just gives me the following: Starting network monitor: nagios PID TTY TIME CMD Your input is appreciated. Thank You, Peter ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dbarcelo at datajunction.com Mon Mar 31 19:27:33 2003 From: dbarcelo at datajunction.com (David Barcelo) Date: Mon, 31 Mar 2003 11:27:33 -0600 Subject: No perf-definition for service... Message-ID: <3E887A85.3020801@datajunction.com> Hello all, I am currently trying to get Nagios working with APAN and it is not working. I followed the instructions in the README and the APAN site but when I try to run a ping plugin service I get the text "No perf-definition for service". Can anyone give me a quick explanation as to possible causes for this problem. Dave -- _____ James David Barcelo Network/Systems Administration Data Junction Corporation 2201 Northland Drive Austin, TX 78756 tel: 512-459-1308 ext. 349 fax: 512-469-1309 www.datajunction.com * The contents and attachments in this email are confidential. _____ ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From GBunting864 at Worldsavings.com Mon Mar 31 19:32:31 2003 From: GBunting864 at Worldsavings.com (Bunting, Glen, IG) Date: Mon, 31 Mar 2003 09:32:31 -0800 Subject: APAN problems Message-ID: <6CF7A192A85BD1458E7C5F35D607750C5BFB89@ok1ems2.worldsavings.com> Serviceextinfo does not work. I was able to get the graphs showing by using hostextinfo and moving the graph.png to /usr/local/nagios/share/images/logos. I am now getting another problem in that when I click on the graph I get the page that is supposed to pull up but there are no graphs at all. When I enter the url to the graph http://localhost/nagios/cgi-bin/generate.cgi?GlenNT&Ping&600 I get a page that states "The image http://localhost/nagios/cgi-bin/generate.cgi?GlenNT&Ping&600 cannot be displayed because it contains errors". In apancgi.debug I am getting these messages: CONF: GlenNT;Ping;/usr/local/nagios/rrd/GlenNT_Ping.rrd;ping;ping:LINE2;Ping round-trip time;Seconds CONF: GlenNT;Ping;/usr/local/nagios/rrd/GlenNT_Ping.rrd;ping;ping:LINE2;Ping round-trip time;Seconds CONF: GlenNT;Ping;/usr/local/nagios/rrd/GlenNT_Ping.rrd;ping;ping:LINE2;Ping round-trip time;Seconds CONF: GlenNT;Ping;/usr/local/nagios/rrd/GlenNT_Ping.rrd;ping;ping:LINE2;Ping round-trip time;Seconds CONF: GlenNT;Ping;/usr/local/nagios/rrd/GlenNT_Ping.rrd;ping;ping:LINE2;Ping round-trip time;Seconds CONF: GlenNT;Ping;/usr/local/nagios/rrd/GlenNT_Ping.rrd;ping;ping:LINE2;Ping round-trip time;Seconds /usr/bin/rrdtool graph - -s -2851200 -a PNG -v Seconds DEF:var0=/usr/local/nagios/rrd/GlenNT_Ping.rrd:ping:AVERAGE LINE2:var0#ff0000:ping: /usr/bin/rrdtool graph - -s -86400 -a PNG -v Seconds DEF:var0=/usr/local/nagios/rrd/GlenNT_Ping.rrd:ping:AVERAGE LINE2:var0#ff0000:ping: /usr/bin/rrdtool graph - -s -600 -a PNG -v Seconds DEF:var0=/usr/local/nagios/rrd/GlenNT_Ping.rrd:ping:AVERAGE LINE2:var0#ff0000:ping: /usr/bin/rrdtool graph - -s -3600 -a PNG -v Seconds DEF:var0=/usr/local/nagios/rrd/GlenNT_Ping.rrd:ping:AVERAGE LINE2:var0#ff0000:ping: /usr/bin/rrdtool graph - -s -604800 -a PNG -v Seconds DEF:var0=/usr/local/nagios/rrd/GlenNT_Ping.rrd:ping:AVERAGE LINE2:var0#ff0000:ping: /usr/bin/rrdtool graph - -s -31557600 -a PNG -v Seconds DEF:var0=/usr/local/nagios/rrd/GlenNT_Ping.rrd:ping:AVERAGE LINE2:var0#ff0000:ping Any ideas? Thanks Glen -----Original Message----- From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] Sent: Monday, March 31, 2003 5:17 AM To: Bunting, Glen, IG Cc: nagios-users at lists.sourceforge.net Subject: Re: [Nagios-users] APAN problems Does any serviceextinfo work? Does the user that the web-server runs as have read-permissions on the files? Bunting, Glen, IG wrote: >Fredrik, > >I have compared the case sensitivity of hostname/description and they look correct. Here are the relevant parts of my configs. I still do not have any links from within nagios. > >############################################################################################ ># Services for APAN >############################################################################################ > ># service definition for APAN ping > >define service{ > host_name GlenNT,JeffNT,JeffIIS,JeffLinux,gbredhat1 > service_description Ping > is_volatile 0 > check_period 24x7 > max_check_attempts 3 > normal_check_interval 5 > retry_check_interval 1 > contact_groups nt-admins,linux-admins > notification_interval 120 > notification_period 24x7 > notification_options c,r > check_command apan!ping!100.0,20%!500.0,60% > name Ping > use generic-service > normal_check_interval 1 > } > >############################################################################################ ># Extended service information >############################################################################################ > ># rrd link of ping round-trip times >define serviceextinfo{ > host_name gbredhat1 > service_description Ping > notes_url /nagios/cgi-bin/apan.cgi?host=gbredhat1&service=Ping > icon_image graph.png > icon_image_alt View graphs > } > >############################################################################################ ># Enabling extended host info >############################################################################################ > >xedtemplate_config_file=/usr/local/nagios/etc/hostextinfo.cfg >xedtemplate_config_file=/usr/local/nagios/etc/serviceextinfo.cfg > >Thanks > >Glen > >-----Original Message----- >From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] >Sent: Thursday, March 27, 2003 11:42 PM >To: Bunting, Glen, IG >Cc: nagios-users at lists.sourceforge.net >Subject: Re: [Nagios-users] APAN problems > > >The extinfo-definitions (and Apan) is very case-sensitive. Make sure >your hostname/sevicedescription looks exactly the same in the >service-definition and the serviceextinfo-definition. >If this desnt work, let us look at the relevant parts of your config. > > >/FredrikW > > > >Bunting, Glen, IG wrote: > > > >>I am currently trying to set up APAN. As far as I can tell, I have set it up exactly as shown in the how-to for the ping round trip times. I have two problems. >> >>1. The only host that this seems to be working on is the local host. All other computers I am getting an error "Could not insert ':Ping' , 'xxxxxxxxxx:' into /usr/local/nagios/rrd/GlenNT_Ping.rrd" from apan.debug. From within nagios is states the host could not be found. >> >>I have check the permissions on the rrd file and they all have nagios as the owner with read/write access. >> >>2. The other problem I have is that I cannot get the graphs to come up from within nagios using serviceextinfo.cfg. I can get hostextinfo.cfg to work properly with the logos, but not the APAN link to the graphs. >> >>I have followed the instruction and examples as close as I could and I believe they are accurate. Am I missing something obvious or should I post the relevant configs? >> >>Thanks >> >>Glen >> >> >>***************************************************************************** >>If you are not the intended recipient of this e-mail, please notify >>the sender immediately. The contents of this e-mail do not amend >>any existing disclosures or agreements unless expressly stated. >>***************************************************************************** >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: >>The Definitive IT and Networking Event. Be There! >>NetWorld+Interop Las Vegas 2003 -- Register today! >>http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en >>_______________________________________________ >>Nagios-users mailing list >>Nagios-users at lists.sourceforge.net >>https://lists.sourceforge.net/lists/listinfo/nagios-users >>::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. >>::: Messages without supporting info will risk being sent to /dev/null >> >> >> >> > > > > >***************************************************************************** >If you are not the intended recipient of this e-mail, please notify >the sender immediately. The contents of this e-mail do not amend >any existing disclosures or agreements unless expressly stated. >***************************************************************************** > > > ***************************************************************************** If you are not the intended recipient of this e-mail, please notify the sender immediately. The contents of this e-mail do not amend any existing disclosures or agreements unless expressly stated. ***************************************************************************** ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From dbarcelo at datajunction.com Mon Mar 31 21:58:10 2003 From: dbarcelo at datajunction.com (David Barcelo) Date: Mon, 31 Mar 2003 13:58:10 -0600 Subject: Apan and Nagios....No perf-definition for service Message-ID: <3E889DD2.9080907@datajunction.com> I am trying to get Apan and Nagios to work but I keep getting an error that says "No perf-definition for service". Can someone shed some light on this problem? --Dave _____ James David Barcelo Network/Systems Administration Data Junction Corporation 2201 Northland Drive Austin, TX 78756 tel: 512-459-1308 ext. 349 fax: 512-469-1309 www.datajunction.com * The contents and attachments in this email are confidential. _____ ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From nick at docmagic.com Mon Mar 31 22:27:29 2003 From: nick at docmagic.com (Nicholas Bernstein) Date: 31 Mar 2003 12:27:29 -0800 Subject: NRPE Service times out (error code 110) Message-ID: <1049142449.10178.14.camel@nick.docmagic.com> Hi all. I wrote a script to return the value of universe licenses in use on our database server, it's a pretty quick script, runs a command, hops through a loop and gives back some text. It runs fine from the command line, and returns 0. When running through nrpe, though, I get an errno of 110 - which according to errno.h is: "#define ETIMEDOUT 110 /* Connection timed out */" What do you guys think? how should I go about fixing this? -- +---------------------------------------------------------------+ | Nicholas Bernstein | nick at docmagic.com | | UNIX Systems Administrator | http://www.docmagic.com | | Document Systems Inc. | | +---------------------------------------------------------------+ ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From sghosh at sghosh.org Mon Mar 31 22:31:08 2003 From: sghosh at sghosh.org (Subhendu Ghosh) Date: Mon, 31 Mar 2003 15:31:08 -0500 (EST) Subject: check_snmp with no answer from host In-Reply-To: <200303311357.34305.Michael.Huettig@Medien-Systempartner.de> References: <200303311357.34305.Michael.Huettig@Medien-Systempartner.de> Message-ID: On Mon, 31 Mar 2003, Michael [iso-8859-15] H?ttig wrote: > Hi, > i tried to get some switch-information via snmp (Load etc.), but most time i > get > > ./check_snmp -H 172.16.1.247 -C -o > .1.3.6.1.4.1.800.2.18.7.26.1.4 -w 60 -c 80 -l 'CPU usage (1Hr Average)' -u '%' > > CPU usage (1Hr Average) problem - No data recieved from host This indicates no snmp responses were received. It may be an issue with timeouts if this is a sporadic event. > > I think it's not a net-snmp-problem because sometimes there is enough data. > > CPU usage (1Hr Average) OK - 18 % > > Might there be a problem in our ATM-Environment? > > Any ideas ??? > > -- -sg ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From lonny at bangtherockstogether.net Mon Mar 31 23:18:06 2003 From: lonny at bangtherockstogether.net (Lonny Selinger) Date: Mon, 31 Mar 2003 15:18:06 -0600 (CST) Subject: CPU Utilization : AIX 4.3.3 In-Reply-To: References: Message-ID: <60335.24.72.6.129.1049145486.squirrel@webmail.bangtherockstogether.net> The stock plugins come with check_load and it works just fine uner AIX 4.3.3 -- L > Hi all, > > I would like to know CPU utilization on my remote host under AIX 4.3.3 I compiled > net-snmp (5.0.8-pre1) under this host but I don't find the OID to check the CPU > utilization > If someone knows the OID (or other solution...) > > thanks... > > .................................................................................................... > Pascal RENAUT / D?partement Ing?nierie R?seaux (I.R.) / Groupe Electricit? de > Strasbourg / 67953 Strasbourg Cedex 9 > T?l : 33 (0) 369 20 6138 / Fax : 33 (0) 369 20 6045 / Email : > pascal.renaut at electricite-strasbourg.fr > > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS when reporting any > issue. ::: Messages without supporting info will risk being sent to /dev/null ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From networks at wi.rr.com Mon Mar 31 23:33:27 2003 From: networks at wi.rr.com (Networks) Date: 31 Mar 2003 15:33:27 -0600 Subject: SNMP - Temparuture Monitoring In-Reply-To: <6CF7A192A85BD1458E7C5F35D607750C5BFB89@ok1ems2.worldsavings.com> References: <6CF7A192A85BD1458E7C5F35D607750C5BFB89@ok1ems2.worldsavings.com> Message-ID: <1049146407.5751.6.camel@elijah> Has anyone used Nagios to receive SNMP traps from monitoring equipment? I read the documentation on SNMP Traps, and it lacks the ability to take information in such as current temperature. I am using netbotz equipment to monitor water, humidity, temp, and air flow of a server room. The traps are sent to a Red hat box, received by snmptrapd, and are currently being logged in the syslog. On a side note, has anyone used APAN with nagios to track snmp data? Any tutorials or help would be appreciated. Thanks again, Josh ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From mark at woodstream.net Mon Mar 31 23:32:08 2003 From: mark at woodstream.net (mark) Date: Mon, 31 Mar 2003 16:32:08 -0500 (EST) Subject: searching list archives Message-ID: Is anyone else having problems searching the list archives? I've tried several times in the last few days and I always get "no results". I've tried searching for "Nagios" and even terms directly from an email I just read.. and it still comes back "no results". Anyone have any ideas? mark ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Mon Mar 31 23:49:24 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 31 Mar 2003 15:49:24 -0600 Subject: Cant turn of notifications Message-ID: I don't suppose you have anything defined in escalations.cfg which might have an impact...? jc > -----Original Message----- > From: Fredrik W?nglund [mailto:fredrik.wanglund at datavis.se] > Sent: Monday, March 31, 2003 8:36 AM > To: Russell Scibetti > Cc: nagios-users at lists.sourceforge.net > Subject: [Nagios-users] Cant turn of notifications > > > I'm trying to disable notifications for a series of hosts. I have > attached my template and service-definition below. > I have changed 'notifications_enabled' to '0' in the template and > restart Nagios, but notifications is still sent out... > If I add a new service to Nagios that uses the same template, the > notification is supressed (and an icon witha a crossed-over speaker > shows up in the web). > > Why cant' I disable notifications for an existing service? > > > > > define service { > name bb-template > active_checks_enabled 1 > passive_checks_enabled 1 > parallelize_check 1 > obsess_over_service 1 > check_freshness 0 > notifications_enabled 0 > event_handler_enabled 0 > flap_detection_enabled 1 > process_perf_data 1 > retain_status_information 1 > retain_nonstatus_information 1 > register 0 > max_check_attempts 5 > normal_check_interval 3 > retry_check_interval 1 > check_period 24x7 > notification_interval 10 > notification_period 24x7 > notification_options w,u,c,r > contact_groups UNIX-kungar > } > > > And this service-definitions: > > define service { > host_name sc1,sc2,sc3,sc4,sc5,sc_gavle > service_description Net-usage > check_command apan!snmpget!10!20 > use bb-template > normal_check_interval 1 > } > > /FredrikW > > > > ------------------------------------------------------- > This SF.net email is sponsored by: ValueWeb: > Dedicated Hosting for just $79/mo with 500 GB of bandwidth! > No other company gives more support or power for your dedicated server > http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ > _______________________________________________ > Nagios-users mailing list > Nagios-users at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/nagios-users > ::: Please include Nagios version, plugin version (-v) and OS > when reporting any issue. > ::: Messages without supporting info will risk being sent to /dev/null > ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From Jeremy.Russell at chickasaw.net Mon Mar 31 22:38:07 2003 From: Jeremy.Russell at chickasaw.net (Jeremy Russell) Date: Mon, 31 Mar 2003 14:38:07 -0600 Subject: Has anyone integrated Nagios and MRTG? Message-ID: <352B04312822444A962714393AED8A4D113834@ADAEVS01.int.chickasaw.net> I like the trending supplied by Nagios, but some different Usage statistics would be cool. Just wondering if this has been done? Thanks! Jeremy Russell Network Administrator CNI 580-272-2707 ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From jcarro10 at sprintspectrum.com Mon Mar 31 19:48:11 2003 From: jcarro10 at sprintspectrum.com (Carroll, Jim P [Contractor]) Date: Mon, 31 Mar 2003 11:48:11 -0600 Subject: nrpe questions Message-ID: If it's an option, why not set up a null passphrase for ssh for nagios itself? That way, you don't need to pass the passphrase to check_by_ssh. jc -----Original Message----- From: Matthew.Quinney at hollandandholland.com [mailto:Matthew.Quinney at hollandandholland.com] Sent: Monday, March 31, 2003 4:35 AM To: Nagios-Users Subject: Re: [Nagios-users] nrpe questions Dear All, Does anybody know if the check_by_ssh command can be configured to use a passphrase ? I have found some old links on the web but unfortunately they do not work. Many thanks Matthew Quinney -------------- next part -------------- An HTML attachment was scrubbed... URL: From oliver.devnull at gmx.net Mon Mar 31 19:58:12 2003 From: oliver.devnull at gmx.net (Oliver Thieke) Date: Mon, 31 Mar 2003 18:58:12 +0100 Subject: [Nagios-users]: Nagios/NagiosPlugins Solaris 8 pkg available In-Reply-To: <20030330235151.GC10861@ncf.ca> References: <5.1.0.14.0.20030328163625.00af4ec0@pop.gmx.net> <20030327215617.GA19420@ncf.ca> <5.1.0.14.0.20030328163625.00af4ec0@pop.gmx.net> Message-ID: <5.1.0.14.0.20030331184623.00b2f2c0@pop.gmx.net> Hi Andre and List ! > Yes, the CSWnagiosp has several dependencies in fact, > which don't all have to be satisfied depending on what > you are doing. > Go ahead and install it; if something isn't working right > then let me know and I will fix the package. OK - I'll try that ! > As for Solaris 2.6, well I don't have access to a 2.6 > build environment either, so I can't help you there. > You could try the 2.8 package though; I don't think > anything very bad will happen - perhaps you will be lucky. Unfortunately not :-(. When I try this I get the following error message: root at sun4u> pwd /tmp root at sun4u> ls nagiosp-1.3.0-SunOS5.8-sparc-CSW root at sun4u> pkgadd -d nagiosp-1.3.0-SunOS5.8-sparc-CSW pkgadd: ERROR: no packages were found in The environ should be OK because I installed a solaris2.6-package from sunfreeware without any hassle... And the same package worked fine on the sol.8-machine... Second thing I'm not shure about: I think someone told me once that solaris binaries are not downward compatible. A 2.6 binary will run on solaris 8 but not vice versa... Looks as if I'll have to jump into the rough waters of compiling NRPE/plugins for Solaris 2.6... > I'm glad someone is benefitting from these packages! I think there will be plenty more. Installing/Compiling on Solaris has been an issue on this list a couple of times. The package will make the installation much more easier. Saved time which can be spent on the struggle with the config ;-). Thanx for your help. Greetings from the polish border Oliver ------------------------------------------------------- This SF.net email is sponsored by: ValueWeb: Dedicated Hosting for just $79/mo with 500 GB of bandwidth! No other company gives more support or power for your dedicated server http://click.atdmt.com/AFF/go/sdnxxaff00300020aff/direct/01/ _______________________________________________ Nagios-users mailing list Nagios-users at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/nagios-users ::: Please include Nagios version, plugin version (-v) and OS when reporting any issue. ::: Messages without supporting info will risk being sent to /dev/null From David at feedroom.com Mon Mar 31 19:40:49 2003 From: David at feedroom.com (David Gitman) Date: Mon, 31 Mar 2003 12:40:49 -0500 Subject: email notifications Message-ID: Email notifications are being sent from root at host. When I run the command definition by hand it comes from nagios at host. Nagios is running as nagios. Any Ideas? ps -ef | grep nagios nagios 6314 1 0 Mar 20 ? 48:26 /local/project/nagios/bin/nagios -d /local/project/nagios/etc/nagios.cfg dgitman 17296 4466 0 12:38:52 pts/18 0:00 grep nagios # 'notify-by-email' command definition define command{ command_name notify-by-email command_line /usr/bin/printf "%b" "***** Nagios 1.0 *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SE RVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n $OUTPUT$" | /usr/bin/mailx -s "** $NOTIFICATIONTYPE$ alert - $HOSTALIAS$/$SERVICEDESC$ is $SERVICESTATE$ **" $CONTACTEMAIL$ } -------------- next part -------------- An HTML attachment was scrubbed... URL: