jMeter 服务器模式 - Windows 找不到“rmiregistry”

发布于 2024-07-30 09:26:29 字数 173 浏览 5 评论 0原文

当我尝试在服务器模式下执行 jMeter 时,出现以下异常:

“Windows 找不到 'rmiregistry'”

。 我不知道如何解决这个问题,我用谷歌搜索了一下,但没有找到与我的问题相关的任何内容。

When I try to execute jMeter in server mode, I get this exception:

"Windows can not find 'rmiregistry'"

. I don't know how to solve this, I googled about it, but I didn't find anything related to my problem.

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

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

发布评论

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

评论(2

以歌曲疗慰 2024-08-06 09:26:29

听起来您的路径中没有 rmiregistry。 确保 java\bin 目录位于您的路径中。

完成后,检查其是否正常工作:

Start -> Run -> cmd -> start rmiregistry

如果不起作用,请再次检查您的路径。

在运行 jmeter-server.bat 之前,您可能需要自己启动注册表。 此外,编辑批处理文件以确保它使用正确的服务器设置运行。

It sounds like you don't have the rmiregistry in your path. Make sure the java\bin directory is in your path.

Once that's done, to check it's working:

Start -> Run -> cmd -> start rmiregistry

If that doesn't work, check your path again.

You may need to start the registry yourself, before running the jmeter-server.bat. Additionally, edit the batch file to make sure it's running with the correct server settings.

倾听心声的旋律 2024-08-06 09:26:29

Dylan 的答案是最有可能的,但只是为了补充说明,您的路径在 Windows 中存储为环境变量。 从命令行,您可以运行:

echo %PATH%

查看变量的值。 您应该看到各个目录路径的分号分隔输出。

要附加到变量(如果 java\bin 不在其中),请使用以下命令:

set PATH=%PATH%;[full path to java\bin]

要检查 RMI 注册表是否已正确启动,您可以检查它是否正在侦听其标准端口(1099,除非您另有指定)使用 TCP View 等工具。

Dylan's answer is the most likely, but just to add clarification, your path is stored as an environment variable in Windows. From the command line, you can run:

echo %PATH%

To see the value of the variable. You should see a semi-colon delimited output of various directory paths.

To append to the variable (if java\bin isn't in there) use the following:

set PATH=%PATH%;[full path to java\bin]

To check that the RMI registry has started correctly, you can check that it is listening on its standard port (1099 unless you've specified otherwise) with a tool such as TCP View.

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