Question

How can I search for a uniqueMember in an objectClass groupOfUniqueNames within OpenLdap?

dn: cn=group,dc=example,dc=com
objectclass: groupOfUniqueNames
cn: group
uniquemember: uid=member1
uniquemember: uid=member2

I've tried the following with no result:

ldapsearch -x -b dc=example,dc=com "(uniqueMember=uid=member1)"

Pls help me.

Was it helpful?

Solution

The assertion used in this filter is probably not the full DN: "(uniqueMember=uid=member1)". uniqueMember has DN syntax, therefore, the value used in the assertion must be a DN, for example: (uniqueMember=uid=member1,ou=people,dc=example,dc=com).

see also

OTHER TIPS

Your query needs to be

"(&(objectclass=groupOfUniqueNames)(uniqueMember=uid=member1,ou=people,dc=example,dc=com))"

something like that.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top