Problem with Nagios NRPE

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
charly1986
Posts: 3
Joined: Wed Jan 25, 2012 4:43 am

Problem with Nagios NRPE

Post by charly1986 »

Hello,

I installed Nagios Core on a server, and I have several Windows clients monitored without any problem. Now I want to install the NRPE plugin in server and client to monitor a Linux client, too, follow the instructions for Nagios, but when I run the command. / Configure I get this error: "checking for SSL libraries ... configure: error: Can not find ssl libraries ".
The only thing I have found some support forums is that you need the package "libssl-dev" but I have it installed and I still shows the same error.

Did I leave any step in the installation?

regards
User avatar
lmiltchev
Former Nagios Staff
Posts: 13587
Joined: Mon May 23, 2011 12:15 pm

Re: Problem with Nagios NRPE

Post by lmiltchev »

Run (in CentOS):

Code: Select all

# yum list installed | grep openssl*
or run (in Ubuntu):

Code: Select all

# dpkg --get-selections | grep openssl*
and post the output.
Be sure to check out our Knowledgebase for helpful articles and solutions!
charly1986
Posts: 3
Joined: Wed Jan 25, 2012 4:43 am

Re: Problem with Nagios NRPE

Post by charly1986 »

root@revnagios:~# dpkg --get-selections | grep openssl*
libcurl4-openssl-dev install
openssh-client install
openssh-server install
openssl install
python-openssl install
User avatar
nscott
Posts: 1040
Joined: Wed May 11, 2011 8:54 am

Re: Problem with Nagios NRPE

Post by nscott »

Looks like you may need:

apt-get install libssl-dev
Nicholas Scott
Former Nagios employee
charly1986
Posts: 3
Joined: Wed Jan 25, 2012 4:43 am

Re: Problem with Nagios NRPE

Post by charly1986 »

Already tried that command, and the result is this:

Reading package lists ... done
Building dependency tree
Reading state information ... done
libssl-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

I think that I have installed this package.

P.D. I confirm that I have installed this package:

accountsservice install
base-passwd install
build-essential install
insserv install
less install
libaccountsservice0 install
libclass-accessor-perl install
libclass-isa-perl install
libclass-load-perl install
libclass-singleton-perl install
libcurl4-openssl-dev install
libgssapi-krb5-2 install
libgssrpc4 install
libnet-ssh2-perl install
libpciaccess0 install
libss2 install
libssh2-1 install
libssh2-php install
libssl-dev install
libssl-doc install
libssl1.0.0 install
openssh-client install
openssh-server install
openssl install
passwd install
python-openssl install
ssh-import-id install
ssl-cert install
wireless-crda install
wireless-tools install
Locked