LDAP/AD integration

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
temple1975
Posts: 7
Joined: Mon Apr 23, 2018 7:18 am

LDAP/AD integration

Post by temple1975 »

when we enable ssl or ttl on the query we receive the following error

Unable to authenticate: error:14090086:SSL routines:ssl3_get_server_certificate:certificate verify failed (unable to get local issuer certificate)

If none is selected queries work fine.
temple1975
Posts: 7
Joined: Mon Apr 23, 2018 7:18 am

Re: LDAP/AD integration

Post by temple1975 »

openssl s_client -showcerts -connect x.x.x.x:636 </dev/null

CONNECTED(00000003)
depth=0 CN = xxxxx
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=0 CN = xxxxxxx
verify error:num=21:unable to verify the first certificate
verify return:1
ssax
Dreams In Code
Posts: 7682
Joined: Wed Feb 11, 2015 12:54 pm

Re: LDAP/AD integration

Post by ssax »

That generally means that the remote server doesn't have the issuer CA certificates installed so it's unable to verify it. You would need to import the CA certificate from the issuing CA (who singed your LDAP/AD server cert) into the XI server for it to validate properly.

Please PM me the full output of this command:

Code: Select all

openssl s_client -showcerts -connect x.x.x.x:636 </dev/null
Locked