Oracle資料庫筆記2(限制使用者惡意登入)

2021-09-11 17:18:55 字數 650 閱讀 8415

使用者profile口令管理:

//進入system使用者,進行配置,自定義profile名

create profile profile(配置名)  limit failed_login_attempts 3 //輸入三次

password_lock_time 2;//鎖定時間兩天

//對scot設定profile配置,並進行測試

alter user scott accout unlock;

//輸入密碼測試是否成功

案例:對乙個賬號的密碼進行限制,最多使用十天,寬限期為2天,到時密碼修改。

create profile profile(配置名) limit password_life_time 2

password_grace_time 2;

alter user scott profile profile( 配置名);

//修改自己的系統時間進行測試

刪除配置檔案:

drop profile profile(配置名)    【cscade】;

Oracle資料庫 筆記2

oracle 建立檢視時 提示使用者許可權不足 問題 使用scott 登入oracle 以後,建立檢視,提示 許可權不夠 怎麼解決?回答 這是因為scott 這個帳戶目前沒有建立檢視的許可權。解決方法為 首先使用system 帳戶進行登入,其中 tigertiger 為安裝 oracle 時所指定的...

ORACLE物理資料庫限制

專案 限制型別 極限值資料庫塊大小 最低要求 2048位元組 必須是作業系統物理塊大小的倍數 資料庫塊大小 最大取決於作業系統 絕對不超過32kb 資料庫塊 段的初始範圍中的最小值 2塊資料庫塊 每個資料檔案的最大值 取決於平台 通常為2 22 1塊 控制檔案 控制檔案數 1最少2強烈建議 在單獨的...

oracle資料庫限制IP訪問

通過修改oracle資料庫的ora配置檔案可以實現只有指定ip才能訪問 開啟oracle安裝路徑下 dbhome 1 network admin sqlnet.ora檔案 增加以下 1.tcp.validnode checking yes 開啟ip限制功能 2.tcp.invited nodes 1...