If you see messages like these while starting the server:
<Apr 3, 2011 2:05:16 AM IST> <Warning> <JDBC> <BEA-001129> <Received exception while creating connection for pool "mds-SpacesDS": ORA-28000: the account is locked>
Than what you need to do to avoid them is :
user=DEV_MDS
Here, the user DEV_MDS is locked.
Connect to database as sys user and run the following command:
ALTER USER DEV_MDS ACCOUNT UNLOCK;
That's it.
<Apr 3, 2011 2:05:16 AM IST> <Warning> <JDBC> <BEA-001129> <Received exception while creating connection for pool "mds-SpacesDS": ORA-28000: the account is locked>
<Apr 3, 2011 2:05:17 AM IST> <Warning> <JDBC> <BEA-001129> <Received exception while creating connection for pool "mds-SpacesDS": ORA-28000: the account is locked>
<Apr 3, 2011 2:05:18 AM IST> <Warning> <JDBC> <BEA-001129> <Received exception while creating connection for pool "mds-SpacesDS": ORA-28000: the account is locked>
Than what you need to do to avoid them is :
- Open Admin Console
- Go to JDBC Data Sources
- Select mds-SpacesDS data source name.
- Go to the Connection Pool tab and from the properties section, fetch user value, example as shown below:
oracle.net.CONNECT_TIMEOUT=10000
abandonedConnectionTimeout=600
sendStreamAsBlob=true
Here, the user DEV_MDS is locked.
Connect to database as sys user and run the following command:
ALTER USER DEV_MDS ACCOUNT UNLOCK;
That's it.