From 29a4f6911355f1eb9a5eac2279cbee75983e0736 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Tue, 16 Jun 2026 14:07:19 +0200 Subject: [PATCH] fix openobserve root password policy failure Generate a policy-compliant ZO_ROOT_USER_PASSWORD during install so OpenObserve can start reliably on versions that require lower/upper/digit/special character complexity. Co-authored-by: Cursor --- install/openobserve-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/openobserve-install.sh b/install/openobserve-install.sh index 651fcad52..1057ff629 100644 --- a/install/openobserve-install.sh +++ b/install/openobserve-install.sh @@ -17,7 +17,7 @@ msg_info "Installing OpenObserve" mkdir -p /opt/openobserve/data RELEASE=$(get_latest_github_release "openobserve/openobserve") tar zxf <(curl -fsSL https://downloads.openobserve.ai/releases/openobserve/v$RELEASE/openobserve-v$RELEASE-linux-amd64.tar.gz) -C /opt/openobserve -ROOT_PASS=$(openssl rand -base64 18 | cut -c1-13) +ROOT_PASS="$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c9)Aa1!" cat </opt/openobserve/data/.env ZO_ROOT_USER_EMAIL = "admin@example.com"