一、错误描述:
SharePoint管理中心503错误,Windows Log错误记录下:
日志名称:应用程序
来源:IIS-W3SVC-WP
事件ID: 2282
描述:
由于配置问题,无法加载模块 DLL“C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\isapi\owssvr.dll”。当前配置仅支持加载为 x86 处理器架构构建的映像。数据字段包含错误号。
二、解决方案:
方案一、修改应用程序池:
修改应用程序池“ SharePoint Web Services Root ” 、“ SharePoint Central Administration v4 ”高级设置中的“启用32位应用程序”设置修改为False,默认为True。
方案二、修改applicationHost.config:
修改:
<add name="SharePoint14Module" image="C:\Program Files\Common Files\Microsoft
Shared\Web Server Extensions\14\isapi\owssvr.dll" preCondition=
"appPoolName=SharePoint Central Administration v4 " />
为:
<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" />
网上搜到这篇文章,用方案一解决了,就没仔细看,网址是:http://msdn.microsoft.com/zh-cn/ee537834.aspx