Hello camunda team,
I am very newbie on camunda.
I have configured already installed JBoss EAP 7.1 and camunda. Everythng works fine and server start finished successfully. I see that all applications (rest-engine, examples, webapp) is deployed successfully.
Now I want to configure our Exchange for authenticating users (LDAP Configuration).
My LDAP Config :
org.camunda.bpm.identity.impl.ldap.plugin.LdapIdentityProviderPlugin ldap://111.222.33.44:123/ true uid=adminUser,ou=COMPANY STRUCTURE,dc=ourcomp,dc=ge adminPasswordorg.camunda.bpm.engine.impl.plugin.AdministratorAuthorizationPlugin name.surname<property name="baseDn">ou=COMPANY STRUCTURE,dc=ourcomp,dc=ge</property> <property name="userSearchBase"></property> <property name="userSearchFilter">(&(objectCategory=user)(objectClass=user))</property> <property name="userIdAttribute">sAMAccountName</property> <property name="userFirstnameAttribute">givenName</property> <property name="userLastnameAttribute">sn</property> <property name="userEmailAttribute">mail</property> <property name="userPasswordAttribute">userpassword</property> <property name="groupSearchBase">ou=groups</property> <property name="groupSearchFilter">(objectCategory=group)</property> <property name="groupIdAttribute">distinguishedName</property> <property name="groupNameAttribute">sAMAccountName</property> <property name="groupMemberAttribute">member</property> <property name="sortControlSupported">false</property>
when I tried to enter user credentials int admin application I got an error :
21:45:32,465 ERROR [org.camunda.bpm.engine.context] (default task-23) ENGINE-16004 Exception while closing command context: Could not authenticate with LDAP server: org.camunda.bpm.identity.impl.ldap.LdapAuthenticationException: Could not authenticate with LDAP server
Caused by: javax.naming.AuthenticationException: [LDAP: error code 49 - 80090308: LdapErr: DSID-0C090400, comment: AcceptSecurityContext error, data 52e, v1db1]
this error means incorrect credentials , but I am absolutely sure that i have entered correct credentials.
I have forget 2 days for this problem and cant resolve.
Any hint will be appreciated. I don’t know what is problem here. I have wrote simple java ldap client and it works fine. also I have configured multiple other platforms (like gitlab, jira) and all of them works perfectly.
Also I can’t find any doc how to change log level for camunda into jboss configuration file.
Thanks in advance.
Paata.