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

From LinuxMCE
Jump to: navigation, search
 
Line 1: Line 1:
<p>First, [[How do I login to a Linux console?]].  Then type this sequence:<br>
+
First, [[How do I login to a Linux console?]].  Then type this sequence:
<i>mysql pluto_main<br>
+
 
select * FROM Users;</i><br>
+
    mysql pluto_main
You will see a list of the users in the database.  Then type in this:<br>
+
 
<i>update Users set Password=md5("mypassword") where UserName="myusername";<br>
+
    select * FROM Users;
quit;</i><br>
+
You will see a list of the users in the database.  Then type in this:
Where mypassword is the new password and myusername is the username.</p>
+
    update Users set Password=md5("mypassword") where UserName="myusername";
 +
    quit;
 +
Where mypassword is the new password and myusername is the username.
 +
[[Category:Tutorials]]

Revision as of 03:08, 6 September 2007

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.