• 如何在IIS crash或者hang时候,dump 所有与IIS相关的memory?


    当IIS发生crash或者hang之后,如果有必要获取此刻的memory dump。我们必须通过相应的debug tool来获得。相应工具很多。推荐的是windbg。安装之后,在其folder下,有一个adplus.vbs脚本工具。
    1.dump hang模式下的iis memory:
        在command console下面:
        key in:    adplus -hang -iis -o c:\ Path_to_Put_Files_in -quiet
        则系统会listen iis。如果iis发生hang,那么会自动收集与iis相关的memory保存至Path_to_Put_Files,然后exit.

    2. dump crash模式下的iis memory:
        在command console下面:
        key in: adplus -crash -iis -o c:\ Path_to_Put_Files_in -quiet
        则当iis crash的时候,系统会自动收集与iis相关的memery并保存至Path_to_Put_Files,然后exit.


  • 相关阅读:
    博客园转文章的方法
    http协议相关面试题
    接口测试基础01
    文件上传下载
    括号-回溯
    幂集-回溯
    分割数组为连续子序列- -贪心法
    不使用临时变量交换数字
    计数质数
    拼接最大值
  • 原文地址:https://www.cnblogs.com/Winston/p/1234071.html
Copyright © 2020-2023  润新知