Ldap group are not appearing in grouplist

Hello all

I have installed camunda community version of 7.9.0

I have connected ldap and camunda via bpm-platform.xml.

Issue: Users are appearing in the user list and group (posixGroup) are not appearing.
As you can see the structure no group result and code
I have tried with member and memberUid also

I have read the document too.

Could you guys please help me.

Thanks and Regards
Harshal Temkar

Reference

1 Like

Hi @Harshal_Temkar,

We don’t use posixGroups as are based on AD, but explicit group specification works just out of the box. My example below:

 <property name="groupSearchBase">OU=Applications,OU=Delegated,OU=Groups</property>
 <property name="groupSearchFilter">(&amp;(objectclass=groupOfNames)(cn=Camunda*))</property>
 <property name="groupIdAttribute">cn</property>
 <property name="groupNameAttribute">cn</property>
 <property name="groupMemberAttribute">uniquemember</property>

Best regards,
Ilya

2 Likes