From 0b802a61ecb33ee97e486b2e23c0b927d2765485 Mon Sep 17 00:00:00 2001 From: zwssunny Date: Mon, 27 Feb 2023 22:24:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=9C=8D=E5=8A=A1=E5=99=A8?= =?UTF-8?q?=E6=89=A7=E8=A1=8C=E8=84=9A=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + shutdown.sh | 16 ++++++++++++++++ start.sh | 15 +++++++++++++++ tout.sh | 7 +++++++ 4 files changed, 39 insertions(+) create mode 100755 shutdown.sh create mode 100755 start.sh create mode 100755 tout.sh diff --git a/.gitignore b/.gitignore index a9f6f68..c587458 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ venv* *.pyc config.json QR.png +nohub.out \ No newline at end of file diff --git a/shutdown.sh b/shutdown.sh new file mode 100755 index 0000000..bf3a476 --- /dev/null +++ b/shutdown.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +#关闭服务 + +export BASE_DIR=`pwd` +pid=`ps ax | grep -i app.py | grep "${BASE_DIR}" | grep python3 | grep -v grep | awk '{print $1}'` +if [ -z "$pid" ] ; then + echo "No chatgpt-on-wechat running." + exit -1; +fi + +echo "The chatgpt-on-wechat(${pid}) is running..." + +kill ${pid} + +echo "Send shutdown request to chatgpt-on-wechat(${pid}) OK" diff --git a/start.sh b/start.sh new file mode 100755 index 0000000..8a0dc15 --- /dev/null +++ b/start.sh @@ -0,0 +1,15 @@ +#!/bin/bash +#后台运行Chat_on_webchat执行脚本 + +export BASE_DIR=`pwd` +echo $BASE_DIR + +# check the nohup.out log output file +if [ ! -f "${BASE_DIR}/nohup.out" ]; then + touch "${BASE_DIR}/nohup.out" +echo "create file ${BASE_DIR}/nohup.out" +fi + +nohup python3 "${BASE_DIR}/app.py" & tail -f "${BASE_DIR}/nohup.out" + +echo "Chat_on_webchat is starting,you can check the ${BASE_DIR}/nohup.out" diff --git a/tout.sh b/tout.sh new file mode 100755 index 0000000..296d963 --- /dev/null +++ b/tout.sh @@ -0,0 +1,7 @@ +#!/bin/bash +#打开日志 + +export BASE_DIR=`pwd` +echo $BASE_DIR + +tail -f "${BASE_DIR}/nohup.out"