Skip to Main Content

Oracle Database Express Edition (XE)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Database Configuration failed. - Fedora 15-64bit on ORACLE VM...

Adam MFeb 20 2012 — edited Feb 21 2012
I'm trying to get ORACLE 11g Express going on a Fedora VM and after running the configuration (/etc/init.d/oracle-xe configure
) I am getting the following error:

*********************

begin
***
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0



File created.

ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Linux-x86_64 Error: 2: No such file or directory
ORA-00119: invalid specification for system parameter LOCAL_LISTENER
ORA-00130: invalid listener address '(ADDRESS=(PROTOCOL=TCP)(HOST=dvrfc.localdomain)(PORT=1521))'
select 'utl_recomp_begin: ' || to_char(sysdate, 'HH:MI:SS') from dual
***
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0


BEGIN utl_recomp.recomp_serial(); END;

***
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0


select 'utl_recomp_end: ' || to_char(sysdate, 'HH:MI:SS') from dual
***
ERROR at line 1:
ORA-01034: ORACLE not available
Process ID: 0
Session ID: 0 Serial number: 0

****************

I've manually edited both the listner.ora and tnsnames.ora to specifically point to an IP but yet it's still trying to use a FQDN, I'm a little confused at that...???

*# listener.ora Network Configuration File:*

SID_LIST_LISTENER =
*(SID_LIST =*
*(SID_DESC =*
*(SID_NAME = PLSExtProc)*
*(ORACLE_HOME = /u01/app/oracle/product/11.2.0/xe)*
*(PROGRAM = extproc)*
*)*
*)*

LISTENER =
*(DESCRIPTION_LIST =*
*(DESCRIPTION =*
*(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))*
*(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.3.202)(PORT = 1521))*
*)*
*)*

DEFAULT_SERVICE_LISTENER = (XE)


# tnsnames.ora Network Configuration File:

XE =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.3.202)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
)
)

EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)

*********************



This is on a fresh install on the VM so maybe I missed the obvious???

Anyway, I'm pretty green with the ORACLE install and could use some help.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 20 2012
Added on Feb 20 2012
4 comments
1,124 views