diff --git a/setup.sh b/setup.sh index 10d34d24..447cd1a8 100755 --- a/setup.sh +++ b/setup.sh @@ -228,7 +228,6 @@ echo "" echo "🔧 Core Services (8000-8009):" check_service "Coordinator API" "http://localhost:8000/health" check_service "Exchange API" "http://localhost:8001/api/health" -check_service "Multimodal Service" "http://localhost:8002/health" check_service "Wallet API" "http://localhost:8003/health" check_service "Modality Optimization" "http://localhost:8004/health" check_service "Explorer" "http://localhost:8005/health" @@ -246,6 +245,7 @@ check_service "Web UI" "http://localhost:8016/health" # Other Services (8020-8029) echo "" echo "📊 Other Services (8020-8029):" +check_service "Multimodal Service" "http://localhost:8020/health" check_service "OpenClaw Service" "http://localhost:8007/health" check_service "Marketplace API" "http://localhost:8021/health" diff --git a/systemd/aitbc-multimodal.service b/systemd/aitbc-multimodal.service index 64e2f8f6..4ef10ff8 100644 --- a/systemd/aitbc-multimodal.service +++ b/systemd/aitbc-multimodal.service @@ -9,7 +9,7 @@ User=debian Group=debian WorkingDirectory=/home/oib/aitbc/apps/coordinator-api Environment=PATH=/usr/bin -ExecStart=/usr/bin/python3 -m uvicorn src.app.services.multimodal_app:app --host 127.0.0.1 --port 8002 +ExecStart=/usr/bin/python3 -m uvicorn src.app.services.multimodal_app:app --host 127.0.0.1 --port 8020 ExecReload=/bin/kill -HUP $MAINPID KillMode=mixed TimeoutStopSec=5