mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.3 KiB
87 lines
2.3 KiB
#!/bin/bash
|
|
# chkconfig: 2345 55 25
|
|
# description: Nezha Service
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: Nezha
|
|
# Required-Start: $all
|
|
# Required-Stop: $all
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: starts Nezha
|
|
# Description: starts the Nezha
|
|
### END INIT INFO
|
|
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
|
|
|
if [ -f /etc/init.d/functions ];then
|
|
. /etc/init.d/functions
|
|
fi
|
|
|
|
if [ -f /etc/rc.d/init.d/functions ];then
|
|
. /etc/rc.d/init.d/functions
|
|
fi
|
|
|
|
SERVICENAME=nezha
|
|
LOG_PATH={$SERVER_PATH}/${SERVICENAME}/logs
|
|
APP_PATH={$SERVER_PATH}/${SERVICENAME}/dashboard
|
|
|
|
|
|
app_start(){
|
|
isStart=`ps -ef|grep "${SERVICENAME} web" | grep -v grep | grep -v python | grep -v "/bin/bash" | awk '{print $2}'`
|
|
if [ "$isStart" == '' ];then
|
|
echo -e "Starting ${SERVICENAME}... \c"
|
|
cd $APP_PATH && exec nohup ${APP_PATH}/${SERVICENAME} web >> ${LOG_PATH}/${SERVICENAME}.log 2>&1 &
|
|
isStart=""
|
|
while [[ "$isStart" == "" ]];
|
|
do
|
|
echo -e ".\c"
|
|
sleep 0.5
|
|
isStart=$(ps -ef|grep "${SERVICENAME} web" |grep -v grep | grep -v python | grep -v "/bin/bash" | awk '{print $2}')
|
|
let n+=1
|
|
if [ $n -gt 15 ];then
|
|
break;
|
|
fi
|
|
done
|
|
if [ "$isStart" == '' ];then
|
|
echo -e "\033[31mError: ${SERVICENAME} service startup failed.\033[0m"
|
|
return;
|
|
fi
|
|
echo -e "\033[32mdone\033[0m"
|
|
else
|
|
echo "Starting ${SERVICENAME}(pid $(echo $isStart)) already running"
|
|
fi
|
|
}
|
|
|
|
app_stop(){
|
|
pids=`ps -ef | grep "${SERVICENAME} web" | grep -v grep | grep -v python | grep -v "/bin/bash" |awk '{print $2}'`
|
|
arr=($pids)
|
|
echo -e "Stopping ${SERVICENAME}... \c"
|
|
for p in ${arr[@]}
|
|
do
|
|
# echo "$p"
|
|
kill -9 $p
|
|
done
|
|
echo -e "\033[32mdone\033[0m"
|
|
}
|
|
|
|
app_status(){
|
|
isStart=`ps -ef | grep "${SERVICENAME} web" | grep -v grep | grep -v python | grep -v "/bin/bash" | awk '{print $2}'`
|
|
if [ "$isStart" == '' ];then
|
|
echo -e "${SERVICENAME} not running"
|
|
else
|
|
echo -e "${SERVICENAME}(pid $(echo $isStart)) already running"
|
|
fi
|
|
}
|
|
|
|
case "$1" in
|
|
'start') app_start;;
|
|
'stop') app_stop;;
|
|
'status') app_status;;
|
|
'reload')
|
|
app_stop
|
|
app_start;;
|
|
'restart')
|
|
app_stop
|
|
app_start;;
|
|
esac |