fix: use Redis port 6380 to avoid conflict with existing ybs-redis on 6379

Former-commit-id: e8adb090f9ed0d0ac1b4845f8271428bc4ddb386
This commit is contained in:
反编译工作区
2026-05-01 22:55:24 +08:00
parent 2c2d30038e
commit ef9f38587c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ log_ok "MySQL: $MYSQL_HOST:$MYSQL_PORT OK"
# 端口冲突
CONFLICT_PORTS=""
for port in 8500 6379 9092 2181 8090 18080 18081 16106 17011 3721; do
for port in 8500 6380 9092 2181 8090 18080 18081 16106 17011 3721; do
if ss -tlnp 2>/dev/null | grep -q ":$port "; then
CONFLICT_PORTS="$CONFLICT_PORTS $port"
fi