IIS 报Service Unavailable. HTTP Error 503 错误时

 发现这种错误如果在启动应用程序池后还是无效,并且应用程序池会自动停止时,要从系统日志里边查看原因。方法如下:

1.通过命令打开系统时间查看器:

2.点击应用程序打开日志:

查看error原因,如果报

The Module DLL C:WindowsSystem32inetsrvHipIISEngineStub.dll failed to load.

The data is the error. 

可通过一下方法解决:

在C:WindowsSystem32inetsrvconfig下修改applicationHost.config文件

open applicationHost.config as Administrator for editing in Notepad.

Edit the <globalModules> section and remove the following line:

<add name="MfeEngine" image="%windir%System32inetsrvHipIISEngineStub.dll" />

Edit the <modules> section and remove the following line:

<add name="MfeEngine" />

After you have finished editing the applicationHost.config file, save the file,

then restart the IIS server using iisreset or by restarting the system.  

本人已经试过,该解决方法转载自百度文库。

原文地址:https://www.cnblogs.com/jinghuimin/p/7372106.html