#!/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'