-
Notifications
You must be signed in to change notification settings - Fork 495
Open
Labels
Description
Hi all :)
I am having issues setting up LDAP on my CB Community container.
I have:
enabledAuthProviders: ["local", "ldap"],
authConfigurations: [
{
"id": "ldap",
"provider": "ldap",
"displayName": "LDAP",
"disabled": false,
"iconURL": "",
"description": "",
"parameters": {
"ldap-host": "example.com",
"ldap-port": "389",
"ldap-dn": "ou=MY_GROUP,dc=example,dc=com",
"ldap-enable-ssl": false
}
}
]I am not able to login via <user>@example.com nor just <user>.
The domain and user are correct and I can run a manual ldapsearch and ldapwhoami for them via my shell and get a response. MY_GROUP is also correct and is returned for my user via ldapsearch:
dn: CN=<name>,OU=MY_GROUP,DC=example,DC=comIs there something wrong with my config ?
Thanks for any advice you can provide !