ORA-01033 on one node but DB is started [message #555321] |
Wed, 23 May 2012 03:40 |
|
sei-lks
Messages: 3 Registered: May 2012
|
Junior Member |
|
|
Hello,
we encounter a problem with a 2-nodes RAC with 11gR2 SE :
Database RAC is correctly running but we encounter problems using RAC TNS entry, obtaining the message ORA-01033.
We can access to the DB using a TNS entry using each one of IP addresses but when we use the SCAN address, it fails.
2 weeks ago RAC2 node could connect perfectly with the SCAN address but RAC1 (used as a client) obtained error message almost 30% of tries.
We made a reboot of RAC1 node and now SCAN address works correctly from RAC1 and RAC2 (used as a client) fails systematically with SCAN address but works perfectly with direct access to the database.
On both nodes, SCAN address is perfectly resolved by DNS server, cluster seems correct, listeners seems correct ...
We have opened an SR on Metalink 4 weeks ago but we don't progress.
Any idea ???
|
|
|
|
|
Re: ORA-01033 on one node but DB is started [message #555348 is a reply to message #555340] |
Wed, 23 May 2012 05:54 |
John Watson
Messages: 8964 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
First, check that no listeners are running from a database home. They must all run from the GI home. If that isn't the problem, my guess is that someone has tried to edit some files by hand. That will break the system.
I would re-create the listening environment:
srvctl stop scan_listener
srvctl stop listener
srvctl stop scan
srvctl remove scan_listener
srvctl remove scan
srvctl remove listener
srvctl add scan
srvctl add scan_listener
srvctl add listener
srvctl start scan
srvctl start scan_listener
srvctl start listener
then delete all the tnsnames.ora files and re-create them, too. You may have to delete the listener.ora files, too.
Hope this helps.
|
|
|
|