Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make JMeter run in background

Tags:

jmeter

How to make JMeter (running remotely from another machine) run in background so that when I turn off my PC (and thus kill the putty shell), it will still continue running?

like image 826
theAnonymous Avatar asked Mar 08 '23 07:03

theAnonymous


1 Answers

Use below command to run Jmeter in the background:

nohup ./jmeter.sh -n -t test.jmx &

when you run above command a file nohup.out will be created in the same folder and it will store the console output.

like image 185
Arbaz Alam Avatar answered Apr 27 '23 03:04

Arbaz Alam