-
Notifications
You must be signed in to change notification settings - Fork 137
Group Database
Endi S. Dewata edited this page Oct 10, 2022
·
2 revisions
dn: ou=Groups,dc=tps,dc=pki,dc=example,dc=com ou: Groups objectClass: top objectClass: organizationalunit
The resource is stored in LDAP. Search will be done with this LDAP filter: (cn=<keyword>)
.
LDAP Attribute | REST Attribute | Indexed | Searchable | Example |
---|---|---|---|---|
cn |
Group ID |
Yes |
Yes |
TUS Administrators |
description |
Description |
No. The attribute is not indexed. |
Administrators for TUS |
The resource is stored in LDAP. But since the group ID is known, the member ID search will be done with string comparison: memberID.contains(keyword)
.
LDAP Attribute | REST Attribute | Indexed | Searchable | Example |
---|---|---|---|---|
cn |
Group ID |
Yes |
No. The group ID must be specified in order to search a member ID. |
TUS Administrators |
uniqueMember |
Member ID |
Yes |
Yes |
uid=admin,ou=People,dc=example,dc=com |
Tip
|
To find a page in the Wiki, enter the keywords in search field, press Enter, then click Wikis. |