I can get start LDAP extension working:
This is my xwiki.cnf
-# LDAP authentication service
#xwiki.authentication.authclass=org.xwiki.contrib.ldap.XWikiLDAPAuthServiceImpl
xwiki.authentication.authclass=org.xwiki.contrib.ldap.XWikiLDAPAuthServiceImpl
#-# Turn LDAP authentication on - otherwise only XWiki authentication
#-# - 0: disable
#-# - 1: enable
#-# The default is 0
xwiki.authentication.ldap=1
#-# Enable local accounts in addition to LDAP.
#-# Without this setting you will be unable to log into XWiki with local accounts.
#-# - 0: disable
#-# - 1: enable
#-# The default is 0
xwiki.authentication.ldap.trylocal=1
xwiki.authentication.ldap.server=ldap.ad.domain.com
xwiki.authentication.ldap.port=636
xwiki.authentication.ldap.base_DN=DC=ad,DC=domain,DC=com
xwiki.authentication.ldap.bind_DN=CN=xWiki_agent,OU=_acc,OU=ccb,DC=ad,DC=domain,DC=com
xwiki.authentication.ldap.bind_pass=*******
xwiki.authentication.ldap.UID_attr=sAMAccountName
xwiki.authentication.ldap.fields_mapping=name=sAMAccountName,last_name=sn,first_name=givenName,fullname=displayName,email=mail,ldap_dn=dn
xwiki.authentication.ldap.ssl=1
xwiki.authentication.ldap.ssl.secure_provider=com.sun.net.ssl.internal.ssl.Provider
# xwiki.authentication.ldap.user_search_fmt=(sAMAccountName={1})
# Define the class of the LDAP objects to consider as groups
xwiki.authentication.ldap.group_classes=groupOfUniqueNames,posixGroup
# Define the attribute in the LDAP object that contains the group members
xwiki.authentication.ldap.group_memberfields=uniqueMember,memberUid
# Define the group mapping from LDAP to XWiki
#xwiki.authentication.ldap.group_mapping=XWiki.Confluence=CN=Confluece user,OU=_Grupas,OU=comm,DC=ad,DC=domain,DC=com
my logback.xml
<!-- LDAP debugging -->
<logger name="org.xwiki.contrib.ldap" level="trace"/>
<logger name="org.xpn.xwiki.plugin.ldap" level="trace"/>
<logger name="org.xpn.xwiki.user.impl.LDAP" level="trace"/>
when i check logs i can find referces to ldap. from what i read in forums i should see some thing like this in logs:
u.i.L.XWikiLDAPAuthServiceImpl - Starting LDAP authentication
im running xwiki 14.10.18 on docker