如何使用 -Djava.rmi.server.hostname=IP 和命令行参数从命令行 运行 Jmeter 进行测试?

How do I run Jmeter test from command line with -Djava.rmi.server.hostname=IP and command line parameter?

我需要 运行 使用一些命令行参数进行分布式测试,我还需要使用 -Djava.rmi.server.hostname=IP 传递我的服务器 IP,因为我是 运行从命令行宁它我需要 nee 作为

jmeter -n -t C:\Jmxfile.jmx -r Gsomeproperty=value 在命令行中。

我什至对传递命令行参数和主机名感到困惑?谁能帮我一次发送两个。

勾选 documentation:

Java system properties and JMeter properties can be overridden directly on the command line (instead of modifying jmeter.properties). To do so, use the following options:

-D[prop_name]=[value] defines a java system property value.

-J[prop_name]=[value] defines a local JMeter property.

-G[prop_name]=[value] defines a JMeter property to be sent to all remote servers.

-G[propertyfile] defines a file containing JMeter properties to be sent to all remote servers.

因此,您可以通过命令行一次发送两者。