Example of LDAP group

Hi !

Anybody could send me an LDIF file with a group whitin at least two members ?

I use LDAP but I don’‘t use attribute member and I’'d like some example to use the JM support LDAP group.

And the configuration on XML about LDAP group, does the default work fine ?

Thanks a lot !

I use OpenLDAP.

I don’'t get to do JM finds my users in my groups.

Could anybody help me ?

Thanks again!

I don’'t remember the LDIF format, but in a Posix environment, it would look similar to this:

dn: CN=MyGroup,OU=Groups,DC=example,DC=com

cn: MyGroup

description: My Group

member: user1

member: user2[/code]

In Active Directory, a group should look similar to this:

dn: CN=MyGroup,OU=Groups,DC=example,DC=com

cn: myGroup

description: My Group

member: CN=user1,CN=Users,DC=example,DC=com

member: CN=user2,CN=Users,DC=example,DC=com[/code]

Is that what you needed?

I found others examples that, with this, are enough for me.

Thank so much !

I don’'t remember the LDIF format, but in a Posix

environment, it would look similar to this:

dn: CN=MyGroup,OU=Groups,DC=example,DC=com

cn: MyGroup

description: My Group

member: user1

member: user2[/code]

nah, if it’‘s a posixGroup (objectclass) then you use “memberUid” attributes to store the userids of the members of the group. “member” is for DNs, but that’'d be in a groupOfNames (objectclass) rather than a posixGroup.