SharePoint 2010 “The specified user or domain group was not found”(转载)

weixin_34202952 于 2011-02-17 17:32:00 发布
阅读量170 收藏
点赞数
文章标签: shell 数据库 php
本文介绍了如何解决 SharePoint 2010 中出现的 The specified user or domain group was not found. 错误。此错误通常由于安全信息变更导致服务失败。文章提供了详细的步骤来定位受影响的服务应用并恢复服务。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Symptom:

The following error is presented when attempting to access service applications within SharePoint 2010, "The specified user or domain group was not found."

Cause:

SharePoint 2010 stores security information using the Subject Alternative Name as a literal strings as a result renaming or removing associated accounts will cause the service to fail.

Resolution:

  1. Validate the issue exists using the SharePoint 2010 Management Shell (PowerShell) and execute the following:

         Get-SPServiceApplication

  1. Manually gather your service application GUID’s, they are found in IIS under the site “SharePoint Web Services”

  2. Identify the service account using the SharePoint 2010 Management Shell (PowerShell) and execute the following as an example:

        Get-SPServiceApplicationSecurity fe11bf1464f84109bf83ce082e3097be

  1. Once you have identified the effected service application GUID return to IIS and select the virtual directory that matches the effected GUID and select “Basic Settings” and make note of the “Physical Path”, like the example below. In this example the effected service application is User Profile Service Application.

         C:\Program Files\Microsoft Office Servers\14.0\WebServices\Profile

  1. Connect to the SharePoint_Config database and execute the following query:

         SELECT [Name], [Version], CAST([Properties] as xml)

         From [SharePoint_Config].[dbo].[Objects] with (nolock)

         Where [Name] LIKE ‘%Profile%’

  1. This will return a set of results, locate the row with the correct service application name, and double click on the xml result. Within the xml result find the key with value within the name value “Serialized”. In the example below three accounts are identified: “FABRIKAM\SharePointFarm; FABRIKAM\SharePointServices; FABRIKAM\John Smith” if any of these accounts have been modified the changes will need to be reverted or restored. Once restored the effected service will become operational.
    <sFld type="String" name="m_SerializedAcl">
      <acl>
        <ace identityName="i:0#.w|fabrikam\sharepointfarm"
             displayName="0#.w|fabrikam\sharepointfarm"
             sid="" allowRights="18446744073709551615"
             denyRights="0" />
        <ace identityName="i:0#.w|fabrikam\sharepointservices" 
             displayName="0#.w|fabrikam\sharepointservices" 
             sid="" allowRights="18446744073709551615" denyRights="0" />
        <ace identityName="i:0#.w|fabrikam\John Smith" 
             displayName="0#.w| fabrikam\John Smith" sid="" 
             allowRights="18446744073709551615" denyRights="0" />
      </acl>
    </sFld>
    
  2. Once the services are operational use the SharePoint 2010 Central Administration to manage the accounts assigned to this service under Central Administration > Application Management > Manage Service Application. Then highlight the service and select manage from the ribbon to change the security for the service application.

 

原文链接: http://architectevangelist.wordpress.com/2010/12/07/sharepoint-2010-the-specified-user-or-domain-group-was-not-found/

关注博主即可阅读全文
确定要放弃本次机会?
福利倒计时
: :

立减 ¥

普通VIP年卡可用
立即使用
weixin_34202952
关注 关注
  • 0
    点赞
  • 踩
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
  • 分享
    复制链接
    分享到 QQ
    分享到新浪微博
    扫一扫
  • 举报
    举报
参与评论 您还未登录,请先 登录 后发表或查看评论
weixin_34202952

博客等级

码龄9年
164
原创
208
点赞
1092
收藏
4381
粉丝
关注
私信

热门文章

  • 酒店宾馆wifi无线上网认证,手机认证方式详解 16809
  • react如何监听路由url变化 15865
  • Linux 系统报错 rcu_preempt detected stalls on CPUs/tasks 13982
  • T-test 单尾检测、双尾检测 12772
  • 解决Vue多级动态面包屑导航 12532
上一篇:
在没有安装有mvc3的主机上部署asp.net mvc3网站,需要包含的DLL文件
下一篇:
用Eclipse开发Android应用程序(3): 开发第一个Android应用程序HelloWorld(上篇)

最新评论

  • GBDT源码剖析

    小凉爽&玉米粒: 你好,请问这个源码是用什么软件打开呢?

  • 微信小程序版2048

    m0_59576793: 求大佬噶给源码地址这个地址失效了表情包

  • MySQL双活部署方案

    杰锅锅: 这让大家很无语

  • MySQL双活部署方案

    JavaUNFish: 神马文章,标题目录党......

  • 自建MySQL和阿里云RDS的区别 有必要使用云数据库吗?

    java我跟你拼了: 感觉读完和没讲一点区别没有,就好像在打广告,还不知道你这个产品的作用是什么

最新文章

  • 设计模式之(五)外观模式Facade
  • 程序员如何选择技术方向
  • 几个好用的webservice
2019年364篇
2018年649篇
2017年921篇
2016年495篇
2015年429篇
2014年349篇
2013年338篇
2012年274篇
2011年187篇
2010年166篇
2009年133篇
2008年99篇
2007年51篇
2006年36篇
2005年20篇
2004年6篇

目录

展开全部

收起

目录

展开全部

收起

上一篇:
在没有安装有mvc3的主机上部署asp.net mvc3网站,需要包含的DLL文件
下一篇:
用Eclipse开发Android应用程序(3): 开发第一个Android应用程序HelloWorld(上篇)

最新文章

  • 设计模式之(五)外观模式Facade
  • 程序员如何选择技术方向
  • 几个好用的webservice
2019年364篇
2018年649篇
2017年921篇
2016年495篇
2015年429篇
2014年349篇
2013年338篇
2012年274篇
2011年187篇
2010年166篇
2009年133篇
2008年99篇
2007年51篇
2006年36篇
2005年20篇
2004年6篇

目录

评论
被折叠的  条评论 为什么被折叠? 到【灌水乐园】发言
查看更多评论
添加红包

请填写红包祝福语或标题

个

红包个数最小为10个

元

红包金额最低5元

当前余额3.43元 前往充值 >
需支付:10.00元
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付元
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值