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

From LinuxMCE
Jump to: navigation, search
 
 
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<p>First, [[How do I login to a Linux console?]].  Then type this sequence:<br>
+
[[Category:Tutorials| Password]]
<i>mysql pluto_main<br>
+
 
select * FROM Users;</i><br>
+
First, [[Logging In|How do I login to a Linux console?]].  Then type this sequence:
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>
+
mysql pluto_main -u root
quit;</i><br>
+
select * FROM Users;
Where mypassword is the new password and myusername is the username.</p>
+
 
 +
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

Latest revision as of 06:55, 9 October 2012


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