我正在尝试在hybris应用程序中配置LDAP。我已经配置了所有必需的配置,但仍然出现异常:
ERROR [hybrisHTTP39] [JNDIConnectionManager] unable to bind to ldap://1.100.100.100:636 reason: CommunicationException (1.100.100.100:636)
ERROR [hybrisHTTP39] [JNDIConnectionManager] java.lang.NullPointerException
我的配置详细信息是:
###################### LDAP properties ###################################
ldap.server.type=ActiveDirectory
ldap.server.url=1.100.100.100:636
ldap.server.root.dn=DC=abc,DC=com
ldap.jndi.principals=OU=my accounts,OU=myPlatform-test,OU=Management,DC=abc,DC=com
ldap.jndi.credentials=xxxxx
ldap.pool.enabled=false
ldap.pool.init.size=1
ldap.pool.maxsize=50
ldap.jndi.factory=com.sun.jndi.ldap.LdapCtxFactory
ldap.jndi.version=v3
ldap.jndi.authentication=simple
我仍然无法连接。 我在这里想念什么?
谢谢。