有什么方法可以使用 openldap 调用从 ldap 删除条目吗?
目前有一个 openldap 的包装器。它从用户获取搜索过滤器 (&(objectclass=xxx)(|(dn=user_1)(dn=user_2).....(dn=user_n)))
并调用 ldap_search_ext_s(
),使用结果一一删除 dn。有没有其他有效的方法来执行删除操作。
谢谢, 拉杰.
Currently there is an wrapper over openldap. it gets the search filter (&(objectclass=xxx)(|(dn=user_1)(dn=user_2).....(dn=user_n)))
from user and calls ldap_search_ext_s(
), using the result it deletes the dn one by one. is there is any other efficient way to do the delete operation.
Thanks,
Raj.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目的是删除 DN 下的所有条目,许多专业质量的目录服务器都支持 LDAP 子树删除控件。子树删除控件删除 DN 以及从属于该 DN 的所有条目。
If your intent is to delete all entries underneath a DN, the LDAP subtree delete control is supported by many professional-quality directory servers. The subtree delete control deletes a DN and all entries subordinate to that DN.