zoukankan      html  css  js  c++  java
  • SharePoint 2010 “The specified user or domain group was not found”(转载)

    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/


    作者:DanielWise
    出处:http://www.cnblogs.com/danielWise/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

    查看全文
  • 相关阅读:
    Boost中timer的简易用法
    poj 2586 Y2K Accounting Bug(贪心算法,水题一枚)
    Steps to Install Hadoop on CentOS/RHEL 6---reference
    nginx多进程模型之配置热加载---转
    C/C++ unit testing tools (39 found)---reference
    centos复制到另外一台电脑连不上网
    linux man使用方法 和centos安装中文man包 --转
    centos6.4使用man查找命令时,报错No manual entry for xxxx
    How to Install and Configure Nginx from Source on centos--转
    研磨设计模式之 策略模式--转
  • 原文地址:https://www.cnblogs.com/danielWise/p/1957269.html
  • 最新文章
  • Android开发--CardView使用
    Android应用开发:CardView的使用及兼容
    HTTP请求中POST与GET的差别
    实例教程Unity3D单例模式(一)通经常使使用方法
    代码整洁之道 读书笔记
    正則表達式,推断一串字符串里面包括一定的形式,并解析成图片
    ext3文件系统反删除利器ext3grep应用实战
    Cocos2d-x源代码解析(1)——地图模块(3)
    使用cocoapods install友盟时报错Error installing UMengAnalytics
    深入浅出java并发
  • 热门文章
  • Android适配方案小结(一)
    好大滴坑, Spring MVC覆盖了Trsaction
    Maven POM入门
    [置顶] android系统功能调用大全
    解析汽车B2C商城网站四种盈利模式
    ubuntu配置jdk脚本以及导致开不了机的解决方案
    谈一个程序员创业的前期投资和成功的可能性
    快速入门github的方法
    项目目录结构
    常用文本框内容自动垂直居中,并且默认提示文字可单击为空(实例)!
Copyright © 2011-2022 走看看