Linux后台执行jmeter命令

nohup &

[root@dev01 bin]# nohup /data/jmeter/apache-jmeter-5.0/bin/jmeter.sh -n -t confirm.jmx -l confirm.jtl &
[1] 34930
[root@dev01 bin]# nohup: ignoring input and appending output to ‘nohup.out’
# 或先进到脚本所在路径,再执行命令
[root@dev01 ~]# cd /data/jmeter/apache-jmeter-5.0/bin
[root@dev01 bin]# nohup ./jmeter.sh -n -t confirmOrder.jmx -l confirmOrder.jtl &
[1] 59211
[root@dev01 bin]# nohup: ignoring input and appending output to ‘nohup.out’

你可能感兴趣的:(Linux后台执行jmeter命令)