如何确定哪个 w3wp.exe 进程属于哪个网站?
我有一个托管两个应用程序池的 IIS6 Web 服务器。 有时,其中一个 w3wp 进程会占用 CPU 一段时间,并且两个应用程序池似乎都会受到影响。 我不确定哪个是哪个,如果没有这些信息,我不知道应该归咎于哪个应用程序。
如何判断哪个 w3wp 属于哪个应用程序池?
I have an IIS6 web server that is hosting two application pools. Occasionally, one of the w3wp processes will spike the CPU for a while, and both app pools seem to suffer the consequences. I'm not sure which one is which, and without that information I don't know which application to blame.
How can I tell which w3wp belongs to which App Pool?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
有两种方式我更喜欢“任务管理器”版本。
通过任务管理器,
添加“命令行”列,如图所示。
通过 PowerShell,
There are two ways in which I prefer "task manager" version.
By task manager,
Add "command line" column as shown in the images.
By PowerShell,
您还可以使用 Sysinternals 中的 Process Explorer。 右键单击顶部的列并选择“命令行”列。 在“命令行”列中,您将看到完整命令中包含的 Web 应用程序的名称。
You can also use Process Explorer from Sysinternals. Right click the columns at the top and select the "Command Line" column. In the Command Line column you will see the name of the web app included in the full command.
您还可以从 IIS 调试诊断工具获取此信息
You can also get this information from the IIS Debug Diagnostic Tool
对于 IIS7,您需要以管理员身份使用 %systemroot%\system32\inetsrv\ 中的 APPCMD,
即
%systemroot%\system32\inetsrv\appcmd list wp
请参阅 http://learn.iis.net/page.aspx/114/getting-started-with-appcmdexe/#HowToUse更多细节
For IIS7 you need to use APPCMD from %systemroot%\system32\inetsrv\ as an administrator
i.e.
%systemroot%\system32\inetsrv\appcmd list wp
See http://learn.iis.net/page.aspx/114/getting-started-with-appcmdexe/#HowToUse for more details
转到 cmd 窗口,然后输入
c:\windows\system32\cscript c:\windows\system32\iisapp.vbs
。现在您将获得工作进程列表以及应用程序池名称。
Goto cmd window then type
c:\windows\system32\cscript c:\windows\system32\iisapp.vbs
.Now you will get the list of worker processes along with the app pool name.
lisapp。微软的 vbs 正是用于此目的。
lisapp.vbs from microsoft is for exactly that.