For the first time I'm just playing around with nohup
on top of an Ubuntu server. I read few docs about nohup
and got to know about the running commands with options such as nohup ./server.sh &
.
What I want to know is that, how should I be running the JMeter
script (in headless mode) using nohup
? Following is the script I needed to run with nohup
:
./jmeter.sh -n -t /home/chamith/WSO2MB/new/apache-jmeter-2.13/bin/GamesSubscriber.jmx
When I tried using the normal nohup
operation within the script it always throws me an error saying -n command not found
. How should I move on with this? Any help would be appreciated.