我正在尝试从 LDAP 用户中删除两个属性。
伪命令:
ldapdelete -D "uid=username,attribute1,attribute2" -w my_pass -h localhost
我怎么做?
注意:搜索时我使用以下工作命令:
ldapsearch -D "cn=my-test,ou=Services,dc=foo,dc=com" -w my_pass -h localhost -b "ou=Non-Enterprise,ou=People,dc=foo,dc=com" -s sub -x -ZZ "(uid=username)"
有关的:
Sun Java System Directory Server Enterprise Edition 6.0 管理指南
答案1
ldapdelete
是删除条目,您需要使用ldapmodify
删除属性。
此命令应从attribute1
条目attribute2
中删除username
:
$ ldapmodify -D "uid=..." -w ... -h ... <<%EOF%
dn: uid=username,ou=Non-Enterprise,ou=People,dc=foo,dc=com
changetype: modify
delete: attribute1
-
delete: attribute2
%EOF%