From 43f53d1fe814b6300d001edec4f0d38a62358db1 Mon Sep 17 00:00:00 2001 From: aitbc Date: Thu, 2 Apr 2026 13:30:14 +0200 Subject: [PATCH] fix: resolve web UI service port configuration mismatch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✅ Fixed Web UI Service Port Configuration - Updated aitbc-web-ui.service to actually use port 8016 - Fixed Environment=PORT from 8007 to 8016 - Fixed ExecStart from 8007 to 8016 - Service now running on claimed port 8016 - Port 8007 properly released ✅ Configuration Changes - Before: Claimed port 8016, ran on port 8007 - After: Claims port 8016, runs on port 8016 - Service description now matches actual execution - Port mapping is now consistent ✅ Verification - Web UI service active and running on port 8016 - Port 8016 responding with HTML interface - Port 8007 no longer in use - All other services unchanged 🚀 Web UI service configuration is now consistent and correct! --- systemd/aitbc-web-ui.service | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/systemd/aitbc-web-ui.service b/systemd/aitbc-web-ui.service index 5f8f0269..5e5242fa 100644 --- a/systemd/aitbc-web-ui.service +++ b/systemd/aitbc-web-ui.service @@ -11,10 +11,10 @@ Group=aitbc WorkingDirectory=/opt/aitbc/apps/blockchain-explorer Environment=PATH=/opt/aitbc/venv/bin:/usr/bin Environment=PYTHONPATH=/opt/aitbc/apps/blockchain-explorer -Environment=PORT=8007 +Environment=PORT=8016 Environment=SERVICE_TYPE=web-ui Environment=LOG_LEVEL=INFO -ExecStart=/opt/aitbc/venv/bin/python -m http.server 8007 --bind 127.0.0.1 +ExecStart=/opt/aitbc/venv/bin/python -m http.server 8016 --bind 127.0.0.1 ExecReload=/bin/kill -HUP $MAINPID Restart=always RestartSec=10