End- of-File Communication error [message #54396] |
Thu, 14 November 2002 20:05 |
G.Anand
Messages: 1 Registered: November 2002
|
Junior Member |
|
|
Dear Friend's,
I am getting a problem while creating database in Solaris manually.when start creating like this
svrmgrl> startup nomount pfile = "/ora8/m01/app/oracle/product/8.1.7/admin/planet/pfile/initplanet.ora
then i am getting error like
ORA-03113 End- of - File Communication error
i am unable to go next statement for creating Database
Could you please email me soltion for this problem .
|
|
|
Re: End- of-File Communication error [message #54400 is a reply to message #54396] |
Fri, 15 November 2002 03:13 |
gp
Messages: 46 Registered: September 2002
|
Member |
|
|
i guess this is very common problem u can find may post with similar problem on this forum ...
alll u just need to do is just logout of svrmgrl and then login again for start up...
also check that parameten file is correct(permissions etc) and path specfied is ok
|
|
|
add-on [message #54406 is a reply to message #54396] |
Fri, 15 November 2002 04:53 |
B
Messages: 327 Registered: August 1999
|
Senior Member |
|
|
also on SUN should add in init.ora ( ORA 8i )
_USE_ISM = FALSE
|
|
|
Re: End- of-File Communication error [message #54416 is a reply to message #54396] |
Fri, 15 November 2002 13:21 |
Trifon Anguelov
Messages: 514 Registered: June 2002
|
Senior Member |
|
|
Most probably you didn't setup the shared memory and semaphores parameter in your kernel and Oracle couldn't allocated enough of them. Edit your /etx/system file and add those entries:
set shmsys:shminfo_shmmax=4294967295
set shmsys:shminfo_shmmin=1
set shmsys:shminfo_shmmni=900
set shmsys:shminfo_shmseg=900
set semsys:seminfo_semmns=32767
set semsys:seminfo_semmni=900
set semsys:seminfo_semmsl=1200
set semsys:seminfo_semopm=900
set semsys:seminfo_semvmx=32767
The exact values you have to adjust for your system (the Installation Guide has the guidelines). Then reboot your machine.
Hope that helps,
clio_usa
OCP - DBA
Visit our Web site
|
|
|