Nagios agent for OpenBSD 6.2

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: Nagios agent for OpenBSD 6.2

Post 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
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
gornm565
Posts: 72
Joined: Tue Nov 15, 2016 6:11 pm

Re: Nagios agent for OpenBSD 6.2

Post 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
npolovenko
Support Tech
Posts: 3457
Joined: Mon May 15, 2017 5:00 pm

Re: Nagios agent for OpenBSD 6.2

Post 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:

Code: Select all

./configure --enable-command-args
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.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Locked