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

    查看全文
  • 相关阅读:
    jquery获取对象的方法足以应付常见的各种类型的对象
    jquery如何判断表格同一列不同行input数据是否重复
    老司机带你解读jQuery插件开发流程
    jQuery插件开发详细教程
    jquery动态调整div大小使其宽度始终为浏览器宽度
    jQery使网页在显示器上居中显示适用于任何分辨率
    R语言学习——数据框
    java实验五——字符数组、String、StringBuffer的相互转化,StringBuffer的一些方法
    java实验五——字符数组、String、StringBuffer的相互转化,StringBuffer的一些方法
    java实验四——找鞍点
  • 原文地址:https://www.cnblogs.com/danielWise/p/1957269.html
  • 最新文章
  • 通信算法之四:九种调试方式理论误码率与实际误码率
    串的应用举例
    AVD那些事儿
    ZOJ 3686 A Simple Tree Problem(线段树)
    嵌入式术语
    DBCP,C3P0,Tomcat_JDBC 性能及稳定性測试
    Delphi 三层TDataSetProvider
    Delphi ADOQuery多个参数重复 改编技巧
    关于ADO一个容易被忽视的问题!UpdateBatch [问题点数:0分]
    UpdateBatch与事务处理的一点总结
  • 热门文章
  • delphi使用SQL的教程4(使用Params属性为参数赋值 )
    delphi 中如何执行SqlParameter形式的SQL语句
    在Delphi中动态地使用SQL查询语句 Adoquery sql 参数 冒号
    使用Dede破解Delphi软件实战
    RAD Studio 10.3 Rio (BCB & Dephi) 发布啦
    在64位系统上部署BDE的要点
    Asp.net控制Tomcat启动关闭的实现方法
    正则表达式速查表(ASP.NET)
    c# 可变数目参数params实例
    c#委托与事件(详解)
Copyright © 2011-2022 走看看