VS2010负载测试-限制端口

发布于 2024-09-01 09:43:47 字数 656 浏览 6 评论 0原文

根据 VS2010 负载测试的故障排除指南 (http://social.msdn.microsoft.com/Forums/en/vststest/thread/df043823-ffcf-46a4-9e47-1c4b8854ca13),我试图限制用于的端口范围客户端-控制器通信。

HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\VisualStudio\10.0\EnterpriseTools\QualityTools\ListenPortRange\PortRangeStart

HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\VisualStudio\10.0\EnterpriseTools\QualityTools\ListenPortRange\PortRangeEnd

我已按所述在客户端上设置这些键,但根据 netstat客户端仍在侦听随机端口。控制器尝试在与客户端相同的随机端口上进行通信。

有人经历过同样的事情吗?

As per the trouble shooting guide for VS2010 Load Testing (http://social.msdn.microsoft.com/Forums/en/vststest/thread/df043823-ffcf-46a4-9e47-1c4b8854ca13), I'm trying to restrict the range of ports used for client-controller communication.

HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\VisualStudio\10.0\EnterpriseTools\QualityTools\ListenPortRange\PortRangeStart

HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\VisualStudio\10.0\EnterpriseTools\QualityTools\ListenPortRange\PortRangeEnd

I've set these keys on the client as described but according to netstat the client is still listening on random ports. The controller is attempting to communicate on the same random ports as the client.

Anyone experienced the same?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉城 2024-09-08 09:43:47

如果有人遇到这个问题,我已被告知解决方案:

1)关闭VS

2) 在下面创建 my.pkgdef 文件
C:\Program Files (x86)\Microsoft
视觉工作室
10.0\Common7\IDE\Extensions\my\ 包含以下内容:
[$RootKey$\EnterpriseTools\QualityTools\ListenPortRange]
“PortRangeStart”=双字:00000400
“PortRangeEnd”=dword:00000401

3)启动VS

4) 启动 regedit.exe 并检查是否是新的
值现在位于(32 位注册表)下
HKCU...\10.0_Config\EnterpriseTools\QualityTools\ListenPortRange。
如果它们不存在,请关闭 VS,
删除10.0_Config节点并启动
再次VS。

注意文件名和
目录并不重要,什么
重要的是:

A) 文件的扩展名为 .pkgdef

B) 它位于 C:\Program Files 下
(x86)\微软 Visual Studio
10.0\Common7\IDE\Extensions 目录(可能位于其子目录中)。

http://social.msdn。 microsoft.com/Forums/en/vststest/thread/df043823-ffcf-46a4-9e47-1c4b8854ca13

In case anyone encounters this issue, I've been advised of a solution:

1) Close VS

2) Create my.pkgdef file under
C:\Program Files (x86)\Microsoft
Visual Studio
10.0\Common7\IDE\Extensions\my\ with the following content:
[$RootKey$\EnterpriseTools\QualityTools\ListenPortRange]
"PortRangeStart"=dword:00000400
"PortRangeEnd"=dword:00000401

3) Start VS

4) Start regedit.exe and check if new
values are now under (32 bit registry)
HKCU...\10.0_Config\EnterpriseTools\QualityTools\ListenPortRange.
If they are not there, close VS,
remove the 10.0_Config node and start
VS again.

Note that the name of the file and
directory does not really matter, what
is important that:

A) The file has extension .pkgdef

B) It's under C:\Program Files
(x86)\Microsoft Visual Studio
10.0\Common7\IDE\Extensions directory (could be in a subdirectory of it).

http://social.msdn.microsoft.com/Forums/en/vststest/thread/df043823-ffcf-46a4-9e47-1c4b8854ca13

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