Oracle 10g on RHEL4 AS for Itanium Error [message #247580] |
Tue, 26 June 2007 07:39 |
rams1965
Messages: 7 Registered: June 2007 Location: Bulawayo
|
Junior Member |
|
|
Hi Buddies,
I have been trying to install Oracle 10g on Red Hat Enterprise Linux for Itanium and I am failling to go past pre-requisite checks. Oracle assumes that I am using DHCP when I have a static IP Address. I have an entry in my hosts file with ip 127.0.0.1 mapped as localhosts.
I need your urgent assistance please.
Your Buddy,
Ray.
PS. The error is
Checking Network Configuration requirements……
Check complete. The overall result of this check is: Not executed <<<<
Recommendation: Oracle supports installations on systems with DHCP-assigned public IP addresses. However, the primary network interface on the system should be configured with a static IP address in order for the Oracle Software to function properly. See the Installation Guide for more details on installing the software on systems with DHCP.
|
|
|
|
|
|
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #248262 is a reply to message #247934] |
Thu, 28 June 2007 08:29 |
rams1965
Messages: 7 Registered: June 2007 Location: Bulawayo
|
Junior Member |
|
|
Thanks, I have managed to set up a starter database but after all the effort I cannot start the listener. I have copied the listener from sample to .../network/admin and the new one is below:
LISTENER =
DESCRIPTION_LIST =
DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS=(PROTOCOL = TCP)(HOST = 10.1.10.228)(PORT = 1521))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = nrz10bse.nrz10bse.co.zw)
(ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
(SID_NAME = nrz10bse)
)
)
The Error I'm getting is TNS-01150: The address of specified listener name is incorrect.
|
|
|
|
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #248450 is a reply to message #248278] |
Fri, 29 June 2007 01:57 |
rams1965
Messages: 7 Registered: June 2007 Location: Bulawayo
|
Junior Member |
|
|
the lister.ora is
# Copyright (c) 1997 by the Oracle Corporation
#
# File listener.ora
#
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS=(PROTOCOL = TCP)(HOST = nrzdtabase01)(PORT = 1521))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = nrz10bse.nrz10bse.co.zw)
(ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
(SID_NAME = nrz10bse)
)
)
The error I get is
TNSLSNR for Linux IA64: Version 10.2.0.1.0 - Production on 29-JUN-2007 08:16:51
Copyright (c) 1991, 2005, Oracle. All rights reserved.
System parameter file is /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
Log messages written to /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
Trace information written to /u01/app/oracle/product/10.2.0/db_1/network/trace/listener.trc
Trace level is currently 0
Started with pid=4963
TNS-01150: The address of the specified listener name is incorrect
|
|
|
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #248569 is a reply to message #248450] |
Fri, 29 June 2007 10:27 |
DreamzZ
Messages: 1666 Registered: May 2007 Location: Dreamzland
|
Senior Member |
|
|
Try this listener settings
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
)
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = nrzdtabase01)(PORT = 1521))
)
)
)
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SDU = 8192)
(TDU = 8192)
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
(PROGRAM = extproc)
)
(SID_DESC =
(SDU = 8192)
(TDU = 8192)
(GLOBAL_DBNAME = nrz10bse.nrz10bse.co.zw)
(ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)
(SID_NAME =nrz10bse)
)
)
|
|
|
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #248861 is a reply to message #248569] |
Mon, 02 July 2007 08:42 |
rams1965
Messages: 7 Registered: June 2007 Location: Bulawayo
|
Junior Member |
|
|
Still no luck, but I have noticed that in my /etc/sysctl.conf I have net.ipv4.ip_local_port_range=1024 65000 and when I go to devices in network tools I protocol = ipv4, IP Address=127.0.0.1, Netmask=255.0.0.0
Could this be the problem because I just commented the 127.0.0.1 in the /etc/hosts file. I am now confused.
|
|
|
|
|
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #249163 is a reply to message #249142] |
Tue, 03 July 2007 09:44 |
DreamzZ
Messages: 1666 Registered: May 2007 Location: Dreamzland
|
Senior Member |
|
|
Quote: | The listener now runs but I cannot access the database from any other PC after starting up the database. This confuses me further now.
|
did you check your service?
what error it throws when you enter
conn oracle/oracle@myservice
|
|
|
|
|
|