C:views
eosinstall-staginguild.xml:119: java.sql.SQLException: ORA-28001: the password has expired
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;
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.