Posts tagged as:

nagios

Error Starting up NRPE daemon

by Perk1z on May 23, 2008

root@titik [/usr/local/nagios/etc]# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
root@titik [/usr/local/nagios/etc]# tail -f /var/log/messages
May 23 22:19:57 titik nrpe[3306]: Starting up daemon
May 23 22:19:57 titik nrpe[3306]: Network server bind failure (99: Cannot assign requested address)

Solusi :

edit /usr/local/nagios/etc/nrpe.conf
correct server_address

and try again

root@titik [/usr/local/nagios/etc]# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
root@titik [/usr/local/nagios/etc]# tail -f /var/log/messages
May 23 22:40:53 titik nrpe[22116]: Starting up daemon
May 23 22:40:53 titik nrpe[22116]: Listening for connections on port 5666
May 23 22:40:53 titik nrpe[22116]: Allowing connections from: 64.233.187.99

Popularity: 4% [?]

{ 0 comments }

Nagios NRPE Command for checking exim queue count

by Perk1z on April 20, 2008

Nagios NRPE Command for checking exim queue count
Written by Sayid Munawar <ayik@freebsd.or.id>
script skeleteon based on check_log written by Ethan Galstad (nagios@nagios.org)
Last Modified: August 5, 2006

Usage: ./check_eximq [-w count_warn] -c [count_crit]

Description:
This plugin will get output from exim -bpc. That is the count for current exim queue
if output is below count_warn then will return OK,
if output is between count_warn and count_crit it will return WARN
if output is larger than count_crit it will return CRIT.

Success tested on :

  • CENTOS Enterprise 5 (nagios-plugins 1.4.10)
  • Freebsd 6.2 (nagios-plugins 1.4.10, NRPE Plugin Version: 2.11)
  • REDHAT Enterprise 3 (nagios-plugins 1.4.10)

Nagios NRPE Command for checking exim queue count

Popularity: 24% [?]

{ 0 comments }