Hi,
I have got ldap testserver for test cases and connect camunda tasklist via LDAP Identity Provider Plugin.
It works without managerDN. But then my user ofv2admin is not allowed to create groups in the admin view and this is what I need.
Here is a screenshot of my structure:
I configured standalone.xml with the plugin:
<plugin>
<class>org.camunda.bpm.identity.impl.ldap.plugin.LdapIdentityProviderPlugin</class>
<properties>
<property name="serverUrl">ldap://212.201.31.193:10389/</property>
<property name="managerDn">uid=ofv2admin,dc=ofv,dc=de</property>
<property name="managerPassword">ofv2admin</property>
<property name="baseDn">dc=ofv,dc=de</property>
<property name="userSearchBase">ou=Users</property>
<property name="userSearchFilter">(objectclass=person)</property>
<property name="userIdAttribute">uid</property>
<property name="userFirstnameAttribute">cn</property>
<property name="userLastnameAttribute">sn</property>
<property name="userEmailAttribute">mail</property>
<property name="userPasswordAttribute">userpassword</property>
</properties>
</plugin>
<plugin>
<class>org.camunda.bpm.engine.impl.plugin.AdministratorAuthorizationPlugin</class>
<properties>
<property name="administratorUserName">ofv2admin</property>
</properties>
</plugin>
Any ideas? Perhaps @Ingo_Richtsmeier Thank you!