cannot find ssl libraries?

36,486

Solution 1

If you're running on 64-bit:

./configure --with-ssl=/usr/bin/openssl --with-ssl-lib=/usr/lib/x86_64-linux-gnu

For whatever reason the configure script for nrpe doesn't seem to be able to find where libssl-dev installs the libraries. You can find where Ubuntu puts them with

apt-file list libssl-dev

Solution 2

Ubuntu:

Run this:

sudo apt-get install libssl-dev

centos:

Run this:

yum install -y openssl-devel
Share:
36,486
user2614425
Author by

user2614425

Updated on July 05, 2022

Comments

  • user2614425
    user2614425 almost 2 years

    I am trying to install nrpe plugin on ubuntu 12.04, however I am facing issue with ssl libraries. I tried installing "libcurl3-openssl-dev" package, however when I try to compile nrpe plugin after installing this package I am facing issue saying "cannot find ssl libraries".

    Could anyone please shade some light on this?

    Thanking you,

    Regards, Gaurav.