This commit is contained in:
sjk
2026-01-21 14:33:10 +08:00
parent c4711fc84f
commit 8f2f58b51c
21 changed files with 2358 additions and 727 deletions

22
status.sh Normal file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
# AI MIP 服务状态查看
echo "=========================================="
echo " AI MIP 服务状态"
echo "=========================================="
# 查找进程
PID=$(pgrep -f "python main.py")
if [ -z "$PID" ]; then
echo "[INFO] 服务未运行"
else
echo "[INFO] 服务运行中"
echo "[INFO] 进程ID: $PID"
echo ""
echo "进程详情:"
ps aux | grep "python main.py" | grep -v grep
fi
echo ""
echo "=========================================="