LDAP:如何将人添加到现有组?


11

使用命令行(Linux)或LDIF,我可以找到许多创建新组并定义其成员的示例,但没有以下示例:

如何将用户添加到现有组?

假设这个人也已经存在。

例如,将用户添加uid=fred,ou=people,dc=example,dc=com到group cn=vipb,ou=groups,dc=example,dc=com

Answers:


13

您将一个memberUid属性添加到组。例如:

$ ldapmodify -D <admin DN> -h <ldaphost>
password: [enter password]
dn: cn=vipb,ou=groups,dc=example,dc=com
changetype: modify
add: memberUid
memberUid: fred

^D

作为记录,LDAP模式在RFC 2307中进行了描述。


顺便说一句,我建议使用点击式LDAP浏览器来了解LDAP结构和架构。以前,我使用JXplorer,但如今可能会有更好的选择。
汤姆·肖

2
Apache Directory Studio是一个很好的选择。
kara deniz 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.