简体   繁体   English

IIS 7.0的ASP.NET进程是什么?

[英]What is the ASP.NET process for IIS 7.0?

Looking at what's running and nothing jumps out. 看看正在运行什么,什么都没有跳出来。

Thanks! 谢谢!

It should be w3wp.exe 它应该是w3wp.exe

EDIT: In line with Darren's comment, you should also check the "Show processes from all users" in Task Manager if that is where you are looking for the process. 编辑:根据Darren的评论,您还应该检查任务管理器中的“显示所有用户的进程”,如果您正在查找该进程的位置。

Just to add something here, process explorer comes in handy when trying to track down a process: http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx 只是为了在这里添加一些内容,在尝试跟踪进程时,进程资源管理器会派上用场: http//technet.microsoft.com/en-us/sysinternals/bb896653.aspx

Beats task manager hands down and can be substituted. 击败任务经理,可以替代。

确保显示所有进程已检查(在vs中)

Using TaskManager should show you the process W3WP.exe is the IIS worker process, if you have multiple instances adding the Column "Command Line" will show you which Application Pool is being hosted on each of them in the -ap switch. 使用TaskManager应该向您显示进程W3WP.exe是IIS工作进程,如果您有多个实例添加列“命令行”将在-ap开关中显示每个实例上托管的应用程序池。 Also, in the IIS Manager UI there is a "Worker Processes" feature that if you double click that you will see the list of processes, Memory and CPU they are consuming, and double clicking the instance will show you the list of executing requests on it, really useful when trying to figure out a "misbehaving" request. 此外,在IIS管理器UI中有一个“工作进程”功能,如果您双击它,您将看到他们正在使用的进程列表,内存和CPU,并双击该实例将显示执行请求的列表它,在试图找出“行为不端”的请求时非常有用。

Furthermore if you need to look at the .NET/unmanaged stack just donwload Process Explorer and look at your w3wp.exe processes to examine memory and other stats without having to do a remote/local debugging (just look at the .NET Tab on the properties of the process). 此外,如果您需要查看.NET /非托管堆栈,只需下载Process Explorer并查看您的w3wp.exe进程以检查内存和其他统计信息,而无需进行远程/本地调试(只需查看.NET选项卡上的过程的属性)。 It will show all the .NET performance counters for that particular process. 它将显示该特定进程的所有.NET性能计数器。

Awesome tool! 真棒工具!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM