1 Star 0 Fork 0

qiaodian/soar-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
manage.sh 619 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiyangxixian 提交于 2019-07-01 12:57 . fix manage.sh
#!/bin/bash
dir=`dirname $0`
pybin='python'
function start(){
if [[ "$(checkPid)" ]]; then
echo 'soar web is running'
else
chmod -R a+x $dir/soar
chmod -R a+w $dir/tmp
chmod -R a+w $dir/data
chmod -R a+w $dir/static/data
nohup $pybin $dir/soar-web.py > /dev/null 2>&1 &
echo 'soar web start ....... ok'
fi
}
function stop(){
pid=$(checkPid)
if [[ "$pid" ]]; then
kill -9 $pid
fi
echo 'soar web stop ....... ok'
}
function restart() {
stop
start
}
function checkPid(){
ps ax | grep soar-web.py | grep -v grep | awk '{print $1}'
}
if [[ "$1" ]]; then
$1
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/qiaodian/soar-web.git
git@gitee.com:qiaodian/soar-web.git
qiaodian
soar-web
soar-web
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385