ORACLE 11G EM 配置命令及問題處理
11g裝好以後,一直未用EM,昨天晚上和今天晚上終於抽時間把EM啟動起來了,還遇到一點小問題,
1.EM配置的一些命令
建立一個EM資料庫
emca -repos create
重建一個EM資料庫
emca -repos recreate --------這個很主要,一般第一次不成功建立的時候,以後再建立都用這個命令就好了
刪除一個EM資料庫
emca -repos drop
配置資料庫的 Database Control
emca -config dbcontrol db
刪除資料庫的 Database Control配置
emca -deconfig dbcontrol db
重新配置db control的埠,預設埠在1158
emca -reconfig ports
emca -reconfig ports -dbcontrol_http_port 1158
emca -reconfig ports -agent_port 3940
先設定ORACLE_SID環境變數後,啟動EM console服務
emctl start dbconsole
先設定ORACLE_SID環境變數後,停止EM console服務
emctl stop dbconsole
先設定ORACLE_SID環境變數後,檢視EM console服務的狀態
emctl status dbconsole
配置dbconsole的步驟
emca -repos create
emca -config dbcontrol db
emctl start dbconsole
重新配置dbconsole的步驟
emca -repos drop
emca -repos create
emca -config dbcontrol db
2.EM遇到的一些問題
CREATE PUBLIC SYNONYM MGMT_AVAILABILITY FOR MGMT_AVAILABILITY
*
第 1 行出現錯誤:
ORA-00955: 名稱已由現有物件使用
1,刪除早期DBCONSOLE建立的使用者:
drop role MGMT_USER;
drop user MGMT_VIEW cascade;
drop user sysman cascade;
2,刪除早期DBCONSOLE建立的物件:
drop PUBLIC SYNONYM MGMT_TARGET_BLACKOUTS;
drop public synonym SETEMVIEWUSERCONTEXT;
drop public synonym MGMT_AVAILABILITY;
drop public synonym MGMT_CURRENT_AVAILABILITY;
drop public synonym MGMT_SEVERITY_OBJ
3,重新建立DBCONSOLE:
$emca -config dbcontrol db -repos recreate
Environment variable ORACLE_UNQNAME not defined. Please set ORACLE_UNQNAME to da
tabase unique name.
-------- set oracle_unqname=zftang;
嚴重: 監聽程式未啟動或資料庫服務未註冊到該監聽程式。啟動該監聽程式並註冊資料庫服務, 然後重新
執行 EM Configuration Assistant。
-------- set ORACLE_HOSTNAME=localhost
3,成功建立EM