对 Active Directory 的并发请求
我正在使用 python-ldap 连接到远程 Active Directory。 有没有办法找出/调整 Active Directory 支持的并发连接数?
I am using python-ldap to connect to a remote Active Directory.
Is there a way to find out/ tweak the number of concurrent connections supported by Active Directory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据此知识库文章,限制在
cn=Query-Policies,cn 中指定=目录服务,cn=Windows NT,cn=配置根的服务
。并发连接的属性是MaxConnections。但是,该限制是每个 DC 的,默认情况下设置为 5000。我非常怀疑您的应用程序需要比这更多的连接。According to this KB article, the limits are specified in
cn=Query-Policies,cn=Directory Service,cn=Windows NT,cn=Services
of the configuration root. The property for concurrent connections isMaxConnections
. However, the limit is per DC and, by default, is set to 5000. I'd be very suspicious that your application requires more connections than that.