This content has been marked as final.
Show 3 replies
-
1. Re: Admin Console Forgot Password
Jim Lester Sep 20, 2010 12:25 PM (in response to roborino3)Section 16.3.2 refers to the OperatorClient and not to the Admin Console. To reset admin console you need to change the shared secret to the SHA1 hash of a phrase you know.
Once you have the hex encoded hash, you can change the value in the database using the following query:
UPDATE distributor SET sharedsecret = x'your hex value here' WHERE distid = x'00000000000000000000000000000001';
-
2. Re: Admin Console Forgot Password
vjppi_kumar May 8, 2013 9:06 AM (in response to Jim Lester)Hi Jim,
I changed SHA1 value with following:
hash("sha1", "password", false);
but still it is not working.
Please suggest
-
3. Re: Admin Console Forgot Password
vjppi_kumar May 8, 2013 11:01 AM (in response to vjppi_kumar)It is working now. I am sorry, I tried to change it with MySQL Client and it was not working that way. I changed with mysql query and it did the job.
Thanks a lot Jim!


