Page 1 of 1
password reset
Posted: Tue Sep 22, 2009 3:05 am
by Pr0n
the idiot tech at my other store changed the password on my dvr and can't remember it, or made a typo (TWICE) I've still got root access to the machine of course, how do reset the zoneminder admin password?
Posted: Tue Sep 22, 2009 3:21 am
by kingofkya
fire up phpmyadmin
Go to ZM>USERS>IdiotsUserName>Password EDIT: remove hashed password making the password blank
Re: password reset
Posted: Sat Mar 09, 2019 10:07 pm
by snake
As a reference here's the entries for command line mysql/mariadb
Code: Select all
mysql -u root -p
use zm;
show tables;
select * from Users\G
update Users set Password = "" where Password = "OLDHASHEDPASSWORD";
(or if you just have admin user only)
update Users set Password = "";
The idea is, blank the password out, then you can login with just username and no password.
Re: password reset
Posted: Mon Mar 09, 2020 9:17 pm
by vvchumanov
Why don't works whis>...??
i'm change in mysql password for admin, but in web /zm don't enter (write to wrong password!!) (in mariadb it's ok work) whats troubles zm this fall change password after update 1.32 > 1.34
but in zmninja from api it's work great :/