1 Star 2 Fork 0

Alvin / Devops-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
startup.sh 1.57 KB
一键复制 编辑 原始数据 按行查看 历史
鹿友孤独 提交于 2024-02-23 16:25 . 新增远程启动服务功能
#!/bin/sh
GO_NAME="devops-tools"
GO_PATH="/tmp/devis/"
logData=`date '+%Y%m%d'`
#PID 代表是PID文件
PID=devopsTools.pid
#使用说明,用来提示输入参数
usage(){
echo "Usage: sh 执行脚本.sh [start|stop|restart|status]"
exit 1
}
#检查程序是否在运行
is_exist(){
pid=`ps -ef|grep ${GO_NAME} |grep -v grep|awk '{print $2}' `
echo "PID=${pid}"
#如果不存在返回1,存在返回0
if [ -z "${pid}" ]; then
return 1
else
return 0
fi
}
#启动方法
start(){
is_exist
if [ $? -eq "0" ]; then
echo ">>> ${GO_NAME} is already running PID=${pid} <<<"
else
nohup ${GO_PATH}${GO_NAME} port >> /dev/null 2>&1 &
echo $! > $PID
echo ">>> start ${GO_NAME} successed PID=$! <<<"
fi
}
#停止方法
stop(){
#is_exist
pidf=$(cat $PID)
#echo "$pidf"
echo ">>> api PID = $pidf begin kill $pidf <<<"
kill $pidf
rm -rf $PID
sleep 2
is_exist
if [ $? -eq "0" ]; then
echo ">>> api 2 PID = $pid begin kill -9 $pid <<<"
kill -9 $pid
sleep 2
echo ">>> $GO_NAME process stopped <<<"
else
echo ">>> ${GO_NAME} is not running <<<"
fi
}
#输出运行状态
status(){
is_exist
if [ $? -eq "0" ]; then
echo ">>> ${GO_NAME} is running PID is ${pid} <<<"
else
echo ">>> ${GO_NAME} is not running <<<"
fi
}
#重启
restart(){
stop
start
}
#根据输入参数,选择执行对应方法,不输入则执行使用说明
case "$1" in
"start")
start
;;
"stop")
stop
;;
"status")
status
;;
"restart")
restart
;;
*)
usage
;;
esac
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/alvin-1998/devops-tools.git
git@gitee.com:alvin-1998/devops-tools.git
alvin-1998
devops-tools
Devops-tools
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891