简体   繁体   中英

Oracle 11g User account locking frequently

I am getting the account locked error (ORA-28000: the account is locked) frequently.

When I unlock user account by the command "ALTER USER system account UNLOCK" temporarily it will be ok. After some time the same account lock happen.

this issue started after the changing the password. i am using Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64 bit.

can some one please help. Thanks in advance.

Regards,

Vinay

Use the audit trail to find the culprit:

select returncode, os_username, userhost, terminal, dba_audit_trail.*
from dba_audit_trail
order by timestamp desc;

In the long-run you probably want to avoid using the SYSTEM account as much as possible. Administrators should have their own account for most tasks, and applications should have a less-privileged account.

@Vinay,

You can change PASSWORD_LIFE_TIME parameter by using below command.

alter profile default limit PASSWORD_LIFE_TIME  unlimited;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM