启动项目的时候提示ORA-28000 the account is locked

启动项目的时候提示ORA-28000 the account is locked,是由于用户被锁定,如下图提示:

查询FAILED_LOGIN_ATTEMPTS参数默认值,这个参数限制了从第一次登录失败开始计算连续登陆失败的次数,

注意不是累计失败的次数。这个值是个限额,并不代表当前已经连续失败的次数。


解决步骤:

1. 在cmd命令窗口输入: sqlplus /nolog


2.继续输入:conn /as sysdba:


3.输入:desc dba_profiles; 如下图:

启动项目的时候提示ORA-28000 the account is locked_第1张图片


4 继续输入: select resource_name,limit from dba_profiles where resource_name='FAILED_LOGIN_ATTEMPTS';

启动项目的时候提示ORA-28000 the account is locked_第2张图片

从上面的查询结果可以看出,如果连续失败10次,用户就会被锁定。


5.继续执行:sqlplus /nolog;


6. conn /as sysdba;


7.alter user username account unlock;如下图:username为具体被锁定的用户名



8.修改参数failed_login_attempts=unlimited,当然这样修改会降低安全性,不建议这么做。alter profile default limit failed_login_attempts unlimited;


启动项目的时候提示ORA-28000 the account is locked_第3张图片


OK!






你可能感兴趣的:(启动项目的时候提示ORA-28000 the account is locked)