由于節點2的redo出問題,導致節點2實例不能mount。SQL> alter database mount;alter database mount*ERROR at line 1:ORA-01618: redo thread 2 is not enabled - cannot mount錯誤說明:[Oracle@rac2 bin]$ oerr ora 0161801618, 00000, "redo thread %s is not enabled - cannot mount"// *Cause: The INIT.ORA parameter "thread" requests a thread that is not// enabled. A thread must be enabled before it can be mounted.// *Action: Shutdown the instance, change the INIT.ORA parameter and startup// mounting a different thread. If the database is open in another// instance then the thread may be enabled.解決方法:在另一個能打開的節點執行SQL> alter database add logfile thread 2 ('+DATA1') size .....;Database altered.SQL> alter database add logfile thread 2 ('+DATA1') size .....;Database altered.SQL> alter database enable thread 2;Database altered.然后打開節點2SQL> alter database mount;Database altered.SQL> alter database open;Database altered.