Re: [Nagios-users] sms_client: In Nagios 1.4 it works, but not in 2.5 ?

2006-08-21 Thread Andre Bergei
On Mon, 2006-08-21 at 08:06 +0200, D.J. Bolderman wrote:
> >
> > How long does it take to run sms_client? Seems like Nagios kills it
> > after 30 seconds, maybe you have longer notification timeout in your
> > Nagios-1.x config file.
> 
> How can I adjust the timeout only for the sms_client command ? For all
> other things, the 30 second timeout is just fine.
> 

There is just an global timeout for notification, if you got other
notification scripts, you have to handle timeouts directly in the
script.

http://nagios.sourceforge.net/docs/2_0/configmain.html#notification_timeout

/andré


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


[Nagios-users] Sending SNMP traps to a management host

2006-08-21 Thread narendran.neelamegam
Hi,

1. I have to configure Nagios to send alerts to a management host.

These two are connected via VPN. What will be best method to sent nagios
alerts to the management host.

2. I thought of sending Nagios alerts as SNMP traps to management host.

I have followed the procedure listed below and was not successful.
Please suggest me a procedure to configure SNMP traps to management
host. Thanks.

I have followed the procedure as listed below. Please let me how I can
correclty configure SNMP traps to be sent from Nagios to management host


Configured Event Handling in Services.cfg

define service{
use generic-service ; Name
of service template to use

host_name   test-server
service_description SVCS-SERVICES-ITO
is_volatile 0
check_period24x7
max_check_attempts  1
normal_check_interval   2
retry_check_interval1
contact_groups  windows-admins
notification_interval   90
notification_period 24x7
notification_optionsc,r
event_handler   send_trap
event_handler_enabled1
check_command
check_nt_service!'AdaptecStorageManagerAgent',Browser,Dfs,Dnscache,Event
log,EventSystem,lanmanserver,lanmanworkstation,LmHosts,Messenger,MSDTC,N
etlogon,PlugPlay,ProtectedStorage,RasMan,RemoteRegistry,RpcSs,SamSs,Sche
dule,seclogon,SENS,TermService,W32Time,WinMgmt,wuauserv,NSClient++,Tomca
t5,'DNS',TermService,AeLookupSvc,AppMgmt,BITS,CertSVc,EventSystem,DcomLa
unch,ERSvc,Eventlog,NtFrs,HTTPFilter,IISADMIN,RpcSs,SamSs,SENS
}

Configured Trap handling command in misccommands.cfg

# SNMP TRAP EVENT HADNLER

define command{
command_name send_trap
command_line /usr/local/nagios/libexec/send_trap 192.168.16.11 public
$HOSTNAME$ $SERVICEDESC$ $SERVICESTATEID$ $SERVICEOUTPUT$
}

Send_Trap script

# Arguments:
# $1 = Management Station
# $2 = Community String
# $3 = host_name
# $4 = service_description (Description of the service)
# $5 = return_code (An integer that determines the state
# of the service check, 0=OK, 1=WARNING, 2=CRITICAL,
# 3=UNKNOWN).
# $6 = plugin_output (A text string that should be used
# as the plugin output for the service check)
#
#
/usr/bin/snmptrap -v 2c -c $2 $1 '' NAGIOS-NOTIFY-MIB::nSvcEvent
nSvcHostname s "$3" nSvcDesc s "$4" nSvcStateID i $5 nSvcOutput s "$6"

When the service fails the event handler script is executing...

[1156147494] SERVICE NOTIFICATION:
nagios;test-server;SVCS-SERVICES-ITO;OK;notify-by-epager; OK: All
services are running.
[1156147494] SERVICE NOTIFICATION:
nagios;test-server;SVCS-SERVICES-ITO;OK;notify-by-email; OK: All
services are running.
[1156147494] SERVICE EVENT HANDLER:
test-server;SVCS-SERVICES-ITO;OK;HARD;1;send_trap

I'm running the snmp trapd as

/usr/sbin/snmptrapd -m ALL -M /usr/share/snmp/mibs -c
/etc/snmp/snmptrad.conf -u /var/run/snmptrapd.pid

However the management host does not receive any alert ?

Thanks and Regards,

Narendran Neelamegam


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


[Nagios-users] plugin upgrade problem

2006-08-21 Thread atstake atstake
I am trying to upgrade nagios plugins to v1.4.3 (1.89) on Suse
Enterprise Server 9. I need this upgrade as I need the HTTPS check
feature ( -S switch ) for check_http.

I did -

 ./configure  --exec-prefix=/home/me/nagios/

and also,

./configure --with-openssl=yes --exec-prefix=/home/me/nagios

./configure --with-tls=yes --exec-prefix=/home/me/nagios

But everytime the output is -

--with-openssl: no
--with-gnutls: no

Nagios plugins compile fine but I don't get the -S feature in check_http.

I have the following OpenSSL and GnuTLS versions installed -

gnutls-1.0.8-26.4
openssl-0.9.7d-15.21

Nagios v2.4.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] plugin upgrade problem

2006-08-21 Thread Guillaume
atstake atstake a écrit :
> I am trying to upgrade nagios plugins to v1.4.3 (1.89) on Suse
> Enterprise Server 9. I need this upgrade as I need the HTTPS check
> feature ( -S switch ) for check_http.
> 
> I did -
> 
>  ./configure  --exec-prefix=/home/me/nagios/
> 
> and also,
> 
> ./configure --with-openssl=yes --exec-prefix=/home/me/nagios
> 
> ./configure --with-tls=yes --exec-prefix=/home/me/nagios
> 
> But everytime the output is -
> 
> --with-openssl: no
> --with-gnutls: no
> 
> Nagios plugins compile fine but I don't get the -S feature in check_http.
> 
> I have the following OpenSSL and GnuTLS versions installed -
> 
> gnutls-1.0.8-26.4
> openssl-0.9.7d-15.21
> 
> Nagios v2.4.
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Nagios-users mailing list
> Nagios-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/nagios-users
> ::: Please include Nagios version, plugin version (-v) and OS when reporting 
> any issue. 
> ::: Messages without supporting info will risk being sent to /dev/null


Hi,

You need the devel packages of SSL
something like: libssl-devel or something like that...

I don't use Suse so i can not tell you the exact name of the package.

Regards
Guillaume


-- 
Guillaume
E-mail: silencer__free-4ever__net
Blog: http://guillaume.free-4ever.net

Site: http://www.free-4ever.net

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


[Nagios-users] dependencies and AND

2006-08-21 Thread jan gregor
Hello all,

i have defined multiple host dependencis for one single host. Now
notification is not sent when any of dependencies failed (any of hosts
dependent upon is down). Is there any possibility to tweak this
dependencies that notification is not sent only if ALL of hosts depended
upon are down and sent it normally when only some of them are down?

Many thanks for any ideas.
Best regards,

Jan Gregor

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] plugin upgrade problem

2006-08-21 Thread atstake atstake
On 8/21/06, Guillaume <[EMAIL PROTECTED]> wrote:
> You need the devel packages of SSL
> something like: libssl-devel or something like that...

I installed the package; SSL is enabled but now I get a "make" error.
When I run "make" I get the following error -

check_http.o(.text+0xc9b): In function `check_http':
nagios-plugins-1.4.3/plugins/check_http.c:807: undefined reference to
`np_net_ssl_write'
check_http.o(.text+0xcca):nagios-plugins-1.4.3/plugins/check_http.c:811:
undefined reference to `np_net_ssl_read'
check_http.o(.text+0xd8e):/nagios-plugins-1.4.3/plugins/check_http.c:850:
undefined reference to `np_net_ssl_cleanup'
check_http.o(.text+0xfca):/nagios-plugins-1.4.3/plugins/check_http.c:759:
undefined reference to `np_net_ssl_init'
check_http.o(.text+0xfe9):easysadmin/nagios-plugins-1.4.3/plugins/check_http.c:761:
undefined reference to `np_net_ssl_check_cert'
check_http.o(.text+0xff0):nagios-plugins-1.4.3/plugins/check_http.c:762:
undefined reference to `np_net_ssl_cleanup'

collect2: ld returned 1 exit status
make[3]: *** [check_http] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Solved - plugin upgrade problem

2006-08-21 Thread atstake atstake
On 8/21/06, atstake atstake <[EMAIL PROTECTED]> wrote:
> I installed the package; SSL is enabled but now I get a "make" error.
> When I run "make" I get the following error -


I solved the problem. I just did a "make clean && make && make
install" and it solved the problem. The trick was "make clean"

Thanks!

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


[Nagios-users] Dell Open Manage Checks

2006-08-21 Thread Tom Brown
Hi

I have been using the Open Manage checks that run using nrpe for ages 
and they worked fine for openmanage upto version 4.5. I have since 
started to deploy version 5 of this software and i am seeing a critical 
alert even though the disk array is fine

STORAGE: CRITICAL [ Ctrl 0 Disk 0:0 is Ok(No) Ctrl 0 Disk 0:1 is Ok(No) ]

does anyone know of updated plugins that work with openmanage version 5?

thanks

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] dependencies and AND

2006-08-21 Thread Morris, Patrick
> i have defined multiple host dependencis for one single host. 
> Now notification is not sent when any of dependencies failed 
> (any of hosts dependent upon is down). Is there any 
> possibility to tweak this dependencies that notification is 
> not sent only if ALL of hosts depended upon are down and sent 
> it normally when only some of them are down?

One possibility (and this may not be the best way -- it's on
off-the-top-of-my-head thing) would be to have an addition check using
check_cluster that failes if all of the depended-on services are down,
and depend on that.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Dell Open Manage Checks

2006-08-21 Thread Tom Brown

> I have been using the Open Manage checks that run using nrpe for ages 
> and they worked fine for openmanage upto version 4.5. I have since 
> started to deploy version 5 of this software and i am seeing a critical 
> alert even though the disk array is fine
> 
> STORAGE: CRITICAL [ Ctrl 0 Disk 0:0 is Ok(No) Ctrl 0 Disk 0:1 is Ok(No) ]
> 
> does anyone know of updated plugins that work with openmanage version 5?

my mistake sorry - seems a more recent version of this check is 
available and allows v5 compatibility.

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


[Nagios-users] Service Checks in Distributed mode

2006-08-21 Thread Ian Marks
I have 2 nagios 2.5 servers running; both are doing active checks, but 
one acts as the "central" server and receives passive checks from the 
other.  I have it set up this way so our analysts will only have to 
monitor "one" server.  I am seeing major delays with service checks on 
the central server.  I am assuming my server is getting backed up trying 
to process all the passive checks, so the active checks are only being 
executed every 30-45 minutes.  Is this possible?  What would be the best 
way to solve this problem, removing the passive checks?

Here are the stats:

##Central server##

Program Running Time: 0d 4h 31m 26s

Total Services:   812
Services Checked: 812
Services Scheduled:   439
Active Service Checks:439
Passive Service Checks:   373
Total Service State Change:   0.000 / 34.210 / 0.121 %
Active Service Latency:   449.349 / 1996.148 / 1329.618 %
Active Service Execution Time:0.049 / 60.556 / 7.779 sec
Active Service State Change:  0.000 / 11.580 / 0.065 %
Active Services Last 1/5/15/60 min:   0 / 0 / 427 / 439
Passive Service State Change: 0.000 / 34.210 / 0.188 %
Passive Services Last 1/5/15/60 min:  0 / 0 / 94 / 367
Services Ok/Warn/Unk/Crit:720 / 8 / 18 / 66
Services Flapping:0
Services In Downtime: 0

Total Hosts:  243
Hosts Checked:243
Hosts Scheduled:  0
Active Host Checks:   178
Passive Host Checks:  65
Total Host State Change:  0.000 / 27.760 / 0.149 %
Active Host Latency:  0.000 / 2751.689 / 25.196 %
Active Host Execution Time:   0.016 / 10.015 / 1.171 sec
Active Host State Change: 0.000 / 0.000 / 0.000 %
Active Hosts Last 1/5/15/60 min:  2 / 5 / 17 / 19
Passive Host State Change:0.000 / 27.760 / 0.557 %
Passive Hosts Last 1/5/15/60 min: 1 / 32 / 62 / 63
Hosts Up/Down/Unreach:212 / 31 / 0
Hosts Flapping:   0
Hosts In Downtime:0

##Server Submitting Passive Checks##

Program Running Time: 3d 20h 24m 19s

Total Services:   367
Services Checked: 367
Services Scheduled:   367
Active Service Checks:367
Passive Service Checks:   0
Total Service State Change:   0.000 / 6.250 / 0.017 %
Active Service Latency:   233.540 / 349.122 / 284.721 %
Active Service Execution Time:0.023 / 34.478 / 4.352 sec
Active Service State Change:  0.000 / 6.250 / 0.017 %
Active Services Last 1/5/15/60 min:   0 / 151 / 367 / 367
Passive Service State Change: 0.000 / 0.000 / 0.000 %
Passive Services Last 1/5/15/60 min:  0 / 0 / 0 / 0
Services Ok/Warn/Unk/Crit:329 / 6 / 18 / 14
Services Flapping:0
Services In Downtime: 0

Total Hosts:  63
Hosts Checked:63
Hosts Scheduled:  0
Active Host Checks:   63
Passive Host Checks:  0
Total Host State Change:  0.000 / 0.000 / 0.000 %
Active Host Latency:  0.000 / 381.349 / 309.423 %
Active Host Execution Time:   0.110 / 18.916 / 3.671 sec
Active Host State Change: 0.000 / 0.000 / 0.000 %
Active Hosts Last 1/5/15/60 min:  0 / 35 / 63 / 63
Passive Host State Change:0.000 / 0.000 / 0.000 %
Passive Hosts Last 1/5/15/60 min: 0 / 0 / 0 / 0
Hosts Up/Down/Unreach:57 / 6 / 0
Hosts Flapping:   0
Hosts In Downtime:0



Thanks,
Ian


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Service Checks in Distributed mode

2006-08-21 Thread Demetri Mouratis
On Mon, 21 Aug 2006, Ian Marks wrote:

> I have 2 nagios 2.5 servers running; both are doing active checks, but
> one acts as the "central" server and receives passive checks from the
> other.  I have it set up this way so our analysts will only have to
> monitor "one" server.  I am seeing major delays with service checks on
> the central server.  I am assuming my server is getting backed up trying
> to process all the passive checks, so the active checks are only being
> executed every 30-45 minutes.  Is this possible?  What would be the best
> way to solve this problem, removing the passive checks?

My suggestion in a Distributed environment is to have your Central server 
perform only passive checks.  This cleans up the configuration a bit and 
allows for the "one page to view" feature you are after.  If, for network 
topology issues, you need to have two Distributed active Nagios boxes, I 
would add a third, Central and have each Distributed send results over to 
this third box.  It helps to rsync or otherwise copy the files from 
Distributed to Central to avoid having multiple configuration points.

If your total number of services monitored is above 1,000, I would suggest 
a slight modification from what the docs suggest.  That is to use global 
service event handlers to notify of changes versus ocsp.  This will cut 
down on the number of updates to your Central server dramatically and 
reduce the lag from a change on Distributed to that change being reflected 
on Central.

Any questions, please ask.

-D

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Service Checks in Distributed mode

2006-08-21 Thread Ian Marks
My 2 current nagios servers are running on Dell 1750's. Each has a 
2.4GHz Xeon Processor and 2 Gigs of Ram. What type of specs would be 
needed if I were to add a central server that only deals with passive 
checks?  I am pretty sure I could come up with a smaller server; would 
it be better to use that for the centralized server, or move one the 
1750's into that role?

Thanks,
Ian

Demetri Mouratis wrote:
> On Mon, 21 Aug 2006, Ian Marks wrote:
>
>   
>> I have 2 nagios 2.5 servers running; both are doing active checks, but
>> one acts as the "central" server and receives passive checks from the
>> other.  I have it set up this way so our analysts will only have to
>> monitor "one" server.  I am seeing major delays with service checks on
>> the central server.  I am assuming my server is getting backed up trying
>> to process all the passive checks, so the active checks are only being
>> executed every 30-45 minutes.  Is this possible?  What would be the best
>> way to solve this problem, removing the passive checks?
>> 
>
> My suggestion in a Distributed environment is to have your Central server 
> perform only passive checks.  This cleans up the configuration a bit and 
> allows for the "one page to view" feature you are after.  If, for network 
> topology issues, you need to have two Distributed active Nagios boxes, I 
> would add a third, Central and have each Distributed send results over to 
> this third box.  It helps to rsync or otherwise copy the files from 
> Distributed to Central to avoid having multiple configuration points.
>
> If your total number of services monitored is above 1,000, I would suggest 
> a slight modification from what the docs suggest.  That is to use global 
> service event handlers to notify of changes versus ocsp.  This will cut 
> down on the number of updates to your Central server dramatically and 
> reduce the lag from a change on Distributed to that change being reflected 
> on Central.
>
> Any questions, please ask.
>
> -D
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Nagios-users mailing list
> Nagios-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/nagios-users
> ::: Please include Nagios version, plugin version (-v) and OS when reporting 
> any issue. 
> ::: Messages without supporting info will risk being sent to /dev/null
>
>   

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Service Checks in Distributed mode

2006-08-21 Thread Demetri Mouratis

On Mon, 21 Aug 2006, Ian Marks wrote:

> My 2 current nagios servers are running on Dell 1750's. Each has a
> 2.4GHz Xeon Processor and 2 Gigs of Ram. What type of specs would be
> needed if I were to add a central server that only deals with passive
> checks?  I am pretty sure I could come up with a smaller server; would
> it be better to use that for the centralized server, or move one the
> 1750's into that role?
>
> Thanks,
> Ian


Ian,

I'm familiar with the 1750s having used them in my past job.  I had a 1750 
as my Central getting updates from about 20 different Distributeds and 
accounting for about 1000 total services.  The 1750 was definitely up to 
that task and probably had RAM/CPU cycles to spare.  You could probably 
have an even smaller box, maybe a Dell 850 server as your Central.

Hope that helps!

-D

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] BUG? Segfault & coredump with scheduled downtime, downtime scheduled horked

2006-08-21 Thread karl . kornel

Dear all,

        I
have a small but interesting update regarding the problem I have been having:
 Nagios' regular crashing when multiple downtimes are scheduled.

        I
have verified the behavior the I described earlier.  All downtimes
(6 or more) are submitted to Nagios at midnight.  The first downtime
starts as normal.  However, when the first downtime ends, all other
downtimes immediately begin, even though it is not their time.  This
time, however:

1) I did not use Nagios version 2.5.
 I used the version of Nagios in CVS (I downloaded the daily CVS tarball
from 17 August 2006).

2) When I noticed that all of my scheduled
downtimes were active when they should not have been, I checked the downtime.dat
file.  The downtime.dat file contained correct information, the downtime
start and end times were all correct.  It seems that Nagios had decided
to corrupt those values in memory.

3) After I was done looking at downtime.dat,
I restarted Nagios (through the CGIs).  Nagios promptly restarted,
and everything seems back to normal.  I guess Nagios reloaded the
downtime schedule from the data file.

        So,
more useful information.  So far I haven't received any advice on
my problem, either on-list or off-list?  Any ideas/advice/help?  Thanks
in advance!

-- A. Karl Kornel, Mindspeed Technologies, Inc.
[EMAIL PROTECTED] -- (949) 579-3503
"Remember the Rules: Separation & Optimization"-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null

[Nagios-users] hostgroup + service check = overides?

2006-08-21 Thread Scott Baker
I have several servers and thus I've used the "hostgroup_name" to
apply several generic services to about 10 of my servers. That way I
don't have to define a ping service for each host, just that group.

One of the services that I've applied is "load average" and I have
one server out of ten that's paging out due to high load. This is
normal because this server does more work. So I'd like to up the
settings for that one server, but I can't without changing the
settings for the WHOLE group.

Is there a way I can override that one service for that one server?
I was hoping I could just redefine that service and it would
override the "global" setting but Nagios complains about duplicate
service entries.

-- 
Scott Baker - RHCE
Canby Telcom System Administrator
503.266.8253

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


Re: [Nagios-users] Service Checks in Distributed mode

2006-08-21 Thread Steve Shipway
> My 2 current nagios servers are running on Dell 1750's. Each 
> has a 2.4GHz Xeon Processor and 2 Gigs of Ram. What type of 
> specs would be needed if I were to add a central server that 
> only deals with passive checks?  I am pretty sure I could 
> come up with a smaller server; would it be better to use that 
> for the centralized server, or move one the 1750's into that role?

We're running a single twin 2.4GHz Xeon server with 2GB of memory and
it's happily handling 3450 active checks and 133 passive checks.  I
suspect we could get up to 6000 at least before it started to struggle.

Steve

--
Steve Shipway
ITSS, University of Auckland 
(09) 3737 599 x 86487
[EMAIL PROTECTED]


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null


[Nagios-users] nrpe compile error on Red Hat Enterprise Linux AS release 3

2006-08-21 Thread Wu, Shirley








Hello,

 

I am compiling the nrpe on Red Hat Enterprise Linux AS
release 3 and had following errors:

 

[EMAIL PROTECTED] nrpe-2.5.2]# make all

cd ./src/; make ; cd ..

make[1]: Entering directory `/root/nrpe-2.5.2/src'

gcc -g -O2 -I/usr/local/ssl/include/openssl
-I/usr/local/ssl/include -DHAVE_CONFIG_H -o nrpe nrpe.c utils.c
-L/usr/local/ssl/lib  -lssl -lcrypto -lnsl -lwrap 

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x37): In
function `dlfcn_load':

: undefined reference to `dlopen'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x98): In
function `dlfcn_load':

: undefined reference to `dlclose'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0xc0): In
function `dlfcn_load':

: undefined reference to `dlerror'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x141): In
function `dlfcn_bind_var':

: undefined reference to `dlsym'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x16c): In
function `dlfcn_bind_var':

: undefined reference to `dlerror'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x229): In
function `dlfcn_bind_func':

: undefined reference to `dlsym'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x254): In
function `dlfcn_bind_func':

: undefined reference to `dlerror'

/usr/local/ssl/lib/libcrypto.a(dso_dlfcn.o)(.text+0x512): In
function `dlfcn_unload':

: undefined reference to `dlclose'

collect2: ld returned 1 exit status

make[1]: *** [nrpe] Error 1

make[1]: Leaving directory `/root/nrpe-2.5.2/src'

 

*** Compile finished ***

 

Has anyone encountered the same problem before?

 

Thanks,

 

Shirley Wu

 

Enterprise System
Management

Electronic Arts, Inc.






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Nagios-users mailing list
Nagios-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/nagios-users
::: Please include Nagios version, plugin version (-v) and OS when reporting 
any issue. 
::: Messages without supporting info will risk being sent to /dev/null