Difference between revisions of "Reset the password for the LinuxMCE Admin site"

From LinuxMCE
Jump to: navigation, search
(updated link)
m (added the root user to the command to get into MySql and exit to get out of MySql)
Line 1: Line 1:
 
First, [[Logging In|How do I login to a Linux console?]].  Then type this sequence:
 
First, [[Logging In|How do I login to a Linux console?]].  Then type this sequence:
  
     mysql pluto_main
+
     mysql pluto_main -u root
  
 
     select * FROM Users;
 
     select * FROM Users;
Line 9: Line 9:
 
Where mypassword is the new password and myusername is the username.
 
Where mypassword is the new password and myusername is the username.
 
[[Category:Tutorials]]
 
[[Category:Tutorials]]
 +
 +
To exit type in:
 +
 +
exit;

Revision as of 19:44, 1 October 2008

First, How do I login to a Linux console?. Then type this sequence:

   mysql pluto_main -u root
   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.

To exit type in:

exit;