美文网首页运维那些事
ORA-28000: the account is locked

ORA-28000: the account is locked

作者: Bruce基 | 来源:发表于2020-04-19 19:38 被阅读0次

    Oracle被锁定

    ORA-28000: the account is locked 
    

    解除锁定:

    alter user 你的账户名 account unlock;
    

    查看登陆次数:

    SELECT  *  FROM dba_profiles s WHERE s.profile=’DEFAULT’ AND resource_name=’PASSWORD_LIFE_TIME’;
    

    注:dba_profiles 是系统配置集合视图(VIEW)文件。
    从上图中可以看出,Oracle 默认登陆失败的次数为10次,如果连续登陆失败次数超过10次,用户将被锁定。

    设置次数不限:

     alter profile default limit failed_login_attempts unlimited;
    

    也可以设置次数:

    alter profile default limit failed_login_attempts 30;
    

    注意:每次执行需要提交。

    commit;
    

    说明

    本文只做学习参考,如有任何不准确的地方欢迎指正。

    我的邮箱:

    • lulongji2011@163.com

    相关文章

      网友评论

        本文标题:ORA-28000: the account is locked

        本文链接:https://www.haomeiwen.com/subject/jytnvhtx.html