CFTHREAD 可以用于 LDAP 管理吗?
我可以使用 CFTHREAD 使 LDAP 中的两条记录保持同步吗?
我需要通过在其他地方查找 cn 来检查记录是否仍然有效。 所以如果它无效我想删除它。 这意味着获取我想要的类型的所有当前记录,将它们全部删除并再次添加它们(减去我不想要的记录)
Can I keep two records in LDAP in sync using CFTHREAD?
I need to check if a record is still valid by looking up a cn elsewhere. So if it is invalid I want to delete it. This means getting all current records of the type I want, deleting them all and adding them all again (minus the one I dont want)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在任何地方使用 sql server 吗? 您可以使用 adsi 提供程序创建到 LDAP 服务器的链接服务器。
然后就可以使用SQL来进行这个维护了。 我发现用这种方式进行 LDAP 查询比 cfldap 标记更容易、更灵活。
更新后唯一需要注意的是向 ldap 服务器提供适当的权限来执行更新。
Are you using sql server anywhere? You can create linked servers to ldap servers using the adsi provider.
Then you can use SQL to do this maintenance. I find doing ldap queries this way a little easier and more flexible than the cfldap tag.
Only caveat since you are updating is providing the proper permissions to the ldap server to do the updates.