graylog: use random password

This commit is contained in:
tschettervictor
2025-11-21 08:34:40 -07:00
committed by GitHub
parent 0a5e8d6953
commit ead67c854e

View File

@@ -2,7 +2,7 @@
# Install Graylog
APP_NAME="Graylog"
ADMIN_PASSWORD="graylog"
ADMIN_PASSWORD="$(openssl rand -base64 12)"
ADMIN_PASSWORD_HASH="$(echo -n ${ADMIN_PASSWORD} | sha256)"
MONGODB_VERSION="60"
PASSWORD_SECRET="$(openssl rand -base64 128 | tr -dc 'A-Za-z0-9' | head -c 96)"