GITBOOK-71: OpenLDAP FAQ addition

This commit is contained in:
Hannah Cooper
2026-02-18 19:51:52 +00:00
committed by gitbook-bot
parent a68a922bcc
commit b0df982f0f
2 changed files with 22 additions and 0 deletions

View File

@@ -352,6 +352,7 @@
* [Client sent an HTTP request to an HTTPS server](faqs/troubleshooting/access-and-authentication/client-sent-an-http-request-to-an-https-server.md)
* [Unable to Authenticate After Portainer Update](faqs/troubleshooting/access-and-authentication/unable-to-authenticate-after-portainer-update.md)
* [Unable to Login via LDAP in Portainer](faqs/troubleshooting/access-and-authentication/unable-to-login-via-ldap-in-portainer.md)
* [LDAP Groups are not auto-populating Portainer teams](faqs/troubleshooting/access-and-authentication/ldap-groups-are-not-auto-populating-portainer-teams.md)
* [Agents and environment management](faqs/troubleshooting/agents-and-environment-management/README.md)
* [How can I move existing Edge Agent deployments to a new Portainer Server instance?](faqs/troubleshooting/agents-and-environment-management/how-can-i-move-existing-edge-agent-deployments-to-a-new-portainer-server-instance.md)
* [Why can't my agents communicate with Portainer on Swarm?](faqs/troubleshooting/agents-and-environment-management/why-cant-my-agents-communicate-with-portainer-on-swarm.md)

View File

@@ -0,0 +1,21 @@
# LDAP Groups are not auto-populating Portainer teams
**Issue:**
Users find that LDAP authentication succeeds and **Display User/Group matching** correctly shows group membership, but the user is not automatically added to the corresponding Portainer team on login.
**Cause:**
Portainer team synchronization requires distinguished name (DN)-based group membership.
* `posixGroup` + `memberUid` → Group detection works, but Team sync does not assign users
* `groupOfNames` + `member` → Fully supported for Team auto-assignment
**Resolution:**
To resolve this issue, update the LDAP group configuration to use DN-based membership. 
```
objectClass: groupOfNames
member: <full user DN>
```