Oracle Database
Microsoft SQL Server
On entering the administrative credentials, the user is denied access
Access Denied when trying to log in to KMS administration panel
In the ClearTrust agent log and the authorization server debug log, the password is mentioned as expired.
In the normal case, the user should be able to reset the password in ClearTrust's Entitlements Manager (admingui). However, if that option is not available, the password expiration dates can be manually adjusted directly in the datastore.
In Microsoft SQL Server, the password record is in the table CT.PASSWORD; in Oracle, the password record is in CT_OWNER.PASSWORD. In both cases, the relevant field is EXPIRATION_DATE. This can be manually adjusted forward to allow the user to log in. Note that if the password has been expired because the lifetime (as calculated by the current date less the date in the PASSWORD_CREATION_DATE field) is greater than the password policy's lifetime, you must also adjust PASSWORD_CREATION_DATE forward to avoid the password being expired for policy reasons, rather than explicitly.
Here's an example on how to update password expiry dates in Oracle db:
Once connected to the db via sqlplus using CT_OWNER credentials, use the following SQL statements to update dates:
1. List all records in PASSWORD table including account names from USERS table:
SELECT USERS.NAME, PASSWORD.USER_ID, PASSWORD.PASSWORD_CREATION_DATE, PASSWORD.EXPIRATION_DATE FROM USERS, PASSWORD WHERE PASSWORD.USER_ID = USERS.ID;
2. Update password creation date and password expiry date for, say, a user with user_id = 4:
UPDATE PASSWORD SET PASSWORD_CREATION_DATE = '01-May-2008', EXPIRATION_DATE = '29-May-2008' WHERE USER_ID = 4;
3. Commit the changes to db:
COMMIT;
Related Articles
Citrix Netscaler failing to properly handle New PIN Mode and On-Demand Authentication (ODA) when using RADIUS with RSA Aut… 689Number of Views 'Could not power on VM : No space left on device' when trying to start the Virtual appliance - AM 131Number of Views Errors 'Server Timeout' and 'User TIME's access is denied' with RSA Access Manager and RSA SecurID 180Number of Views VMware Quick Setup fails at Configuring Appliance with the error Unable to find SMBIOS for RSA Authentication Manager 8.4 290Number of Views Authentication failed error when attempting to log in to the RSA SecurID Access Cloud Administration Console 78Number of Views
Trending Articles
Troubleshooting RSA SecurID Access Identity Router to RSA Authentication Manager test connection failures RSA SecurID Software Token 5.0.2 Downloads for Microsoft Windows RSA Authentication Manager 8.9 Release Notes (January 2026) Quick Setup Guide - Passwordless Authentication in Windows MFA Agent for Active Directory RSA Authentication Manager 8.8 Setup and Configuration Guide