Author Topic: Need to set/reset Web Admin user/password  (Read 2777 times)

royw

  • Guru
  • ****
  • Posts: 261
    • View Profile
Need to set/reset Web Admin user/password
« 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

jerry finn

  • Regular Poster
  • **
  • Posts: 41
    • View Profile
Re: Need to set/reset Web Admin user/password
« Reply #1 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

royw

  • Guru
  • ****
  • Posts: 261
    • View Profile
Re: Need to set/reset Web Admin user/password
« Reply #2 on: July 02, 2007, 07:59:05 am »
That did it.  Thank you!