Can't run two instances on the same machine [message #54336] |
Tue, 12 November 2002 02:40 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Ivan
Messages: 180 Registered: June 2000
|
Senior Member |
|
|
Hi,
I got an error when trying to start the second database instance on the same machine:
ORA-03113: end-of-file on communication channel
Could anybody help me in this problem?
ORACLE_SID for both instances are different, but ORACLE_HOME for both instances are pointing to the same directory.
Many thanks before!
Best regards,
Ivan
|
|
|
|
|
Re: Can't run two instances on the same machine [message #54344 is a reply to message #54336] |
Tue, 12 November 2002 06:50 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Paul
Messages: 164 Registered: April 1999
|
Senior Member |
|
|
Hello Ivan,
This message is more of a connectivity issue than a startup issue.
First, check if both database is up. If both databases are up, verify your tnsnames entries. If that checks out, make sure the listener is running and is settup to listen for those two databases.
Cheers!
|
|
|
Re: Can't run two instances on the same machine [message #54358 is a reply to message #54344] |
Tue, 12 November 2002 21:48 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Ivan
Messages: 180 Registered: June 2000
|
Senior Member |
|
|
I think since I am trying to run both instances on the same machine, so there shouldn't be any connectivity issue. I can only run one instance at the time, cannot run two instances at the same time (fail when I am trying to startup the second instance).
Please advise. Thanks before!
|
|
|
Re: Can't run two instances on the same machine [message #54360 is a reply to message #54336] |
Wed, 13 November 2002 09:35 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Gilson
Messages: 7 Registered: November 2002
|
Junior Member |
|
|
My opinion is that you don't have enough resources for both instances
Try to start one instance and later the other one.
Is your system runinng on a unix or windows platform?
if you are running on a unix environment review the kernel parameters of your system, this parameters are detailed in the installation guide.
Hope this helps you
Gilson
|
|
|
Re: Can't run two instances on the same machine [message #54375 is a reply to message #54336] |
Wed, 13 November 2002 23:12 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
sharan alva
Messages: 57 Registered: November 1999
|
Member |
|
|
Hi,
You can run multiple instances off of the same oracle home as long as the oracle sid is different.
The ora-3113 is a generic error. This error means that there was a loss of connection. The connection could have lost because a process died etc.
The first thing you need to do is check your alert log which will be in you background dump destination and check to see if there are any internal errors such as an ora-600 ora 7445's.
Next set your oracle sid and oracle home and issue a startup nomount ---> this should read your init<sid>.ora file and start up the instance. If this comes up fine then
alter database mount --> this will read the controlfile and ensure all the datafiles are present
finally alter database open;
Now you can narrow down as to where you are getting the ora-3113 and drill down the issue.
|
|
|