I have set up jmeter distributed testing using my local machine (master) and AWS EC2 machines (slaves). Most of the config is based on - http://blog.ionelmc.ro/2012/02/16/how-to-run-jmeter-over-ssh-tunnel/
When running tests I have following exception on jmeter-server.log
2015/11/06 12:42:37 ERROR - jmeter.samplers.RemoteTestListenerWrapper: java.rmi.ConnectException: Connection refused to host: 127.0.1.1; nested exception is:
java.net.ConnectException: Connection refused
One possible solution I came across is from one of the stackover flow question-
and I indeed start my server as -
./jmeter-server -Djava.rmi.server.hostname=127.0.0.1
and it did not solve the problem. Few other blogs talk about setting following property on server -
server.rmi.localhostname=127.0.0.1
But I can not find any such property on jmeter 2.13 Was this property removed or replaced by some other property ?