diff --git a/apps/blockchain-explorer/main.py b/apps/blockchain-explorer/main.py index 0a84fc1c..40675a69 100755 --- a/apps/blockchain-explorer/main.py +++ b/apps/blockchain-explorer/main.py @@ -1285,4 +1285,4 @@ async def health(): } if __name__ == "__main__": - uvicorn.run(app, host="0.0.0.0", port=8007) + uvicorn.run(app, host="0.0.0.0", port=8022) diff --git a/setup.sh b/setup.sh index e2cff5d4..e4e373bf 100755 --- a/setup.sh +++ b/setup.sh @@ -230,8 +230,6 @@ check_service "Coordinator API" "http://localhost:8000/health" check_service "Exchange API" "http://localhost:8001/api/health" check_service "Marketplace API" "http://localhost:8002/health" check_service "Wallet API" "http://localhost:8003/health" -check_service "Multimodal Service" "http://localhost:8005/health" -check_service "Explorer" "http://localhost:8007/health" # Check blockchain node and RPC echo "" @@ -262,6 +260,8 @@ 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 "Explorer" "http://localhost:8022/health" check_service "Modality Optimization" "http://localhost:8023/health" # Check process status diff --git a/systemd/aitbc-multimodal.service b/systemd/aitbc-multimodal.service index c728a7e6..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 8005 +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