打开sharepoint站点可以看到这个503的错误, 在event viewer中查看如下:

The Module DLL 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\owssvr.dll' could not be loaded due to a configuration problem. The current configuration only supports loading images built for a x86 processor architecture.

 


导致这个问题的原因可能是安装了32bit的应用程序导致IIS加载模块出现问题.

解决办法

1,将所有应用程序池中的应用,右键->高级->启用32bit模式->false.

2,编辑applicationHost.config:

<globalModules>
 ...
 ...
 <add name="SharePoint14Module" image="C:\Program Files\Common
 Files\Microsoft Shared\Web Server
 Extensions\14\isapi\owssvr.dll"
 preCondition="appPoolName=SharePoint
 Central Administration v4" />
 </globalModules>
改为
 <add name="SharePoint14Module" image="C:\Program Files\Common Files\Microsoft
 Shared\Web Server Extensions\14\isapi\owssvr.dll" preCondition=
"appPoolName=SharePoint Central Administration v4,bitness64" />

如果有bitness64 则不需要更改.


相关文章:

  • 2022-01-23
  • 2021-11-06
  • 2021-10-18
  • 2021-09-18
  • 2021-12-25
  • 2022-12-23
  • 2021-12-03
  • 2021-08-03
猜你喜欢
  • 2021-10-04
  • 2021-05-31
  • 2021-09-01
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
相关资源
相似解决方案