Page 1 of 1

How to reset the password for GUI through mysql

PostPosted: Mon Jul 05, 2010 10:05 am
by Roopesh Bajaj
Hdhdhdjdjdjdjfjfjfjfjfjfjsbsbdhdn

PostPosted: Mon Jul 05, 2010 10:51 am
by mflorell
> mysql asterisk

> update vicidial_users set pass='1234' where user='6666';

PostPosted: Fri Aug 20, 2010 8:14 pm
by williamconley
except if there is NO user 6666 (especially if you changed it)

in which case instead of the "update" command, you can use:

Code: Select all
select user, pass from vicidial_users;


that will give you a list of all users and passwords.

then you can just log in as the administrator OR use the update command above to change the one you want to change.