Hello.
I’m in need of a help with specific LDAP error.
Company’s LDAP is already an existing, running and external instance. Flowable All in One is being run as a Docker container, on my laptop locally. I’ve successfully connected the two and I’m able to log in the IDM application, see the LDAP users and groups. No problem with that. However, if I want to use any other Flowable application (Task/Admin/Modeler), I get redirected to the IDM login form, where I once again input valid credentials just to be redirected back to the said login form. The logs show an error which indicates I’ve given invalid credentials, but the Google Chrome “Network” tab disagrees and shows that the authentication succeeded. To make everything clear, I’m attaching as much info as I can below.
IDM authentication succeeds with my domain account, successful retrieval of users and groups
Before Modeler login, even though I’m logged in the IDM application
After Modeler login, redirect to same page
Authentication succeedes, but the log says otherwise
Could not create InitialDirContext for LDAP connection: [LDAP: error code 49 - 80090308: LdapErr:
DSID-0C0903A9, comment: AcceptSecurityContext error, data 52e, v1db1 ]
LDAP configuration that I pass as environment file
FLOWABLE_IDM_LDAP_ENABLED=true
FLOWABLE_IDM_LDAP_SERVER=ldap://192.168.0.3
FLOWABLE_IDM_LDAP_PORT=389
FLOWABLE_IDM_LDAP_USER=cn=OKDUser,ou=APP,dc=int,dc=svgroup,dc=net
FLOWABLE_IDM_LDAP_PASSWORD=<redacted>
FLOWABLE_IDM_LDAP_BASE_DN=dc=int,dc=svgroup,dc=net
FLOWABLE_IDM_LDAP_USER_BASE_DN=ou=SVGroup,dc=int,dc=svgroup,dc=net
FLOWABLE_IDM_LDAP_GROUP_BASE_DN=cn=Users,dc=int,dc=svgroup,dc=net
FLOWABLE_IDM_LDAP_QUERY_USER_BY_ID=(&(objectClass=user)(sAMAccountName={0}))
FLOWABLE_IDM_LDAP_QUERY_ALL_USERS=(objectClass=user)
FLOWABLE_IDM_LDAP_QUERY_USER_BY_FULL_NAME_LIKE=(&(objectClass=user)(|(givenName={1})(sn={3})(sAMAccountName={3})))
FLOWABLE_IDM_LDAP_QUERY_GROUPS_FOR_USER=(&(objectCategory=group)(member={0}))
FLOWABLE_IDM_LDAP_QUERY_ALL_GROUPS=(objectClass=group)
FLOWABLE_IDM_LDAP_QUERY_GROUP_BY_ID=(&(objectClass=group)(cn={0}))
FLOWABLE_IDM_LDAP_ATTRIBUTE_USER_ID=sAMAccountName
FLOWABLE_IDM_LDAP_ATTRIBUTE_FIRST_NAME=givenName
FLOWABLE_IDM_LDAP_ATTRIBUTE_LAST_NAME=sn
FLOWABLE_IDM_LDAP_ATTRIBUTE_EMAIL=mail
FLOWABLE_IDM_LDAP_ATTRIBUTE_GROUP_ID=cn
FLOWABLE_IDM_LDAP_ATTRIBUTE_GROUP_NAME=cn
FLOWABLE_IDM_LDAP_CACHE_GROUP_SIZE=10000
FLOWABLE_IDM_LDAP_CACHE_GROUP_EXPIRATION=180000
FLOWABLE_IDM_APP_ADMIN_USER_ID=svgbf01
FLOWABLE_COMMON_APP_IDM_ADMIN_USER=svgbf01
I can add more relevant stuff, if needed, but the “2 links, 1 image for new members” restrictions are really not helping.
Thanks in advance and best regards.