password reset
password reset
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?
Re: password reset
As a reference here's the entries for command line mysql/mariadb
The idea is, blank the password out, then you can login with just username and no password.
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 = "";
-
- Posts: 4
- Joined: Sun Jul 15, 2018 8:49 pm
Re: password reset
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 :/
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 :/