0

Having trouble running multiple JMX files in non GUI mode in Linux. Doesn't seem to be spinning up multiple instances of the JMeter JVM service. Any help would be much appreciated.

Failing command:

sudo $JMETER/jmeter -n -r -t $JMETER/test1.jmx & sudo $JMETER/jmeter -n -r -t $JMETER/test2.jmx &

See attachment below for error 'Engine is busy - try again later' only test 1 gets started and the test 2 doesn't. enter image description here

litterbugkid
  • 3,534
  • 7
  • 36
  • 54

1 Answers1

0

It looks like you're trying to execute different tests at the same time in the distributed mode. As of current JMeter version 5.2.1 this is not supported as remote slave JMeter engine can only execute one test at a time.

So either consider running the tests locally (without the distributed mode) or make sure to run as many slave instances as you need using different RMI ports in order to have:

  • Unique master and unique slave(s) running test 1
  • Unique master and unique slave(s) running test 2
  • etc.
Dmitri T
  • 159,985
  • 5
  • 83
  • 133