shell脚本-jenkins重启
AI-摘要
KunKunYu GPT
AI初始化中...
介绍自己
生成本文简介
推荐相关文章
前往主页
前往tianli博客
#!/bin/bash
# 拷贝-杀掉进程 启动进程并输出
# 2019年3月 曾缘
echo "hello address-distribution-1.0.0.jar"
DAY=`date +%Y-%m-%d`
pid=`ps -ef|grep address-distribution-1.0.0|grep -v grep|awk '{print $2}'`
if [ -n "$pid" ]
then
echo 'The pid: server' $pid ' will be killed....'
kill -9 $pid
echo 'The pid: server' $pid ' will be start'
cp /home/warehousecloud/.jenkins/workspace/zjs-dzfd-web/target/address-distribution-1.0.0.jar /data/sonar-jenkins/test-jar
echo 'copy /home/warehousecloud/.jenkins/workspace/zjs-dzfd-web/target/address-distribution-1.0.0.jar to /data/sonar-jenkins/test-jar '
nohup java -jar /data/sonar-jenkins/test-jar/address-distribution-1.0.0.jar > /dev/null &
else
echo 'The pid: server' $pid ' not exist , will be start'
nohup java -jar /data/sonar-jenkins/test-jar/address-distribution-1.0.0.jar > /dev/null &
fi
echo 'The pid: server' $pid ' started'
- 感谢你赐予我前进的力量
赞赏者名单
因为你们的支持让我意识到写文章的价值🙏
作者编辑不易,如有转载请注明出处。完整转载来自https://wangairui.com 网站名称:猫扑linux
评论
匿名评论
隐私政策
你无需删除空行,直接评论以获取最佳展示效果