Page 2 of 2
Re: Nagios agent for OpenBSD 6.2
Posted: Tue Dec 12, 2017 3:28 pm
by npolovenko
@gornm565, Please try the following command:
Code: Select all
./configure --enable-command-args --with-ssl=/usr/local/bin --with-ssl-inc=/usr/local/include/eopenssl/openssl --with-ssl-lib=/usr/local/lib/eopenssl
Re: Nagios agent for OpenBSD 6.2
Posted: Tue Dec 12, 2017 3:35 pm
by gornm565
The following error now:
Code: Select all
checking for SSL headers... found in /usr/local/include/eopenssl/openssl
checking for SSL libraries... configure: error: Cannot find ssl libraries
npolovenko wrote:@gornm565, Please try the following command:
Code: Select all
./configure --enable-command-args --with-ssl=/usr/local/bin --with-ssl-inc=/usr/local/include/eopenssl/openssl --with-ssl-lib=/usr/local/lib/eopenssl
Re: Nagios agent for OpenBSD 6.2
Posted: Wed Dec 13, 2017 10:44 am
by npolovenko
@gornm565, Let's try the following command:
Code: Select all
./configure --enable-command-args --with-ssl=/usr/local/bin --with-ssl-inc=/usr/local/include/eopenssl/openssl --with-ssl-lib=/usr/local/lib/eopenssl/man/man3/
The problem may be due to openssl libraries using a slightly different syntax on OpenBSD systems. Perhaps you installed a libressl and the nrpe plugin might be only supporting openssl at this moment.
You could run this installation without ssl arguments:
like this:
or like this:
Code: Select all
./configure --enable-command-args --disable-ssl
And then if it compiles successfully you'd append -n (stands for no-ssl) to each command.