zoukankan      html  css  js  c++  java
  • 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.  

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

  • 相关阅读:
    MySQL decimal unsigned 更新负数不报错却为0
    centos 安装jdk
    CentOS7安装docker
    Cron 时间元素
    PHPStorm
    日志习惯
    HTTP幂等性
    navicat for mysql 10.1.7注册码
    localStorage、sessionStorages 使用
    FreePascal
  • 原文地址:https://www.cnblogs.com/jinghuimin/p/7372106.html
Copyright © 2011-2022 走看看