下面是我的三个可运行jar程序
1.启动 采集话单文件应用程序
nohup java -jar gather.jar > logs/gather/console.out & 2.启动 处理话单入库应用程序
nohup java -jar storage.jar > logs/storage/console.out &
3.启动 调用阿里巴巴计费应用程序
nohup java -jar uploader.jar > logs/uploader/console.out &
注:logs是可运行jar包的日志目录,console.out 这个文件可以参考在控制台输出的日志信息。
操作步骤三
4.停止 采集话单文件应用程序
ps -ef | grep "gather" | grep -v grep| sed 's/ \+/;/g' | cut -d ';' -f 2 | xargs kill
5.停止 处理话单入库应用程序
ps -ef | grep "storage" | grep -v grep| sed 's/ \+/;/g' | cut -d ';' -f 2 | xargs kill
6.停止 调用阿里巴巴计费应用程序
ps -ef | grep "uploader" | grep -v grep| sed 's/ \+/;/g' | cut -d ';' -f 2 | xargs kill
|
请发表评论