In AEM 6, LDAP support comes with a new implementation that requires a different type of configuration than with previous versions.
All LDAP configurations are now available as OSGi configurations. They can be configured via the Web Management console at:
http://serveraddress:4502/system/console/configMgr
The required config classes are listed below.
- org.apache.jackrabbit.oak.security.authentication.ldap.impl.LdapIdentityProvider
- org.apache.jackrabbit.oak.spi.security.authentication.external.impl.DefaultSyncHandler
- org.apache.jackrabbit.oak.spi.security.authentication.external.impl.ExternalLoginModuleFactory.
"org.apache.jackrabbit.oak.security.authentication.ldap.impl.LdapIdentityProvider.xml".
See here for reference.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
jcr:primaryType="sling:OsgiConfig" | |
bind.dn = "cn=Directory Manager" bind.password = "******" group.baseDN = "ou=groups,dc=example,dc=com" | |
group.memberAttribute = "uniquemember" group.nameAttribute = "cn" group.objectclass = "[groupOfUniqueNames]" | |
host.name = "localhost" host.port = "389" host.ssl = "false" host.tls = "false" provider.name = "ldap" | |
user.baseDN = "ou=users,dc=example,dc=com" user.idAttribute = "uid" user.objectclass = "[inetorgPerson]" /> |
Similarly create two more config files & name them as below.
org.apache.jackrabbit.oak.spi.security.authentication.external.impl.DefaultSyncHandler.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
jcr:primaryType="sling:OsgiConfig" | |
user.autoMembership = "[contributor]" user.expirationTime = "1h" user.membershipExpTime = "1h" | |
user.membershipNestingDepth = "0" user.propertyMapping = "[rep:fullname=cn]" /> |
org.apache.jackrabbit.oak.spi.security.authentication.external.impl.ExternalLoginModuleFactory.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
jcr:primaryType="sling:OsgiConfig" | |
idp.name = "ldap" jaas.controlFlag = "SUFFICIENT" jaas.ranking = "50" jaas.realmName = "ldap" sync.handlerName = "default" /> |
Now with this config files in place, do a config/content deployment & upon successful deployment your AEM instance is configured with the provided LDAP server.
Tested with OpenDS 2.2 & AEM 6
Please Note: You may need to restart your AEM instance once the configs are applied.