美文网首页
Linux后台执行jmeter命令

Linux后台执行jmeter命令

作者: Joey_GZ | 来源:发表于2019-10-25 12:01 被阅读0次

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命令

      本文链接:https://www.haomeiwen.com/subject/ilpdvctx.html