Not possible at the moment. delete the sqlite file on your host then it should show you the setup again
Self-Hosted Main
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
For Example
- Service: Dropbox - Alternative: Nextcloud
- Service: Google Reader - Alternative: Tiny Tiny RSS
- Service: Blogger - Alternative: WordPress
We welcome posts that include suggestions for good self-hosted alternatives to popular online services, how they are better, or how they give back control of your data. Also include hints and tips for less technical readers.
Useful Lists
- Awesome-Selfhosted List of Software
- Awesome-Sysadmin List of Software
Hi, maintainer of Homarr here. As others have pointed out, you currently must delete the sqlite database to reset it. This is not recommended to do in future releases as we will build a script to reset it.
Does OP have any chance of finding a password hash in the container and cracking that?
I faced this issue just now, if you are willing to get your hands dirty, do can do this:
- Create a new user with the new password from the UI
- Backup the SQLite database, just copying it should be enough.
- Open the database with sqlite, I used the cli:
sqlite3 db.sqlite
-
Get the password hash and salt from the new user (assuming it to be
test
) and note these values, they will look like random charactersselect password from user where name='test'; select salt from user where name='test';
-
Set the above values to the original user (assuming it to be
admin
)update user set password='', salt='' where name='admin';
I did all the above just to avoid setting up everything again. You be the judge if its worth the trouble. I am new to homarr so I am not sure if there is an easier hack for this, without setting up everything again.
You can do this from an sqlite UI editor as well I guess.