Need to Change the Expired Password (Oracle DB) :
a) using cmd , connect to the specific Oracle database name :
ie :
sqlplus system/
[email protected]** where IGDB is the database name
b) To alter the password expiry policy for a specific user profile in Oracle first check which profile the user is using:
select profile from DBA_USERS where username = '<username>';
c) If you want to previously check the limit you may use:
select resource_name,limit from dba_profiles where profile='<profile_name>';
d) Then you can change the limit to never expire using:
alter profile <profile_name> limit password_life_time UNLIMITED;
ie : ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
4. To change user password you can use the following command as example :
alter user gvm_datawarehouse identified by system;
alter user WPDS identified by system;
alter user eurekify_sdb identified by system;
*** where "system" will be the password for the above users.
5. Once done , start the IG services and check the eurekify.log file for messages.