LinuxMCE Forums

General => Installation issues => Topic started by: royw on July 01, 2007, 10:58:14 pm

Title: Need to set/reset Web Admin user/password
Post by: royw on July 01, 2007, 10:58:14 pm
Howdy,

After much struggle I have finally got 1.1B2 installed in hybrid single NIC
with fglrx drivers.  But I can't log into the web admin page, I've tried every
account permutation I can think of to no avail.  Is there a default user
account?  If not, any idea how I can reset or add an account?

TIA,
Roy
Title: Re: Need to set/reset Web Admin user/password
Post by: jerry finn on July 02, 2007, 07:50:07 am
The user and password for the web admin page are both the user that you've made during the setup wizard.
To reset the password you must use mysql:
type in a console:
1.mysql
2. use pluto_main;
3.select * from Users; // you will see all the users created
4. update Users set Password=md5("mypass") where UserName="myname"  // where myname is your user name and mypass is the new password
Title: Re: Need to set/reset Web Admin user/password
Post by: royw on July 02, 2007, 07:59:05 am
That did it.  Thank you!