Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Re: RAC cluster down ...

Re: Re: RAC cluster down ...

From: laura pena <lizzpenaorclgrp_at_yahoo.com>
Date: Tue, 13 Nov 2007 08:45:07 -0800 (PST)
Message-ID: <533383.75186.qm@web58204.mail.re3.yahoo.com>


Thanks, that worked. Once I got it up last night I (you guys) went to sleep.

Thanks again,
Lizz

Alex Gorbachev <ag_at_oracloid.com> wrote: Laura,

Yes, you definitely need to know some more basics to be able to analyze and troubleshoot.

For now you need to know the following to get you our of crisis situation.

Your database name is powersv2. Database is the set of files on disk - datafiles, controlfiles and etc.
Every node has its own instance. Node oracle1 has instance powersv21 and node oracle2 has instance powersv22. Instance is the set of processes in memory that works with the database. In your RAC, you have two instances (one for each node) that are working with the same database (they shared the same database if you wish).

From what your showed me, it seems that instances are stuck in CRS in UNKNOWN state.
You should do the following to clear it up: crs_stop -f ora.powersv2.powersv21.inst
crs_stop -f ora.powersv2.powersv22.inst

Note that if your instances are already running - that will stop them. Btw, don't use crs_stop/start unless you are absolutely sure what you do. In CRS, you should use srvctl instead. So after you cleaned up as above, try to start them with srvctl:
srvctl start instance -d powersv2 -i powersv21 srvctl start instance -d powersv2 -i powersv22

*If that doesn't work* - start them manually. This will bring you back in service. You already started instance powersv21 according to the output you provided.

So what you need to do is to start those instances on every node: On oracle1 node, set your ORACLE_SID=powersv21 and start it using sqlplus. On oracle2 node, set your ORACLE_SID=powersv22 and start it using sqlplus.

After that you would need to investigate what's wrong with your CRS configuration.

By the way, for your other RAC database, intergen, you can do the same. By default, your instances will be the same as database name plus numeric index. I.e.:
oracle1 - intergen1
oracle2 - intergen2

Good luck!

Alex

--

Alex Gorbachev, Oracle DBA Brewer, The Pythian Group http://www.pythian.com/blogs/author/alex http://www.oracloid.com BAAG party - www.BattleAgainstAnyGuess.com
--

http://www.freelists.org/webpage/oracle-l        



Never miss a thing. Make Yahoo your homepage.
--

http://www.freelists.org/webpage/oracle-l Received on Tue Nov 13 2007 - 10:45:07 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US