Difference between revisions of "Reset the password for the LinuxMCE Admin site"
From LinuxMCE
Rwilson131 (Talk | contribs) |
(updated link) |
||
Line 1: | Line 1: | ||
− | First, [[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 |
Revision as of 14:54, 25 April 2008
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.