Microsoft KB Archive/253706

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 16:16, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


How To Isolate and Identify the Source of Inetinfo or Other Process Memory Leaks

Article ID: 253706

Article Last Modified on 12/31/2006



APPLIES TO

  • Microsoft Windows DNA
  • Microsoft Internet Information Server 4.0



This article was previously published under Q253706

SUMMARY

Memory leaks, regardless of where they occur, tend to manifest the same behavior. As a process continues to run, a decreasing amount of memory is available over time and eventually the process can run out of memory to allocate.

Internet Information Server (IIS) has no known memory leaks at this time. There are, however, typically dozens of components that are used within the Inetinfo process that may have memory leaks. Over time, these leaks can accrue, potentially causing the entire process to stop responding.

Be aware that on high volume sites, a growth in memory over the first 24 hours of use is not uncommon. IIS caches much of its data and the Time To Live (TTL) on the cache is 24 hours. In fact, the IIS file cache is set to use up to half of available memory by default.

IMPORTANT: This article contains information about modifying the registry. Before you modify the registry, make sure to back it up and make sure that you understand how to restore the registry if a problem occurs. For information about how to back up, restore, and edit the registry, click the following article number to view the article in the Microsoft Knowledge Base:

256986 Description of the Microsoft Windows Registry


MORE INFORMATION

NOTE: You can use the procedures given below to examine any process that you suspect has a memory leak; to do so, replace "Inetinfo.exe" with the name of your process.

To get memory usage logs of the Inetinfo process which can be resolved against modules that are allocating memory, complete the following steps:

  1. Install the necessary symbol files.
  2. At the command prompt, type the following:

    set _NT_SYMBOL_PATH=SystemRoot\Symbols
  3. To enable memory allocation tracking:
    1. Start Registry Editor (Regedt32.exe).
    2. Locate the GlobalFlag value under the following key in the registry:

      HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
                                      
    3. On the Edit menu, click DWORD, type 23000, and then click OK.
    4. Quit Registry Editor.
  4. Download two utility programs, Dh.exe (Display Heap) and Dhcmp.exe (Heap Compare), into a temporary directory. Both programs are available at the following Web site:

    http://www.microsoft.com/technet/prodtechnol/windows2000serv/reskit/default.mspx?mfr=true

    Dh.exe is included as part of the Windows NT 4.0 Resource Kit, Supplement 2 or higher. To download it, expand Network/Server Administration Tools from the tree on the left, and click Dh.exe.

    Dhcmp.exe is included as part of the Windows NT 4.0 Resource Kit, Supplement 4. To download it, expand New Tools from the tree on the left, and click New Tools with Supplement Four.
  5. Restart your web server.
  6. Press CTRL+ALT+DELETE, click Task Manager, click the Processes tab, and locate the process ID (PID) for Inetinfo.exe.
  7. Open a command window, switch to the directory into which you copied Dh.exe and Dhcmp.exe, and enter the following command:

    dh -p PID -f before.txt
  8. Wait for the leak to show, and then enter the following command:

    dh -p PID -f after.txt
  9. Once the logs are captured, enter the following command:

    dhcmp -d before.txt after.txt>cmp.txt
  10. Send the Before.txt, After.txt, and Cmp.txt files to your Microsoft Support Professional via FTP. (If you like, you may zip these files.) Please see the Microsoft File Exchange Web page for information on transferring files via FTP:

    ftp://ftppss.microsoft.com
  11. Send email to your Microsoft Support Professional with the following information:
    • The version of Windows NT and Service Pack that you are running.
    • Any IIS hotfixes that you have installed.
    • A full description of the events leading up to the system not responding.
    • A full description of your web site's architecture.

For detailed instructions on how to use the Dh.exe utility, please click the article number below to view the article in the Microsoft Knowledge Base:

243318 How to Use Dh.exe to Troubleshoot User-Mode Memory Leaks


For additional information, including the command-line options of Dh.exe, see the following article:

168609 How to Use Display Heap (DH.EXE) Resource Kit Utility


Keywords: kbbug kbdebug kbgrpdssie kbhowto KB253706