访问创建用户时出现主要活动异常:异常 0000202B:RefErr:DSID-031007EF,数据 0、1 接入点” [扩展错误 8235]
我需要读取 Active Directory、搜索用户和创建用户功能。
我能够在 C# 中使用 DirectoryEntry,并且域只是物理服务器。
在我的生产环境中,我有两台具有相同域名的物理域服务器。当我尝试搜索 AD 用户或创建时,出现以下异常。
异常:“0000202B:RefErr:DSID-031007EF,数据 0、1 接入点”[扩展错误 8235]
请注意,我拥有该域的域管理员权限,但仍然遇到相同的问题。
I need to read the Active Directory, search users and create user functionality.
I am able to use DirectoryEntry in C# and Domain is only physical server.
In my production environment, I have two physical domain servers with same domain name. When I try to search the AD user or create, I am getting the following exception.
Exception : "0000202B: RefErr: DSID-031007EF, data 0, 1 access points" [extended Error 8235]
Note that I have Domain Admin privileges on the domain but I'm still having the same issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
0000202B:可能意味着错误的 DN/搜索库,例如错误的 DC 值等。
0000202B: could mean wrong DN/searchbase like incorrect DC value etc.
您的问题看起来像是 DNS 问题。我知道我写的这个,从统计角度来看,我有 80% 的可能性是正确的。检查您的客户端的域名解析。检查您的 DNS 并验证您的两个域控制器是否已正确注册。
Your problem looks like a DNS problem. I know writting that, I've got statisticaly 80% chance being right. Check the domain name resolution from your client. Check your DNS and verify that your two domain controlers are well registered.
您收到的错误与引用相关:
ERROR_DS_REFERRAL
8235(0x202B)
已从服务器返回引用。
您可以在此 MSDN 文章中找到链接的错误代码。< /a>
The error you are getting is referall related:
ERROR_DS_REFERRAL
8235 (0x202B)
A referral was returned from the server.
You can find the error codes linked at this MSDN Article.