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.
17 lines
362 B
17 lines
362 B
#!/bin/bash
|
|
|
|
# 激活conda环境
|
|
source /root/miniconda3/etc/profile.d/conda.sh # 或者指定你的conda路径
|
|
conda activate dfa
|
|
|
|
# 进入工作目录
|
|
cd ./
|
|
|
|
# 查看端口8088的进程,并杀掉它
|
|
pid=$(lsof -t -i:8088)
|
|
if [ -n "$pid" ]; then
|
|
kill -9 $pid
|
|
fi
|
|
|
|
# 启动程序,并使其在后台运行
|
|
nohup python3 app.py --env=prod > /dev/null 2>&1 &
|
|
|