mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 03:18:23 -05:00
[GH-ISSUE #13816] issue: Cannot create admin account if first attempt failed because of password length #17043
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @lumiaspic on GitHub (May 12, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/13816
Check Existing Issues
Installation Method
Other
Open WebUI Version
v0.6.9
Ollama Version (if applicable)
No response
Operating System
macOS Sequoia 15.4.1 (24E263)
Browser (if applicable)
Firefox 138.0.1
Confirmation
README.md.Expected Behavior
My admin account creation is accepted.
Actual Behavior
My admin account creation is denied :
Steps to Reproduce
Can reproduce using
uvandpip-install(tried both). I'll illustrate foruvonly here:uv:curl -LsSf https://astral.sh/uv/install.sh | shDATA_DIR=~/.open-webui uvx --python 3.11 open-webui@latest servehttp://localhost:8080/Logs & Screenshots
Additional Information
Seems like the
ENABLE_SIGNUPvariable gets written before the account is really created. Hence, I'm forced to either rewrite theENABLE_SIGNUPto default or reinstalling from scratch (I've done this).@tjbck commented on GitHub (May 12, 2025):
Good catch, fixed with
a904f874eein dev!