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
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
That did it. Thank you!