i have installed nagios and i want to install nrpe. While installing NRPE, when i execute (/home/abc/nrpe/configure)
./configure
it stops after reaching the following line
...
checking for type of socket size... size_t
checking for SSL headers... SSL headers found in /usr
checking for SSL libraries... configure: error: Cannot find ssl libraries
I have installed libssl-dev and openssl package as i found them as a solution for this error.
I tried the following option also
./configure --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib
But the error remains.
What can be the possible solution for this ? I am using ubuntu 12.04 as my operating system. Thanks in advance.
this worked for me:
I found the dir through:
I had similar issues on a Raspberry PI, after I'd installed the libssl-dev package
but managed to find the ssl lib for the configure command with this:
Use the following command to fix it:
yum install openssl-devel
With Ubuntu Server, try this: