Home page › Forums › Technical Support, Bugs and Fixes › Password reset
- This topic has 4 replies, 2 voices, and was last updated 1 week, 4 days ago by
Sepehr.
- AuthorPosts
- April 20, 2026 at 10:20 am #8823
hello? How to do password reset?
I tryed everything 🙁
thanks
- April 20, 2026 at 10:23 am #8824
- April 20, 2026 at 12:19 pm #8827
in mikrowizard installation. i forgot password. tryed to set it directly in sql, but with no success.
- May 4, 2026 at 12:57 pm #8839
hello,
no idea how to do?
I must reset everything to factory becouse i lost my password? 🙂
Thanks for answer 🙂
- May 10, 2026 at 1:50 pm #8841
Hi
You can reset the MikroWizard panel admin password directly from the PostgreSQL database by updating the users table manually.
Example for resetting the default mikrowizard admin account password:UPDATE public.users SET password = '$pbkdf2-sha256$29000$yVnr/d9b6917j7G2tlYqRQ$.8fbnLorUGGt6z8SZK9t7Q5WHrRnmKIYL.RW5IkyZLo' WHERE username = 'mikrowizard';
This will reset the password to the default password ( mikrowizard ) configured during installation.
You can run the query using psql or directly from PostgreSQL tools such as pgAdmin.If the user was deleted accidentally, it can also be recreated manually using:
INSERT INTO public.users( id, username, password, first_name, last_name, email, role, adminperms ) VALUES ( '37cc36e0-afec-4545-9219-94655805868b', 'mikrowizard', '$pbkdf2-sha256$29000$yVnr/d9b6917j7G2tlYqRQ$.8fbnLorUGGt6z8SZK9t7Q5WHrRnmKIYL.RW5IkyZLo', 'admin', 'admin', 'admin@localhost', 'admin', '{"device": "full", "device_group": "full", "task": "full", "backup": "full", "snippet": "full", "accounting": "full", "authentication": "full", "users": "full", "permissions": "full", "settings": "full", "system_backup": "full"}' );you can also change manully password field to “$pbkdf2-sha256$29000$yVnr/d9b6917j7G2tlYqRQ$.8fbnLorUGGt6z8SZK9t7Q5WHrRnmKIYL.RW5IkyZLo”
it will set to mikrowizard
- AuthorPosts
- You must be logged in to reply to this topic.