How to log back in if I lost my Key Manager admin password?
2 years ago
Originally Published: 2008-12-09
Article Number
000052226
Applies To
RSA Key Manager Appliance
RSA Access Manager
Issue
How to log back in if I lost my Key Manager admin password?
Invalid password
Unable to log into Key Manager admin console
kmsadmin password was lost
Reset admin or kmsadmin password
Resolution
You can run the following SQL statements against the database (Oracle) to update the password for kmsadmin (or admin) in Access Manager.

Log in to the RKM Appliance box as root using SSH or at the console, then type:

su - oracle
sqlplus / as sysdba
<provide the Oracle sys password>
   SQL> update ct_owner.password set password = 'Password1' where user_id = (select id from ct_owner.users where name='kmsadmin');
   SQL> commit;
   SQL> exit;

Once the password is changed, log back in Access Manager Admin GUI, and reset the password to re-hash it.

Note that the update command would be like the following if 'admin' password needed to be reset:
   SQL> update ct_owner.password set password = 'Password1' where user_id = (select id from ct_owner.users where name='admin');