I've set up a Nagios Core server on CentOS and I want people to be able to use their AD credentials to log into the web interface. At the moment, the httpd configuration is:
AuthBasicProvider ldap
AuthType Basic
AuthName "Active Directory Login"
AuthLDAPURL "ldap://[servername].[domainname].inc:3268/dc=[domainname],dc=inc?sAMAccountName?sub" NONE
AuthLDAPBindDN "[Username]@[domainname].inc"
AuthLDAPBindPassword "[Password]"
Require valid-user
Trying to log in, though, yields this message:
[Thu Oct 24 15:18:13.029425 2019] [auth_basic:error] [pid 311] [client 10.121.XX.XX:52740] AH01617: user [username]: authentication failure for "/nagios/": Password Mismatch
I imagine I'm doing something wrong with either AuthLDAPURL
or AuthLDAPBindPassword
, as I'll admit I had some trouble understanding the documentation for those.
Thank you very much.