安裝oracle OEM 12c的過程(簡單版)

2021-08-26 16:11:21 字數 1225 閱讀 8324

1,新建乙個oracle資料庫(如有已有,也可不新建),建庫的過程不再介紹

2,建立oem使用者,新建乙個目錄

mkidr -p /oracle/oem_12c

chmod -r oem:oisntall /oracle/oem_12c

3,修改資料庫的引數

su - oracle

sqlplus / as sysdba

alter system set processes=300 scope=spfile;

alter system set session_cached_cursors=200 scope=spfile;

alter system set sga_target=2g scope=spfile;

alter system set shared_pool_size=600m scope=spfile;

alter system set pga_aggregate_target=1g scope=spfile;

alter system set job_queue_processes=20 scope=spfile;

-- may be required if using older versions of db.

--alter system set log_buffer=10485760 scope=spfile;

--alter system set open_cursors=300 scope=spfile;

-- restart the instance.

shutdown immediate

startup

4,如果oracle資料庫已經安裝oem,使用如下命令刪除

emca -deconfig dbcontrol db -repos drop

5,解壓縮zip安裝檔案,設定display環境命令,執行如下命令,啟**形安裝

./runinstaller oracle_hostname=dtydb0

6,根據圖形介面安裝,直到安裝完成。中間根據提示,需要root使用者執行allroot.sh命令

7,通過**登入,輸入sysman的密碼,即可

安裝比較慢,這個過程如果順利,也得乙個小時以上;

詳細的安裝文件請參見oracle官方文件

Oracle 12C 安裝異常

報錯 一 ins 30131 1.以管理員執行setup.exe 2.管理員要有c盤的讀寫許可權 控制面板 所有控制面板項 管理工具 計算機管理 系統工具 共享資料夾 共享 3.regedit hkey local machine system currentcontrolset services ...

linux oracle 12c安裝總結

2.檢視oracle使用者環境變數的字符集 切換到oracle使用者下,如果再切換回root使用者直接exit即可 root testoesdb su oracle 檢視nls lang root testoesdb echo nls lang 如果為空或不是簡體中文,則進行設定 臨時方式 root...

oracle12c安裝總結

解除安裝11g,步驟一搜一大把。刪完注意把快捷選單下的oracle所有檔案都刪除,否則安裝目錄無法刪除,且服務雖然刪除但還掛在服務項裡,顯示找不到路徑。裝好連線上還不夠,12c較11g提供新特性,增加了可插接資料庫的概念,即pdb,允許乙個資料庫容器 cdb 全稱 container databas...