12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- #!/bin/bash
- version="1.0.1";
- BASE_DIR=/tmp
- appName=mooctest-report-service-1.0-SNAPSHOT.jar
- if [ -z $appName ];then
- appName=`ls -t |grep .jar$ |head -n1`
- fi
- function start()
- {
- count=`ps -ef |grep java|grep $appName|wc -l`
- if [ $count != 0 ];then
- echo "Maybe $appName is running, please check it..."
- else
- echo "The $appName is starting..."
- nohup java -jar ./$appName -XX:+UseG1GC -XX:+HeapDumpOnOutOfMemoryError -Xms512M -Xmx4G > /dev/null 2>&1 &
- fi
- }
- function stop()
- {
- appId=`ps -ef |grep java|grep $appName|awk '{print $2}'`
- if [ -z $appId ];then
- echo "Maybe $appName not running, please check it..."
- else
- echo "The $appName is stopping..."
- kill $appId
- fi
- }
- function restart()
- {
- # get release version
- releaseApp=`ls -t |grep .jar$ |head -n1`
- # get last version
- lastVersionApp=`ls -t |grep .jar$ |head -n2 |tail -n1`
- appName=$lastVersionApp
- stop
- for i in {5..1}
- do
- echo -n "$i "
- sleep 1
- done
- echo 0
- appName=$releaseApp
- start
- }
- function status()
- {
- appId=`ps -ef |grep java|grep $appName|awk '{print $2}'`
- if [ -z $appId ]
- then
- echo -e "\033[31m Not running \033[0m"
- else
- echo -e "\033[32m Running [$appId] \033[0m"
- fi
- }
- function usage()
- {
- echo "Usage: $0 {start|stop|restart|status|stop -f}"
- echo "Example: $0 start"
- exit 1
- }
- case $1 in
- start)
- start;;
- stop)
- stop;;
- restart)
- restart;;
- status)
- status;;
- *)
- usage;;
- esac
|