使用命令行(Linux)或LDIF,我可以找到许多创建新组并定义其成员的示例,但没有以下示例:
如何将用户添加到现有组?
假设这个人也已经存在。
例如,将用户添加uid=fred,ou=people,dc=example,dc=com
到group cn=vipb,ou=groups,dc=example,dc=com
。
使用命令行(Linux)或LDIF,我可以找到许多创建新组并定义其成员的示例,但没有以下示例:
如何将用户添加到现有组?
假设这个人也已经存在。
例如,将用户添加uid=fred,ou=people,dc=example,dc=com
到group cn=vipb,ou=groups,dc=example,dc=com
。
Answers:
您将一个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中进行了描述。