jmeter分布式负载测试 - java.rmi.ServerException

发布于 2025-01-10 11:56:24 字数 455 浏览 0 评论 0原文

如果我问错了问题,我很抱歉,我是 Jmeter 的新手。

我正在尝试在从机上运行分布式负载。

使用从机[在主机上设置属性文件]运行测试并且从机Jmeter服务器正在运行时

出现以下异常:

rconfigure() 方法 java.rmi.ServerException 中出现错误: 服务器线程中发生RemoteException;嵌套异常是: java.rmi.UnmarshalException:解组参数时出错;嵌套异常是: java.io.InvalidClassException: org.apache.jmeter.protocol.http.control.CacheManager;本地类 不兼容:流 classdesc serialVersionUID = 235,本地类 序列版本UID = 236

您能帮忙解决上述错误吗?

I am sorry if I am asking a wrong question, I am new to Jmeter.

I am trying to run distributed load on slave machine.

While running test with slave machine [ set properties file at master machine] and Slave Jmeter-server is running

Getting below exception:

Error in rconfigure() method java.rmi.ServerException:
RemoteException occurred in server thread; nested exception is:
java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
java.io.InvalidClassException: org.apache.jmeter.protocol.http.control.CacheManager; local class
incompatible: stream classdesc serialVersionUID = 235, local class
serialVersionUID = 236

Could you please help with above error.

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

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

发布评论

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

评论(1

甜宝宝 2025-01-17 11:56:24

鉴于您在 这一行

private static final long serialVersionUID = 234L;

表示master和slave运行的JMeter版本不同,

需要使用相同版本根据 JMeter 最佳实践 需要是最新版本的 JMeter

也建议使用:

  1. 相同版本的 Java
  2. 相同 JMeter 插件(如果有)
  3. 如果您的测试使用外部数据文件(如 CSV)或第 3 方 .jar 文件,您需要在运行测试之前手动将它们复制到从站

更多信息: 如何在JMeter

Given you have different values in this line

private static final long serialVersionUID = 234L;

it means that the master and the slave are running different version of JMeter

You need to use the same version of JMeter for the master and the slave(s), according to JMeter Best Practices it needs to be the latest version of JMeter

also it's recommended to use:

  1. The same version of Java
  2. The same JMeter Plugins if any
  3. If your test uses external data files (like CSV) or 3rd-party .jar files you need to manually copy them to the slaves prior to running the test

More information: How to Perform Distributed Testing in JMeter

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