Hello,
I believe you executed the wrong command.
echo -n "Enter Password: " && head -1 </dev/stdin | tr -d '\n' | sha256sum | cut -d" " -f1
I execute what you showed above. Then I execute my command for Admin password.
You can see the difference in the screenshot below.
Then copy & paste the hash password in the server.conf file as shown below.
You can always use this command below, and maybe it will work better for you if need be.
Remember if you password has symbols in it make sure you use a quotation mark ’ P@$$WORD!@# ’
echo -n yourpassword | shasum -a 256
Example: Below in the cmd, copy the hash password then paste it in server.config file.
This is also shown in the configuration file. Example below.
This password cannot be changed using the API or via the web interface. If you need to change it,
# modify it in this file.
# Create one by using for example: echo -n yourpassword | shasum -a 256
I hope this helps