如何确定哪个 w3wp.exe 进程属于哪个网站?

发布于 2024-07-15 10:24:58 字数 155 浏览 7 评论 0原文

我有一个托管两个应用程序池的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

黯淡〆 2024-07-22 10:24:59

有两种方式我更喜欢“任务管理器”版本。

通过任务管理器,

添加“命令行”列,如图所示。

输入图片此处描述
输入图片此处描述

通过 PowerShell,

cd C:\Windows\System32\inetsrv\
.\appcmd list wp

在此处输入图像描述

There are two ways in which I prefer "task manager" version.

By task manager,

Add "command line" column as shown in the images.

enter image description here
enter image description here

By PowerShell,

cd C:\Windows\System32\inetsrv\
.\appcmd list wp

enter image description here

携余温的黄昏 2024-07-22 10:24:59

您还可以使用 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.

初见你 2024-07-22 10:24:59

您还可以从 IIS 调试诊断工具获取此信息

You can also get this information from the IIS Debug Diagnostic Tool

玩套路吗 2024-07-22 10:24:58

对于 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

若水微香 2024-07-22 10:24:58

转到 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.

月棠 2024-07-22 10:24:58

lisapp。微软的 vbs 正是用于此目的。

lisapp.vbs from microsoft is for exactly that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文