4 oracle 啟動流程分析

2021-06-21 13:51:06 字數 859 閱讀 4099

1.with grant option 表示得到許可權的使用者可以把許可權繼續分派

with admin option 把系統許可權繼續分配

2.使用profile管理使用者口令

create profile 檔名 limit failed_login_attempts 嘗試次數 password_lock_time 鎖定天數;

alter user 使用者名稱 profile 檔名;

3.解鎖使用者

alter user 使用者名稱 account unlock;

4.終止口令

create profile 檔名 limit password_life_time 修改週期/天 password_grace_time 寬限期間/天;

alter user 使用者名稱 profile 檔名;

5.口令歷史

create profile 檔名 password_history limit password_life_time 使用天數 password_grace_time 寬限天數 password_reuse_time 1

alter user 使用者名稱 profile 檔名;

6.刪除profile

drop profile 檔名

7.oracle啟動流程

1)windows環境

a)lsnrctl start (啟動監聽)

b)oradim -startup -sid 啟動資料庫例項

2)linux環境

a)lsnctl start (啟動監聽)

b)sqlplus sys/change_on_install as sysdba (以dba身份登入)

c)startup  (啟動)

oracle 啟動流程分析

1.with grant option 表示得到許可權的使用者可以把許可權繼續分派 with admin option 把系統許可權繼續分配 2.使用profile管理使用者口令 create profile 檔名 limit failed login attempts 嘗試次數 password ...

linux啟動流程分析 4

author taoyuetao email tao yuetao yahoo.com.cn blog 2007 02 08 的地方,望高手指點,自己也會不斷進行修改 當進入linux核心後,arch arm kernel head armv.s是核心最先執行的乙個檔案,包括從核心入口entry s...

4 oracle連線工具和配置監聽

一 sql plus sql plus 是oracle最常用的命令列工具,啟動sqlplus工具的方法有兩種 1 是在安裝好的oracle開始程式的路徑下執行程式 點選執行彈出此介面 2 是在cmd中輸入sqlplus 進入 執行cmd輸入sqlplus 輸入指令後點選回車,轉成sqlplus並要求...