加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
start.sh 304 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiech 提交于 2019-01-22 15:56 . 启动脚本优化
LANG="zh_CN.UTF-8"
pid=`ps ax | grep main | grep python | grep -v grep | head -1 | awk '{print $1}'`
if [ "$pid" != "" ]; then
echo $pid
kill $pid
fi
echo '服务停止成功,开始重启服务...'
rm -rf nohup.out
touch nohup.out
nohup python3 main.py $1 -port=80 > nohup.out 2>&1 &
tail -f nohup.out
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化