Shell脚本

Posted wdzhz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Shell脚本相关的知识,希望对你有一定的参考价值。

Linux系统环境下用于启动jar文件的启动脚本如下:

#!/bin/bash
cd $PWD
while : 
do
service1=$(ps -ef |grep "Register-0.0.1-SNAPSHOT.jar" |grep -v "grep")
service2=$(ps -ef |grep "Config-Service-0.0.1-SNAPSHOT.jar" |grep -v "grep")

if [ "$service1" ] ; then
echo "The Registry Micro-Service is alive!"
else
echo "The Registry Micro-Service was shutdown!"
echo "Starting Registry Micro-Service ..."
//外部配置文件
 java -jar Register-0.0.1-SNAPSHOT.jar --spring.config.location=classpath:/application.properties &
echo "The Registry Micro-Service was started!"
fi

if [ "$service2" ] ; then
echo "The Config-Service Micro-Service is alive!"
else
echo "The Config-Service Micro-Service was shutdown!"
echo "Starting Config-Service Micro-Service ..."
 java -jar Config-Service-0.0.1-SNAPSHOT.jar  --spring.profiles.active=uat &
echo "The Config-Service Micro-Service was started!"
fi

sleep 60
rm -rf nohup.out
done

 

Linux系统环境下用于停止jar文件的停止脚本如下:

#!/bin/sh

echo "Stop MicroService starting..."

pids=`ps -ef | grep "startService10" |grep -v grep| awk ‘{print $2}‘`
if [ "$pids" ]
then
echo "startService10.sh service kill -9 Pid:" $pids
for pid in $pids
do
 echo "service pid:"$pid
 kill -9 $pid
done
echo "Stoped startService10.sh service success."
else
echo "startService10.sh Service is not run."
fi

pid1=`ps -ef | grep "Register-0.0.1-SNAPSHOT".jar | grep -v grep | awk ‘{print $2}‘`
pid2=`ps -ef | grep "Config-Service-0.0.1-SNAPSHOT".jar | grep -v grep | awk ‘{print $2}‘`

if [ "$pid1" ]
then
echo "Registry service kill -9 Pid:" $pid1
kill -9 $pid1
echo "Stoped Registry service success."
else
echo "Registry Service is not run."
fi

if [ "$pid2" ]
then
echo "Config-Service service kill -9 Pid:" $pid2
kill -9 $pid2
echo "Stoped Config-Service service success."
else
echo "Config-Service Service is not run."
fi

echo "Stop 10 finish."

 

以上是关于Shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

用于确保在任何给定时间仅运行一个 shell 脚本的 shell 片段 [重复]

常用python日期日志获取内容循环的代码片段

shell脚本引用expect

Shell脚本切割日志

Eclipse 中的通用代码片段或模板

Python如何调用别人写好的脚本