[Nagios-users] Problem with NRPE!!!

2009-01-12 Thread Sergio Ariel
I'm triying to install NRPE but I have a big problem.
All documents say that I must do next:

tar xzf nrpe-2.8.tar.gz
cd nrpe-2.8
./configure
make all
make install-plugin
make install-daemon
make install-daemon-config

But when I try to run any make command I receive this error:
make: *** No rule to make target `all'.  Stop.

What can I do?

Thanks.


-- 
Sergio Ariel de la Campa Saiz
Administrador Red UH

--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
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] Problem with NRPE!!!

2009-01-12 Thread Richard Quintin
This probably means the ./configure step failed.  Take a look at config.log.

On Mon, Jan 12, 2009 at 12:24 PM, Sergio Ariel sergio.ar...@iris.uh.cuwrote:

 I'm triying to install NRPE but I have a big problem.
 All documents say that I must do next:

 tar xzf nrpe-2.8.tar.gz
 cd nrpe-2.8
 ./configure
 make all
 make install-plugin
 make install-daemon
 make install-daemon-config

 But when I try to run any make command I receive this error:
 make: *** No rule to make target `all'.  Stop.

 What can I do?

 Thanks.


 --
 Sergio Ariel de la Campa Saiz
Administrador Red UH


 --
 This SF.net email is sponsored by:
 SourcForge Community
 SourceForge wants to tell your story.
 http://p.sf.net/sfu/sf-spreadtheword
 ___
 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




-- 
Richard Quintin, DBA
Database  Application Administration
Virginia Tech
--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword___
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] Problem installing nrpe plugins

2008-09-26 Thread Steven Battaille
Hello

 

When I try to install the nrpe plugins on a redhat linux system trough
the command make I get the following error:

 

cc1: warning: changing search order for system directory /usr/include

cc1: warning:   as it has already been specified as a non-system
directory

check_pgsql.c:44:30: pg_config_manual.h: No such file or directory

make[2]: *** [check_pgsql.o] Error 1

make[2]: Leaving directory
`/root/downloads/nagios-plugins-1.4.13/plugins'

make[1]: *** [all-recursive] Error 1

make[1]: Leaving directory `/root/downloads/nagios-plugins-1.4.13'

make: *** [all] Error 2

 

Does anyone have an idea where this is coming from and how this can be
resolved?

 

Thanks


Steven

 

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
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] Problem installing nrpe plugins

2008-09-26 Thread Marc Powell

On Sep 26, 2008, at 3:48 AM, Steven Battaille wrote:

 Hello

 When I try to install the nrpe plugins on a redhat linux system  
 trough the command make I get the following error:

 cc1: warning: changing search order for system directory /usr/ 
 include
 cc1: warning:   as it has already been specified as a non-system  
 directory
 check_pgsql.c:44:30: pg_config_manual.h: No such file or directory

It looks like you may have specified the '--with-pgsql=...' argument  
to ./configure but don't have the postgres development libraries  
installed (postgres-devel I believe), or the location you specified  
with --with-pgsql is incorrect.

--
Marc


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
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] Problem Compiling NRPE 2.6 on Fedora Core 5

2007-01-02 Thread Kaplan, Andrew H.
Hi there --

I got around the issue by recompiling nrpe without ssl support. Once I did that,
I then configured the command definition on the server not to use ssl,
and then also had the client in question run nrpe in a similar manner. 

I know that is not a solution but really a workaround. As it is, I am now able
to monitor the remote client. 

-Original Message-
From: Andy Shellam (Mailing Lists) [mailto:[EMAIL PROTECTED]

Sent: Friday, December 29, 2006 5:04 PM
To: Kaplan, Andrew H.
Cc: nagios-users@lists.sourceforge.net
Subject: Re: [Nagios-users] Problem Compiling NRPE 2.6 on Fedora Core 5

This seems as if it could be an error in the makefile, a missing library 
on your system, or an incorrect path in your /etc/ld.so.conf file.

Try passing LDFLAGS=-ldl to the configure script - eg.

LDFLAGS=-ldl ./configure --prefix=/usr/local/nagios

Or, find the dl library (find / -name libdl*) and add the path to it:

LDFLAGS=/lib -ldl ./configure --prefix=/usr/local/nagios

Andy.



Kaplan, Andrew H. wrote:

 I am trying to compile NRPE 2.6 on a system running Fedora Core 5, but 
 I am running into issues.

 Whenever I try to complete the make all command as either root, sudo 
 user, or a regular user, I get

 and Error 1 message. The lines shown below are a sample of the output 
 I am seeing:

  

 dso_dlfcn.c:(. text+0x746): undefined reference to dlopen

 dso_dlfcn.c:(. text+0x7ba): undefined reference to dlclose

 dso_dlfcn.c:(. text+0x7f1): undefined reference to dlerror

 collect2: ld returned 1 exit status

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

  

 What is the cause of this, and how can I correct it so I can compile 
 NRPE?

  

 THE INFORMATION TRANSMITTED IN THIS ELECTRONIC COMMUNICATION IS 
 INTENDED ONLY FOR THE PERSON OR ENTITY TO WHOM IT IS ADDRESSED AND MAY 
 CONTAIN CONFIDENTIAL AND/OR PRIVILEGED MATERIAL. ANY REVIEW, 
 RETRANSMISSION, DISSEMINATION OR OTHER USE OF OR TAKING OF ANY ACTION 
 IN RELIANCE UPON, THIS INFORMATION BY PERSONS OR ENTITIES OTHER THAN 
 THE INTENDED RECIPIENT IS PROHIBITED. IF YOU RECEIVED THIS INFORMATION 
 IN ERROR, PLEASE CONTACT THE SENDER AND THE PRIVACY OFFICER, AND 
 PROPERLY DISPOSE OF THIS INFORMATION. !DSPAM:37,45958dd231949907517376!
 

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 !DSPAM:37,45958dd231949907517376!
   
 

 ___
 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

 !DSPAM:37,45958dd231949907517376!
   


-- 
Andy Shellam
NetServe Support Team

the Mail Network
an alternative in a standardised world

p: +44 (0) 121 288 0832/0839
m: +44 (0) 7818 000834





THE INFORMATION TRANSMITTED IN THIS ELECTRONIC COMMUNICATION IS INTENDED ONLY 
FOR THE PERSON OR ENTITY TO WHOM IT IS ADDRESSED AND MAY CONTAIN CONFIDENTIAL 
AND/OR PRIVILEGED MATERIAL.  ANY REVIEW, RETRANSMISSION, DISSEMINATION OR OTHER 
USE OF OR TAKING OF ANY ACTION IN RELIANCE UPON, THIS INFORMATION BY PERSONS OR 
ENTITIES OTHER THAN THE INTENDED RECIPIENT IS PROHIBITED.  IF YOU RECEIVED THIS 
INFORMATION IN ERROR, PLEASE CONTACT THE SENDER AND THE PRIVACY OFFICER, AND 
PROPERLY DISPOSE OF THIS INFORMATION.



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] Problem Compiling NRPE 2.6 on Fedora Core 5

2006-12-29 Thread Kaplan, Andrew H.
I am trying to compile NRPE 2.6 on a system running Fedora Core 5, but I am
running into issues. 

Whenever I try to complete the make all command as either root, sudo user, or a
regular user, I get

and Error 1 message. The lines shown below are a sample of the output I am
seeing:

 

dso_dlfcn.c:(. text+0x746): undefined reference to dlopen

dso_dlfcn.c:(. text+0x7ba): undefined reference to dlclose

dso_dlfcn.c:(. text+0x7f1): undefined reference to dlerror

collect2: ld returned 1 exit status

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

 

What is the cause of this, and how can I correct it so I can compile NRPE? 

 





THE INFORMATION TRANSMITTED IN THIS ELECTRONIC COMMUNICATION IS INTENDED ONLY 
FOR THE PERSON OR ENTITY TO WHOM IT IS ADDRESSED AND MAY CONTAIN CONFIDENTIAL 
AND/OR PRIVILEGED MATERIAL.  ANY REVIEW, RETRANSMISSION, DISSEMINATION OR OTHER 
USE OF OR TAKING OF ANY ACTION IN RELIANCE UPON, THIS INFORMATION BY PERSONS OR 
ENTITIES OTHER THAN THE INTENDED RECIPIENT IS PROHIBITED.  IF YOU RECEIVED THIS 
INFORMATION IN ERROR, PLEASE CONTACT THE SENDER AND THE PRIVACY OFFICER, AND 
PROPERLY DISPOSE OF THIS INFORMATION.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
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] Problem Compiling NRPE 2.6 on Fedora Core 5

2006-12-29 Thread Andy Shellam (Mailing Lists)
This seems as if it could be an error in the makefile, a missing library 
on your system, or an incorrect path in your /etc/ld.so.conf file.

Try passing LDFLAGS=-ldl to the configure script - eg.

LDFLAGS=-ldl ./configure --prefix=/usr/local/nagios

Or, find the dl library (find / -name libdl*) and add the path to it:

LDFLAGS=/lib -ldl ./configure --prefix=/usr/local/nagios

Andy.



Kaplan, Andrew H. wrote:

 I am trying to compile NRPE 2.6 on a system running Fedora Core 5, but 
 I am running into issues.

 Whenever I try to complete the make all command as either root, sudo 
 user, or a regular user, I get

 and Error 1 message. The lines shown below are a sample of the output 
 I am seeing:

  

 dso_dlfcn.c:(. text+0x746): undefined reference to dlopen

 dso_dlfcn.c:(. text+0x7ba): undefined reference to dlclose

 dso_dlfcn.c:(. text+0x7f1): undefined reference to dlerror

 collect2: ld returned 1 exit status

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

  

 What is the cause of this, and how can I correct it so I can compile 
 NRPE?

  

 THE INFORMATION TRANSMITTED IN THIS ELECTRONIC COMMUNICATION IS 
 INTENDED ONLY FOR THE PERSON OR ENTITY TO WHOM IT IS ADDRESSED AND MAY 
 CONTAIN CONFIDENTIAL AND/OR PRIVILEGED MATERIAL. ANY REVIEW, 
 RETRANSMISSION, DISSEMINATION OR OTHER USE OF OR TAKING OF ANY ACTION 
 IN RELIANCE UPON, THIS INFORMATION BY PERSONS OR ENTITIES OTHER THAN 
 THE INTENDED RECIPIENT IS PROHIBITED. IF YOU RECEIVED THIS INFORMATION 
 IN ERROR, PLEASE CONTACT THE SENDER AND THE PRIVACY OFFICER, AND 
 PROPERLY DISPOSE OF THIS INFORMATION. !DSPAM:37,45958dd231949907517376!
 

 -
 Take Surveys. Earn Cash. Influence the Future of IT
 Join SourceForge.net's Techsay panel and you'll get the chance to share your
 opinions on IT  business topics through brief surveys - and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV

 !DSPAM:37,45958dd231949907517376!
   
 

 ___
 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

 !DSPAM:37,45958dd231949907517376!
   


-- 
Andy Shellam
NetServe Support Team

the Mail Network
an alternative in a standardised world

p: +44 (0) 121 288 0832/0839
m: +44 (0) 7818 000834


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] problem with nrpe

2006-10-10 Thread basile
hi
i get error message with nrpe  :  

CHECK_NRPE: Socket timeout after 10 seconds.

i have the max_check_attempt to 5 but still have the problem
what can i do , it s really a problem because notification become spam
i have two time a day notification for differents services

thanks
basile 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] problem with nrpe

2006-10-10 Thread Max H.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

basile wrote:
 hi
 i get error message with nrpe  :  
 
 CHECK_NRPE: Socket timeout after 10 seconds.
 
 i have the max_check_attempt to 5 but still have the problem
 what can i do , it s really a problem because notification become spam
 i have two time a day notification for differents services
 


Could you specify a few more details please. Do you have the check
command you're trying to specify defined in your nrpe.cfg file on the
remote client? Are permissions a problem? How are you running NRPE, as a
daemon? It could be a lot of different things.

Try to provide some details and the list can help.

Max
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)
Comment: Using GnuPG with CentOS - http://enigmail.mozdev.org

iD8DBQFFK4bfHoeeepPau2ERAsVNAKCC/W1XZ6hU4iKy1qSpOXlbieWzRACgmdp4
z2sNBmyebPXRCYntTSCVIAI=
=JDQV
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] problem with nrpe

2006-10-10 Thread basile
all works fine for all services except 2 or 3 times a day
it s not command definition problem , just sometimes nrpe
doesn t get result for checks


Max H. wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

basile wrote:
  

hi
i get error message with nrpe  :  

CHECK_NRPE: Socket timeout after 10 seconds.

i have the max_check_attempt to 5 but still have the problem
what can i do , it s really a problem because notification become spam
i have two time a day notification for differents services





Could you specify a few more details please. Do you have the check
command you're trying to specify defined in your nrpe.cfg file on the
remote client? Are permissions a problem? How are you running NRPE, as a
daemon? It could be a lot of different things.

Try to provide some details and the list can help.

Max
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)
Comment: Using GnuPG with CentOS - http://enigmail.mozdev.org

iD8DBQFFK4bfHoeeepPau2ERAsVNAKCC/W1XZ6hU4iKy1qSpOXlbieWzRACgmdp4
z2sNBmyebPXRCYntTSCVIAI=
=JDQV
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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
  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] problem with nrpe

2006-10-10 Thread Max H.
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

basile wrote:
 all works fine for all services except 2 or 3 times a day
 it s not command definition problem , just sometimes nrpe
 doesn t get result for checks
 

Is it consistent for all your services?

I know my checks across NRPE don't return values back either every now
and again when my remote client is doing some CPU and Hard drive intense
work. I'll get a timeout then, which I usually just bump up the timeout.

Perhaps try bumping your timeout up a few seconds to 15 or even 20. Are
the clients pretty busy machines?

Max





-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)
Comment: Using GnuPG with CentOS - http://enigmail.mozdev.org

iD8DBQFFK5PgHoeeepPau2ERAhSOAKDOBxDWHZ6Rv3US/dssAc5PKe7qPwCfQhNj
zhQ5Q4McVJqTjC6bMhBfAxk=
=Y26u
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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] problem with nrpe

2006-10-10 Thread basile
Max H. wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

basile wrote:
  

all works fine for all services except 2 or 3 times a day
it s not command definition problem , just sometimes nrpe
doesn t get result for checks




Is it consistent for all your services?

I know my checks across NRPE don't return values back either every now
and again when my remote client is doing some CPU and Hard drive intense
work. I'll get a timeout then, which I usually just bump up the timeout.

Perhaps try bumping your timeout up a few seconds to 15 or even 20. Are
the clients pretty busy machines?
  


yes it a mail server
i try what you say
thanks
basile

Max





-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.6 (GNU/Linux)
Comment: Using GnuPG with CentOS - http://enigmail.mozdev.org

iD8DBQFFK5PgHoeeepPau2ERAhSOAKDOBxDWHZ6Rv3US/dssAc5PKe7qPwCfQhNj
zhQ5Q4McVJqTjC6bMhBfAxk=
=Y26u
-END PGP SIGNATURE-

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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
  



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
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