Jump to content

Reset the password for the LinuxMCE Admin site: Difference between revisions

From LinuxMCE
updated link
Mcefan (talk | contribs)
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Tutorials| Password]]
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;
You will see a list of the users in the database.  Then type in this:
You will see a list of the users in the database.  Then type in this:
    update Users set Password=md5("mypassword") where UserName="myusername";
update Users set Password=md5("mypassword") where UserName="myusername";
    quit;
quit;
Where mypassword is the new password and myusername is the username.
Where mypassword is the new password and myusername is the username.
[[Category:Tutorials]]
 
To exit type in:
 
exit

Latest revision as of 04: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