Le Phuc
Le Phuc

Reputation: 1

Don't have response result to Server device when distributed load test with jmeter

I have follow the offical guide of Jmeter about setup distributed load test such as:

I want it can response the result to the Server device to see the result of test plan

Upvotes: 0

Views: 50

Answers (1)

Dmitri T
Dmitri T

Reputation: 168002

If metrics never come to the master machine it means that the slaves cannot connect back to it to send the results.

The property responsible for the port is client.rmi.localport and the default value is 0 which means that the port is allocated randomly.

So if you're going for the default JMeter configuration you need to make to allow all traffic from the slaves machine in the master machine's firewall

Alternatively you can explicitly set which ports to use for the communication via the aforementioned property, be aware that JMeter opens up to three ports beginning with the port defined in this property

The property needs to be set in the user.properties file on each slave machine.

More information:

Upvotes: 0

Related Questions