Stuck at weblogin for hours (official docker compose)

Hi, I created an env file according to the official docs in docker-compose/open-core/.env.example at main · Graylog2/docker-compose · GitHub

I can get the CA installed but after that I can’t get passed the Welcome to Graylog screen.

I used echo -n yourpassword | shasum -a 256 to generate the password and entered it in the .env without “”, generated the secret via pwgen -N 1 -s 96.

I can see in portainer that the env vars have been registered.

When I try to ogin with admin, hashed pw i get invalid credentials, please verify them and retry. I tried admin admin, tried admin hashed admin, tried the initial password they gae me for the setup of the CA, hashed and unhashed.

i’m at a loss what this could be.

I’m running this in adokcer/portainer on proxmox lxc. Other docker container run without an issue

Hey @Konati

Make sure if you copy and paste those hash’s there no white spaces.
If you made a password called admin with this
echo -n yourpassword | shasum -a 256
it should be good.
I used this for password_secret

< /dev/urandom tr -dc A-Z-a-z-0-9 | head -c${1:-96};echo;

And this for root_password_sha2:

echo -n "Enter Password: " && head -1 </dev/stdin | tr -d '\n' | sha256sum | cut -d" " -f1
1 Like