打開sharepoint站點能夠看到這個503的錯誤, 在event viewer中查看以下:
api
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.app
致使這個問題的緣由多是安裝了32bit的應用程序致使IIS加載模塊出現問題.ui
解決辦法:spa
1,將全部應用程序池中的應用,右鍵->高級->啓用32bit模式->false.code
2,編輯applicationHost.config:it
將io
改成<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>
若是有bitness64 則不須要更改.<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" />