由于節(jié)點(diǎn)2的redo出問題,導(dǎo)致節(jié)點(diǎn)2實(shí)例不能mount。SQL> alter database mount;alter database mount*ERROR at line 1:ORA-01618: redo thread 2 is not enabled - cannot mount錯(cuò)誤說明:[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.解決方法:在另一個(gè)能打開的節(jié)點(diǎn)執(zhí)行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.然后打開節(jié)點(diǎn)2SQL> alter database mount;Database altered.SQL> alter database open;Database altered.