Reset the password for the LinuxMCE Admin site

From LinuxMCE
Revision as of 12:02, 16 March 2007 by Juliet (Talk | contribs)

(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search

First, How do I login to a Linux console?. Then type this sequence:
mysql pluto_main
select * FROM Users;

You will see a list of the users in the database. Then type in this:
update Users set Password=md5("mypassword") where UserName="myusername";
quit;

Where mypassword is the new password and myusername is the username.