zoukankan      html  css  js  c++  java
  • Solving SharePoint Server 2010

    Installed: SharePoint Server 2010 for Internet Enterprise Beta (x64) On: Windows Server 2008 Standard (x64) on 64 bit hardware

    Attempts to access the Central Administration console led to IIS returning 503. The service is unavailable

    And this error was found in the Application log

    The Module DLL 'C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions14isapiowssvr.dll' could not be loaded due to a configuration problem. The current configuration only supports loading images built for a x86 processor architecture.

    After much ado, the solution turned out to be:

    1) Ensure that the enable32BitAppOnWin64 seeting for the "SharePoint Central Administration" app pool is set to False, and the same for the "SharePoint Web Services Root" app pool

    2) Edit applicationHost.config:

    Change:

      <globalModules>
     ...
     ...
     <add name="SharePoint14Module" image="C:Program FilesCommon
     FilesMicrosoft SharedWeb Server
     Extensions14isapiowssvr.dll"
     preCondition="appPoolName=SharePoint
     Central Administration v4" />
     </globalModules>
    

    To:

        <add name="SharePoint14Module" image="C:Program FilesCommon FilesMicrosoft
     SharedWeb Server Extensions14isapiowssvr.dll" preCondition=
    "appPoolName=SharePoint Central Administration v4,bitness64" />
    

    I hope this helps somebody :-)

    bitness64 being the magic word here

  • 相关阅读:
    AVLTree的实现以及左右旋转维持自平衡
    哈希函数之布隆过滤器
    LeetCode——线段树解决区间总和问题
    第23章 Windows身份验证
    第22章 使用外部身份提供商登录
    第21章 登录
    第20章 定义客户端
    第19章 定义资源
    第18章 启动
    第17章 社区快速入门和模板
  • 原文地址:https://www.cnblogs.com/huaan011/p/4058155.html
Copyright © 2011-2022 走看看