Notifications
Clear all

[Solved] How do I fix this build error : ORA-28001: the password has expired

2 Posts
2 Users
3 Reactions
1,323 Views
1
Topic starter

C:views
eosinstall-staginguild.xml:119: java.sql.SQLException: ORA-28001: the password has expired

2 Answers
0

This usually happens if your system user account's password expires. First, find out your system username/password from install-staging/local.properties:

oracle.sys.username=system
oracle.sys.password=password

Next, login as that user using sqlplus from ant_dos.bat terminal

sqlplus / as sysdba
ALTER USER <user> IDENTIFIED BY <new password>;

To avoid this problem in the future execute

ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
alter profile DEFAULT limit PASSWORD_REUSE_TIME unlimited;
2
Topic starter

This usually happens if your system user account's password expires. First, find out your system username/password from install-staging/local.properties:

oracle.sys.username=system
oracle.sys.password=password

Next, login as that user using sqlplus. It will prompt you for a new password. You can just provide the old password again as your new password, it won't require it to be different.