【说明0】附上本人后来新写的3条脚本文件,https://blog.csdn.net/VicdorLin/article/details/90790571,见文章底部

【说明】本文参考改编自幼稚园老大_Jhon相关文章

#!/bin/bash
#这里可替换为你自己的执行程序,其他代码无需更改
APP_NAME=auto-0.0.1-SNAPSHOT.jar
#启动方法
start(){
	pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}'`
      	if [ "$pid" ]; then
		echo "$APP_NAME is already running. pid=$pid ."
	else
		nohup java -jar $APP_NAME >> catalina.out 2>&1 &
		echo "$APP_NAME now is running"
	fi
}
#停止方法
stop(){
	pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}'`
	if [ "$pid" ]; then
		kill -9 $pid
		echo "Pid:$pid stopped"
	else
		echo "$APP_NAME is not running"
	fi
}
#输出运行状态
status(){
	pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}'`
	if [ "$pid" ]; then
		echo "$APP_NAME is running. Pid is ${pid}"
	else
		echo "$APP_NAME is NOT running."
	fi
}
#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$1" in
	start)
		start
		;;
	stop)
		stop
		;;
	status)
		status
		;;
	restart)
		stop
		sleep 5
		start
		;;
	*)
		echo "Usage:{start|stop|status|restart}"
		;;
esac
exit 0

 

GitHub 加速计划 / li / linux-dash
13
2
下载
A beautiful web dashboard for Linux
最近提交(Master分支:3 个月前 )
186a802e added ecosystem file for PM2 5 年前
5def40a3 Add host customization support for the NodeJS version 5 年前
Logo

AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。

更多推荐