1 Star 0 Fork 6

adslvcd/THRMP

forked from kzeng/THRMP 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
check_and_run.sh 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
kzeng 提交于 2022-01-10 03:22 . modify some scripts
###################################################################
#
# this script check frpc status and wifi connection satus
# if not running, start it
# author: kzeng
# date: 2021-11-13
# */5 * * * * /home/pi/thrmp/check_and_run.sh
#
###################################################################
# check wifi connection status
IP=`ifconfig |grep "192.168."`
echo $IP
if [ "$IP" != "" ]; then
echo "LAN/WLAN ip address is ok ..."
else
echo "not found ip address, restart networking ...."
sudo /etc/init.d/networking restart
fi
###################################################################
# check frpc status
PIDS=`ps -ef |grep "frpc.ini" |grep -v grep | awk '{print $2}'`
echo $PIDS
if [ "$PIDS" != "" ]; then
echo "frpc is running ..."
else
echo "start frpc ..."
/home/pi/frp/frpc -c /home/pi/frp/frpc.ini &
#/data/bin/frp/frpc -c /data/bin/frp/frpc.ini &
fi
###################################################################
# check web service
WSIDS=`ps -ef |grep "run.py" |grep -v grep | awk '{print $2}'`
echo $WSIDS
if [ "$WSIDS" != "" ]; then
echo "web server is running ..."
else
echo "start web server ..."
cd /home/pi/thrmp
python3 run.py &
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/adslvcd/thrmp.git
git@gitee.com:adslvcd/thrmp.git
adslvcd
thrmp
THRMP
master

搜索帮助