賬戶鎖定問題
例子:指定useradmin 最多嘗試三次登入,鎖定時間為2天。
首先建立profile檔案,規則名為lock_account,,類似建立乙個規則
create profile lock_account limit failed_login_attempts 3 password_lock_time 2;
alter user useradmin profile lock_account;
給賬戶useradmin解鎖
system或sys登入
alter user useradmin account unlock;
給useradmin建立乙個profile檔案要求使用者每隔10天要修改自家的登入密碼,寬限期為2天。
create profile myprofile limit password_life_time 10 password_grace_time 2;
alter user useradmin profile myprofile;
例子:
使用者在修改密碼時,不能使用以前使用的密碼,可以使用口令歷史,這樣oracle就會將口令修改的資訊存放到資料字典中,這樣當使用者修改密碼時,oracle就會對新舊密碼進行比較,當發現新舊密碼一樣時,就提示使用者重新輸入密碼
create profile password_history limit password_life_time 10 password_grace_time 2 password_reuse_time 10
#指定口令可重用時間即10天後就可以重用
刪除profile
drop profile password_history cascade
oracle 賬戶鎖定解除
今天進使用 oracle 發現系統中,system賬戶登入裡提示賬戶被鎖定 後來查了查資料,問題解決。以為為從cmd裡面複製的命令列 microsoft windows 版本 5.2.3790 c documents and settings administrator sqlplus nolog ...
Oracle設定賬戶鎖定閾值
參考步驟 1 oracle使用者登入系統。2 sqlplus as sysdba登陸資料庫.3 檢視當前開啟使用者及其profile sql select username,profile from dba users where account status open 4 將所有開啟使用者的pro...
oracle修改密碼及賬戶鎖定
在oracle修改密碼的時候,一種是用dba賬戶來修改使用者的密碼,一種是使用者自己修改自己的密碼 sql alter user kel identified by kel 解鎖命令 sql conn as sysdba connected.sql alter user kel account un...