13 lines
268 B
Bash
Executable File
13 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "🛑 停止多智能体任务管理系统..."
|
|
|
|
# 停止 Node.js 服务
|
|
pkill -f "node.*server-postgres.js"
|
|
|
|
# 停止 PostgreSQL 容器
|
|
docker stop agent-task-postgres 2>/dev/null
|
|
docker rm agent-task-postgres 2>/dev/null
|
|
|
|
echo "✅ 服务已停止"
|