Hello.
I installed the docker variation (:latest tag) under a Linux host, and upon install completion, I cannot login.
I have tried:
- Using the default “admin” : “Passw0rd123” (aka leave blank ADMIN_USERNAME and ADMIN_PASSWORD)
- Using custom credentials, without special characters in either (same env vars)
- Manually executing /Octopus/Octopus.Server admin --username user --password pass
(as a post-installation attempt to change pass after the fact. Same problem)
I can confirm the user exists in the [Users] sql db table. And it has a hash specified in json props of JSON column.
The login fails on direct access on 8080 port of non-ssl http login page.
The backend error log only shows ONE entry:
POST http://127.0.0.1:8080/api/users/login 0HM7KF5TNPKH5:00000001 by <anonymous>
That’s it. One log entry per sign in attempt.
The front end reports visually: “Invalid Username or Password”, and Chrome console reports t he following 400 code response:
{
“ErrorMessage”: “There was a problem with your request.”,
“Errors”: [
“Invalid username or password.”
],
“ParsedHelpLinks”: []
}
Help would be appreciated. It is currently completely unusable.