xiaowei-system/scripts/comfyui-idle-check.sh

7 lines
347 B
Bash

#!/bin/bash
# ComfyUI 闲置检测:端口 8188 无活跃连接时自动停止
if pgrep -f "ComfyUI/venv/bin/python3 main.py" > /dev/null 2>&1; then
if ! ss -tp 2>/dev/null | grep ":8188" | grep -v LISTEN | grep -q .; then
pkill -f "ComfyUI/venv/bin/python3 main.py" && echo "[$(date)] ComfyUI 已停止(闲置)" || true
fi
fi