RAC環境單例項啟動資料庫收到ORA-29702報錯
在RAC環境中,如果你在沒有啟動節點的叢集服務的情況下單例項啟動資料庫,將收到類似如下的報錯:
[oracle@rhel1 u01]$ sql
SQL*Plus: Release 10.2.0.5.0 - Production on Tue Apr 2 15:00:27 2013
Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
Connected to an idle instance.
SQL> startup nomount
ORA-29702: error occurred in Cluster Group Service operation
資料庫例項無法啟動,要求先啟動CGS服務,原因可以大概從下面這篇METALINK文章中知道:
AIX: ORA-29702 When Creating A Single Instance Database In A Clustered Environment [ID 198901.1]
修改時間:2010-10-19
型別:PROBLEM
狀態:PUBLISHED
優先順序:2
這裡用一個簡單的辦法,在RAC的節點上新安裝一個單機版的Oracle Database軟體,用它來單例項啟動資料庫,下面是例子:
資料庫例項無法啟動,要求先啟動CGS服務,原因可以大概從下面這篇METALINK文章中知道:
AIX: ORA-29702 When Creating A Single Instance Database In A Clustered Environment [ID 198901.1]
修改時間:2010-10-19
![](https://i.iter01.com/images/d7affa2dc154ea0d067be44550aa86238daa24a53409866e815476b8fa313de6.gif)
![](https://i.iter01.com/images/d7affa2dc154ea0d067be44550aa86238daa24a53409866e815476b8fa313de6.gif)
![](https://i.iter01.com/images/d7affa2dc154ea0d067be44550aa86238daa24a53409866e815476b8fa313de6.gif)
Problem Description ------------------- When starting up a single instance on aan AIX clustered environment, the following error is reported: Error: ORA-29702 Text: error occurred in Cluster Group Service operation --------------------------------------------------------------------------- Cause: An unexpected error occurred while performing a CGS operation. Action: Verify that the LMON process is still active. Also, check the Oracle LMON trace files for errors. Solution Description -------------------- 1) reinstall Oracle software by de-selecting Oracle Parallel Server option. 2) deinstall Oracle Parallel Server option and relink oracle kernel. It is possible to do it manually by entering the following commands: cd ORACLE_HOME/rdbms/lib make -f ins_rdbms.mk no_parropt or make -f ins_rdbms.mk ops_off make -f ins_rdbms.mk install Explanation ----------- High Availability Group Services (HAGS) is not configured . When creating a single instance database in a clustered environment, if you have a cluster software installed, then OUI detects it and installs Oracle Parallel Server option by default. Additional Search Words ----------------------- ORA-29702, startup, start up, create從上面的文章,大概知道是由於Oracle Database軟體中的Oracle Parallel Server option引起的問題,解決辦法是執行相關命令解除安裝Oracle Parallel Server Option,然後重新編譯Oracle核心。
這裡用一個簡單的辦法,在RAC的節點上新安裝一個單機版的Oracle Database軟體,用它來單例項啟動資料庫,下面是例子:
[root@rhel1 bin]# su - oracle
[oracle@rhel1 ~]$ echo $ORACLE_HOME
/u01/app/oracle/db_2
這是新安裝的單機版Oracle軟體HOME。
[oracle@rhel1 ~]$ sql
SQL*Plus: Release 10.2.0.5.0 - Production on Tue Apr 2 15:39:37 2013
Copyright (c) 1982, 2010, Oracle. All Rights Reserved.
Connected to an idle instance.
SQL> startup nomount
ORACLE instance started.
Total System Global Area 432013312 bytes
Fixed Size 2096824 bytes
Variable Size 125829448 bytes
Database Buffers 297795584 bytes
Redo Buffers 6291456 bytes
啟動例項前,先去掉和RAC相關的引數設定。
SQL> show parameter control
SQL> show parameter control
NAME TYPE
------------------------------------ ----------------------
VALUE
------------------------------
control_file_record_keep_time integer
7
control_files string
/u01/ractest/control01.ctl, /u
01/ractest/control02.ctl, /u01
/ractest/control03.ctl
SQL> alter database mount;
Database altered.
注意對資料檔案和線上Redo檔案位置的調整。
SQL> alter database open;
Database altered.
資料庫正常啟動。
從這個例子可以猜想,如果將引數檔案、控制檔案、日誌檔案和資料檔案拷貝到其他單機版資料庫環境中也能正常的啟動。
--end--
從這個例子可以猜想,如果將引數檔案、控制檔案、日誌檔案和資料檔案拷貝到其他單機版資料庫環境中也能正常的啟動。
--end--
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28258625/viewspace-1974968/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-29702複製RAC Oracle軟體啟動單例項Oracle單例
- [重慶思莊技術分享]-資料庫啟動報:ORA-29702錯誤資料庫
- 將RAC備份集恢復為單例項資料庫單例資料庫
- 3.1.5.4 啟動例項並mount 資料庫資料庫
- 3.1.5.1 關於啟動資料庫例項資料庫
- Oracle 資料庫巡檢指令碼 單例項 RAC 輸出HTML格式Oracle資料庫指令碼單例HTML
- rac恢復到單例項單例
- RAC+DG(asm單例項)ASM單例
- oracle資料庫跨平臺(AIX)從RAC恢復至(linux)下的單例項Oracle資料庫AILinux單例
- 惡意程式造成資料庫啟動報錯資料庫
- Windows下hadoop環境搭建之NameNode啟動報錯WindowsHadoop
- 3.1.5.7 啟動例項、掛載資料庫並啟動完整的媒體恢復資料庫
- 19C 單例項資料庫安裝單例資料庫
- oracle 10203啟動例項報警Oracle
- ORACLE-LINUX環境字元介面單例項安裝OracleLinux字元單例
- Oracle 例項和RAC叢集下資料庫日誌目錄合集Oracle資料庫
- RAC+單例項DG的切換單例
- 3.1.5.3 在不掛載資料庫的情況下啟動例項資料庫
- oracle rac 單個例項不能生成awr報告的問題Oracle
- RAC開啟資料庫歸檔資料庫
- Oracle 11G資料庫單例項安裝Oracle資料庫單例
- rac二節點例項redo故障無法啟動修復
- Oracle RAC 環境 引數檔案的啟動順序Oracle
- ORACLE 18C啟動資料庫報錯ORA-04031Oracle資料庫
- oracle 11g 單例項資料庫的安裝Oracle單例資料庫
- 多個資料庫是否可以共有一個Oracle 11g RAC例項KG資料庫Oracle
- 【ASM】Oracle RAC css啟動報錯"Duplicate voting file found"ASMOracleCSS
- 3.1.5 啟動例項
- mongodb關閉資料庫例項MongoDB資料庫
- oracle資料庫與oracle例項Oracle資料庫
- 資料庫資料恢復—MongoDB資料庫檔案丟失,啟動報錯的資料恢復案例資料庫資料恢復MongoDB
- Oracle 11g RAC到單例項OGG同步Oracle單例
- asm磁碟組依賴導致資料庫自啟動報錯ASM資料庫
- oracle資料庫建立資料庫例項-九五小龐Oracle資料庫
- Oracle資料庫(RAC)巡檢報告Oracle資料庫
- 【時序資料庫InfluxDB】Windows環境下配置InfluxDB+資料視覺化,以及使用 C#進行簡單操作的程式碼例項資料庫UXWindows視覺化C#
- 達夢資料庫單例項轉實時同步叢集資料庫單例
- Javaweb的例項--訂單管理系統--設計資料庫JavaWeb資料庫
- 11.2.0.1.0 RAC啟動使用root使用者啟動crs報錯CRS-4535