forgot password

Support and queries relating to all previous versions of ZoneMinder
Locked
BadFish
Posts: 25
Joined: Wed Apr 19, 2006 6:18 pm

forgot password

Post by BadFish »

I forgot my password to login into my zonemider, how can I reset it?
hackintosh
Posts: 10
Joined: Thu Mar 13, 2008 1:18 am

Re: forgot password

Post by hackintosh »

BadFish wrote:I forgot my password to login into my zonemider, how can I reset it?
in console, login mysql by zmuser , mayeb u use other username

Code: Select all

mysql -u zmuser -p
then use the zm database , i am not sure ur db is zm or not.

Code: Select all

mysql>use zm;
do this change password in ('new_password') , i just modify this will do

Code: Select all

update Users SET Password = password('new_password') where Id  = 1;

Code: Select all

/etc/init.d/mysqld restart
then should be no problem[/quote]
Locked