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/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。

    查看全文
  • 相关阅读:
    陶哲轩实分析 习题 12.5.8 :度量空间中有界闭集不一定是紧集
    陶哲轩实分析 习题 12.5.12
    陶哲轩实分析 习题 12.5.4,12.5.5
    陶哲轩实分析 习题 12.5.10
    陶哲轩实分析 习题 12.5.4,12.5.5
    陶哲轩实分析 习题 12.5.10
    opencvDCT离散余弦变换
    opencvPCA主要成分分析
    opencvCanny边缘检测
    opencvdft离散傅立叶变换(把空域变成频域)
  • 原文地址:https://www.cnblogs.com/danielWise/p/1957269.html
  • 最新文章
  • SPGridView Using a custom TemplateField to add a Checkbox Column
    SharePoint站点中用户信息与AD用户信息的“不一致”问题
    Group Policy Settings with Silverlight
    再议WSS RenderingTemplate
    SharePoint: Creating a custom field
    SharePoint中CAML使用的一些总结
    Avoid incorrect Silverlight XAP file caching
    Sharepoint Custom Control Creating custom Multi Choice field type
    MOSS 应用场景介绍
    SharePoint 知识总结
  • 热门文章
  • 用WebClinet实现SharePoint上文档库中文件的上传与下载
    JQuery and SharePoint 2007
    JQuery操作SharePoint Web Services之添加列表数据
    silverlight多线程学习(二) DispatcherTimer
    强烈推荐:240多个jQuery插件
    Passing default values to a SharePoint list's NewForm.aspx page
    陶哲轩实分析 习题 12.5.8 :度量空间中有界闭集不一定是紧集
    陶哲轩实分析 习题 12.5.12
    陶哲轩实分析 习题 12.5.13
    陶哲轩实分析 定理 12.5.10
Copyright © 2011-2022 走看看