oracle 啟動流程分析

2022-04-08 19:39:59 字數 859 閱讀 3586

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 (啟動)

4 oracle 啟動流程分析

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

ubuntu upstart啟動流程分析

簡介 最近做linux課程設計 核心裁剪和檔案系統定製 選擇了ubuntu10.10作為實驗的平台。不同的linux發行版,使用者態的初始化機制有所差別,ubuntu自從6.10版本之後就使用了較新的upstart機制來進行系統的初始化。upstart是一種基於事件驅動的服務啟動機制,可以使多個系統...

Ubuntu init啟動流程分析

之前在查詢linux系統init流程的相關資料時總是能夠看到inittab的身影,但是在我的ubuntu上是沒有這個檔案的,到後來才知道採用 upstart方式的ubuntu上是沒有inittab這個檔案的。在舊式的system v initialization中,etc inittab可是個相當重...