MOSS 2007 - 将新用户添加到网站集的用户搜索 - “未找到完全匹配的内容。”

发布于 2024-10-26 12:01:01 字数 1309 浏览 1 评论 0原文

请帮忙。 在我们公司,我们有 MOSS 2007 并在单独的服务器上包含所有用户的活动目录。 假设我们有名为domain.abc的公司域和sharepoint上的sharepoint服务器(完整路径是sharepoint.domain.abc,但它到处都只写为sharepoint作为位置)。具有 AD 的服务器位于 users.domain.abc 上。 这是一个简单的设置。我们成功地将 users.domain.abc 与我们的共享点服务器连接起来,并且在 SSP1 中,配置文件导入正在工作(我们可以获取所有人员,并且定期添加新人员),导入工作正常,日志中没有错误或警告。 问题是,当我们想要在共享点站点中添加用户时,会出现错误:未找到精确匹配。但可以在此搜索框中找到网站上的现有用户 - 只是无法添加新用户。

当然,我们用谷歌搜索 - 并在这个论坛上检查了解决方案,我们发现的唯一的就是使用 Stsadm 操作的各种解决方案:

  • Setsiteuseraccountdirectorypath - 我们尝试过:

    stsadm -o setsiteuseraccountdirectorypath -path "DC=sharepoint,DC=domain.abc,DC=local" –url http:// sharepoint 但它不起作用

  • 然后使用 peoplepicker:

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "forest:domain.abc,domain:sharepoint.domain.abc,domain\username,password"

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "forest:domain.abc,domain:sharepoint,domain\username,password"

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "域:sharepoint,域\用户名,密码"

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "domain:sharepoint.domain.abc,domain\username,password"

    它们都不起作用

感谢您的帮助。干杯

please some help.
In our company we have MOSS 2007 and on separate server active directory with all the users.
Let say that we have company domain named domain.abc and sharepoint server on sharepoint (full path is sharepoint.domain.abc, but it is everywhere written just sharepoint for location). The server with AD is on users.domain.abc.
It's a simple setup. We successfully connected the users.domain.abc with our sharepoint server- and in SSP1 the profile import is working (we can get all the people and new ones are regularly added), importing is working with no errors or warnings in logs.
The problem is that when we want to add users in the sharepoint site- there is an error saying: No exact match was found. But existing users on the site can be found in this search box- just cannot add new ones.

Ofcourse we google it- and checked also on this forum for the solutions, and the only thing that we found was with various solutions with Stsadm operations:

  • Setsiteuseraccountdirectorypath - we tried with:

    stsadm -o setsiteuseraccountdirectorypath -path "DC=sharepoint,DC=domain.abc,DC=local" –url http:// sharepoint and it did not worked

  • Then with peoplepicker:

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "forest:domain.abc,domain:sharepoint.domain.abc,domain\username,password"

    or

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "forest:domain.abc,domain:sharepoint,domain\username,password"

    or

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "domain:sharepoint,domain\username,password"

    or

    stsadm -o setproperty -url http:// sharepoint -pn peoplepicker-searchadforests -pv "domain:sharepoint.domain.abc,domain\username,password"

    they all did not worked

Kindly appreciate for your help. Cheers

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诠释孤独 2024-11-02 12:01:01

问题解决了!

问题出在哪里?

  1. 我启用了(在解决问题的所有尝试期间)setsiteuseraccountdirectorypath - 这是一个禁忌
  2. 然后我们的福雷斯特只有一个域(因此福雷斯特和域具有相同的地址)。
  3. 如果您不推送该网站,用户不会自行添加到该网站。

解决方案:

  1. stsadm -o setsiteuseraccountdirectorypath -path "" -url http://sharepoint
  2. stsadm -o setproperty -pn peoplepicker-searchadforests -pv "森林:域.abc,域\用户名,密码;域:域.abc,域\用户名,密码" -url http://sharepoint
  3. 如果用户在添加或执行其他操作之前尝试连接到该站点,这会有所帮助(!)。一旦发生这种情况 - 您可以在人员选择器中搜索用户。
  4. 重要提示:iisreset /noforce

嗯,它对我有帮助 - 希望它会对您有所帮助。干杯

Problem solved!

What was the issue?

  1. I enabled (during all the tries to solve the problem) setsiteuseraccountdirectorypath- it's a no-no
  2. Then our forrest has only one domain (so the forrest and domain have same address).
  3. The users don't add to the site by itself if you don't push the site.

Solution:

  1. stsadm -o setsiteuseraccountdirectorypath -path "" -url http://sharepoint
  2. stsadm -o setproperty -pn peoplepicker-searchadforests -pv "forest:domain.abc,domain\username,password;domain:domain.abc,domain\username,password" -url http://sharepoint
  3. It helps (!) if the user tries to connect to the site before he is added or anything. Once that happens - you can search for the user in the people-picker.
  4. Important: iisreset /noforce

Well it helped for me- hope it will help you. Cheers

很糊涂小朋友 2024-11-02 12:01:01

遇到了同样的问题,并在搜索帐户和脚本中使用正确的密码修复了该问题。

Had same issue and fixed it with correct passwords in search account and in script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文