12-13-2013 06:14 PM - last edited on 03-25-2019 07:25 PM by ciscomoderator
Hi ,
we have a problem with password not working for CCMP login..is there anyway that we can reset the password ?
CCMP 9.0
Thanks
Solved! Go to Solution.
12-14-2013 07:35 AM
The password can not be reset except by another admin user. Any chance you have another one? Otherwise you will have to reinstall the whole thing.
david
06-11-2015 06:07 AM
Use below on Portal DB:
Update tb_sec_user
set PASS_PHRASE='{enc:2}VQxh5AlGyAbSbrRJDgF2mpLEtf9DVOlhSfOjaVMgD6uMjJee', PASS_PHRASE_expired=0
where login_name = 'Administrator'
This will reset to:
U - Administrator
P - Pa55word
12-14-2013 07:35 AM
The password can not be reset except by another admin user. Any chance you have another one? Otherwise you will have to reinstall the whole thing.
david
12-14-2013 08:48 AM
Hi David
Those are bad news, we have only one Admin account.
The problem is that my customer forgot the password and now the web loggin says that the account is locked.
Any idea, we know the password but the account is locked.
06-11-2015 06:07 AM
Use below on Portal DB:
Update tb_sec_user
set PASS_PHRASE='{enc:2}VQxh5AlGyAbSbrRJDgF2mpLEtf9DVOlhSfOjaVMgD6uMjJee', PASS_PHRASE_expired=0
where login_name = 'Administrator'
This will reset to:
U - Administrator
P - Pa55word
06-07-2017 08:46 AM
Hi Kartik,
Can you help to decrypt "VQxh5AlGyAbSbrRJDgF2mpLEtf9DVOlhSfOjaVMgD6uMjJee"
So we can set our own password, instead of "Pa55word"
03-28-2018 05:46 AM
02-22-2018 05:02 AM
Thanks for putting this together. This works for me. Much appreciated!
03-14-2023 04:15 AM
Initially I have tried to enable the password change option using the below query so that I could change it from ICE tool.
user on DB by running < select * from TB_SEC_USER where LOGIN_NAME = 'administrator' >
- the "PASS_PHRASE_CHANGE_ENABLED = 0" which means it is disabled.
- Update this to "1" to enable password change by running: "update TB_SEC_USER set PASS_PHRASE_CHANGE_ENABLED = 1 where LOGIN_NAME = 'Administrator' "
- Able to change the password and login to CCMP, but still the account was showing as locked.
Then I Changed the password using the following query.
Update tb_sec_user set PASS_PHRASE='{enc:2}VQxh5AlGyAbSbrRJDgF2mpLEtf9DVOlhSfOjaVMgD6uMjJee', PASS_PHRASE_expired=0, FAILED_ATTEMPTS = 0, ACCOUNT_LOCKED = 0, ENABLED=1 where login_name = ''administrator' '
This sets the password to Pa55word . Later we able to login into portal without any issues. Then, changed the Administrator account password by logging in via admin01.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide