I want to add a user (from Sun IDM to Active Directory) to more than one group.
The command memberOf: CN=AAA,OU=AAA,DC=AAA,DC=AAA
is for only one and I want to add a second one immediatly after the first; e.g.:
memberOf: CN=AAA,OU=AAA,DC=AAA,DC=AAA
and CN=BBB,OU=BBB,DC=BBB,DC=BBB
Asked
Active
Viewed 1,528 times
3
1 Answers
3
Depending on how you're doing the adding, there are a couple of ways of doing this. MemberOf
is a multi-valued attribute. If you're using an LDIF file, or direct LDAP syntax, you just add multiple MemberOf
statements:
Department: Human Resources
MemberOf: CN=AAA,OU=BBB,DC=CCC,DC=DDD
MemberOf: CN=AAB,OU=BBB,DC=CCC,DC=DDD
MemberOf: CN=ABC,OU=CDE,DC=CCC,DC,DDD
Full Name: Milton Ives
sysadmin1138
- 131,083
- 18
- 173
- 296
? – Possa May 30 '11 at 15:50