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.
58 lines
1.4 KiB
58 lines
1.4 KiB
2 years ago
|
#!/bin/bash
|
||
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
|
||
|
export PATH
|
||
|
export LANG=en_US.UTF-8
|
||
|
|
||
|
|
||
|
if [ -f /etc/motd ];then
|
||
|
echo "welcome to mdserver-web panel" > /etc/motd
|
||
|
fi
|
||
|
|
||
|
sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config
|
||
|
|
||
|
yum install -y curl-devel libmcrypt libmcrypt-devel python3-devel
|
||
|
|
||
|
|
||
|
cd /www/server/mdserver-web/scripts && bash lib.sh
|
||
|
chmod 755 /www/server/mdserver-web/data
|
||
|
|
||
|
if [ -f /etc/rc.d/init.d/mw ];then
|
||
|
bash /etc/rc.d/init.d/mw stop && rm -rf /www/server/mdserver-web/scripts/init.d/mw && rm -rf /etc/rc.d/init.d/mw
|
||
|
fi
|
||
|
|
||
|
echo -e "stop mw"
|
||
|
isStart=`ps -ef|grep 'gunicorn -c setting.py app:app' |grep -v grep|awk '{print $2}'`
|
||
|
|
||
|
port=7200
|
||
|
if [ -f /www/server/mdserver-web/data/port.pl ]; then
|
||
|
port=$(cat /www/server/mdserver-web/data/port.pl)
|
||
|
fi
|
||
|
|
||
|
n=0
|
||
|
while [[ "$isStart" != "" ]];
|
||
|
do
|
||
|
echo -e ".\c"
|
||
|
sleep 0.5
|
||
|
isStart=$(lsof -n -P -i:$port|grep LISTEN|grep -v grep|awk '{print $2}'|xargs)
|
||
|
let n+=1
|
||
|
if [ $n -gt 15 ];then
|
||
|
break;
|
||
|
fi
|
||
|
done
|
||
|
|
||
|
|
||
|
echo -e "start mw"
|
||
|
cd /www/server/mdserver-web && bash cli.sh start
|
||
|
isStart=`ps -ef|grep 'gunicorn -c setting.py app:app' |grep -v grep|awk '{print $2}'`
|
||
|
n=0
|
||
|
while [[ ! -f /etc/rc.d/init.d/mw ]];
|
||
|
do
|
||
|
echo -e ".\c"
|
||
|
sleep 1
|
||
|
let n+=1
|
||
|
if [ $n -gt 20 ];then
|
||
|
echo -e "start mw fail"
|
||
|
exit 1
|
||
|
fi
|
||
|
done
|
||
|
echo -e "start mw success"
|