Oracle用户被锁的原因及解决办法

在登陆时被告知test用户被锁

1、用dba角色的用户登陆,进行解锁,先设置具体时间格式,以便查看具体时间

sql> alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss'; 
session altered. 

2、查看具体的被锁时间

sql> select username,lock_date from dba_users where username='test'; 
username lock_date 
test 2009-03-10 08:51:03 

3、解锁

sql> alter user test account unlock; 
user altered. 

4、查看是那个ip造成的test用户被锁

查看$oracle_home/network/admin/log/listener.log日志

10-mar-2009 08:51:03 * (connect_data=(sid=lhoms)(server=dedicated)(cid=(program=oracle)(host=omstestdb)(user=oraoms))) * (address=(protocol=tcp)(host=10.69.1.11)(port=49434)) * establish * lhoms * 0
10-mar-2009 08:51:03 * (connect_data=(sid=lhoms)(server=dedicated)(cid=(program=oracle)(host=omstestdb)(user=oraoms))) * (address=(protocol=tcp)(host=10.69.1.11)(port=49435)) * establish * lhoms * 0

这样可知是上面10.69.1.11的ip尝试多次失败登陆造成的被锁

注:

一般数据库默认是10次尝试失败后锁住用户

1、查看failed_login_attempts的值

select * from dba_profiles 

2、修改为30次

alter profile default limit failed_login_attempts 30; 

3、修改为无限次(为安全起见,不建议使用)

alter profile default limit failed_login_attempts unlimited;  

以上所述是www.887551.com给大家介绍的oracle用户被锁的原因及解决办法,希望对大家有所帮助

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐