Power Outage caused Management Login problems?
-
I set up a new Fog server (1.0.1) on Ubuntu 12.04 LTS. It is a VM with 6gb of ram and 4 virtual cpus at 2.67ghz. Last week I got everything setup without any major issues, but Friday night there was a power outage and now I can’t log into the Management portal through the web gui. I get to the login screen, enter my username and password, the page then prompts me with the “Estimated FOG sites: 4816” but doesn’t go to anything. If I purposely enter an incorrect password it will kick back an error message “Invalid Login”
I’m very new to Fog so if someone could help me out it would be greatly appreciated.
-
It sounds like the user that was created for this is setup as mobile user.
You may have to change the type of the user to be that of an admin within the actual database.
This can be done with:
[code]mysql -u root [-p’PASSWORDHEREIFYOUSETIT’]
update users set uType=“0” where uName=“USERNAMETRYINGTOSIGNIN”;
[/code] -
Thanks for the reply Tom, I will try this out and see what I get