Frequently Asked Question

Password is expired
Last Updated 8 years ago

Some instances of Oracle Database have a default of 180 days for password expiration.
In this case the pubuser, privuser, etc can be expired and EPPM P6, Team Member, Web Services, etc will not run anymore.

The solution is the following.

Login to Oracle database
sqlplus sys as sysdba

Change the default to no expiration
alter profile default limit password_life_time unlimited;

Find which usernames are in the database
select username from dba_users;

Set the password again
alter user pdiuser identified by password;

Unlock the user account
alter user pdiuser account unlock;

Quit and restart EPPM.
View the logfiles / startup process to see if the applications are running correct.

Please Wait!

Please wait... it will take a second!