cwc...@mail.com wrote:
  Hello Team,

Am getting the following error while remote testing.

I have generated the keystore and placed it in both client and server.
Have same versions of jmeter and java in client and server.
Firewall is disabled, added the IP address of remote hosts to properties file.
I have set server.rmi.ssl.disable=true.

I am not sure why am i getting the above error.
Could you please help me with it.


Thanks

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org
The error you're getting means that some process is using port 1099 on the machine which you provided via *remote_hosts* property but the process is not JMeter slave.

You can double check it yourself by running JMeter as:

jmeter -Jremote_hosts=example.com:80 -Jserver.rmi.ssl.disable=true

You need to put the IP address of the machine where JMeter slave is running (not the IP address of the system under test)

If you amended *server_port* property to be something different from default value of 1099 you need to provide the port as well:

jmeter -Jremote_hosts=ip_address_or_dns_hostname_of_slave1:1099,ip_address_or_hostname_of_slave2:some-other-port, etc.

More information:

 * Remote hosts and RMI configuration
   <https://jmeter.apache.org/usermanual/properties_reference.html#remote>
 * Apache JMeter Properties Customization Guide
   <https://www.blazemeter.com/blog/jmeter-properties-customization>
 * Apache JMeter Distributed Testing Step-by-step
   
<https://jmeter.apache.org/usermanual/jmeter_distributed_testing_step_by_step.html>



---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@jmeter.apache.org
For additional commands, e-mail: user-h...@jmeter.apache.org

Reply via email to