From fb15e1568f67a57fc946173921692ad2c70eb909 Mon Sep 17 00:00:00 2001 From: hectorzhao Date: Tue, 7 Jul 2026 15:21:33 +0800 Subject: [PATCH] fix: use url safe database password in bootstrap --- tools/deploy/production-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/deploy/production-bootstrap.sh b/tools/deploy/production-bootstrap.sh index fec657a..35be498 100644 --- a/tools/deploy/production-bootstrap.sh +++ b/tools/deploy/production-bootstrap.sh @@ -10,7 +10,7 @@ GATEWAY_CONTROL_ADDR="${GATEWAY_CONTROL_ADDR:-127.0.0.1:8090}" GATEWAY_CMPP_ADDR="${GATEWAY_CMPP_ADDR:-0.0.0.0:17890}" DB_NAME="${DB_NAME:-cmpp_platform}" DB_USER="${DB_USER:-cmpp}" -DB_PASSWORD="${DB_PASSWORD:-$(openssl rand -base64 24 | tr -d '\n')}" +DB_PASSWORD="${DB_PASSWORD:-$(openssl rand -hex 24 | tr -d '\n')}" MINIO_ROOT_USER="${MINIO_ROOT_USER:-cmpp_minio}" MINIO_ROOT_PASSWORD="${MINIO_ROOT_PASSWORD:-$(openssl rand -base64 32 | tr -d '\n')}" MINIO_BUCKET="${MINIO_BUCKET:-cmpp-platform}"