mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 19:08:59 -05:00
[GH-ISSUE #14601] feat: Admin creation from password hash #32842
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 @ArtemijRodionov on GitHub (Jun 2, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/14601
Check Existing Issues
Problem Description
/api/v1/auths/signupDesired Solution you'd like
I want to be able to create an admin user using password hash. It would be nice to have CLI for that or at least config variable
Alternatives Considered
No response
Additional Context
No response
@tjbck commented on GitHub (Jun 2, 2025):
Passwords are automatically hashed.
@ArtemijRodionov commented on GitHub (Jun 2, 2025):
Are there any solution for such scenario?
Will it be good enough If I create a cli that call something like that?
53764fe648/backend/open_webui/routers/auths.py (L502)@ArtemijRodionov commented on GitHub (Jun 2, 2025):
Hello @tjbck, at the moment, the backend expects a raw (plain-text) password, but I only have a bcrypt password hash available