Home » Infrastructure » Linux » Oracle 10g on RHEL4 AS for Itanium Error
Oracle 10g on RHEL4 AS for Itanium Error [message #247580] Tue, 26 June 2007 07:39 Go to next message
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 #247613 is a reply to message #247580] Tue, 26 June 2007 09:49 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
by using cut & paste post the results of the following:

cat /etc/hosts
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #247733 is a reply to message #247613] Wed, 27 June 2007 01:32 Go to previous messageGo to next message
rams1965
Messages: 7
Registered: June 2007
Location: Bulawayo
Junior Member
If I type 'cat /etc/hosts' I get

127.0.0.1 myservername localhost.localdomain localhost
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #247934 is a reply to message #247580] Wed, 27 June 2007 10:15 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
OUI requires/expects a real IP# (and hostname)
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #248262 is a reply to message #247934] Thu, 28 June 2007 08:29 Go to previous messageGo to next message
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 #248278 is a reply to message #248262] Thu, 28 June 2007 09:27 Go to previous messageGo to next message
DreamzZ
Messages: 1666
Registered: May 2007
Location: Dreamzland
Senior Member
check your Ip or try the host name.And post the whole errors while starting.
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #248450 is a reply to message #248278] Fri, 29 June 2007 01:57 Go to previous messageGo to next message
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 Go to previous messageGo to next message
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 Go to previous messageGo to next message
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 #248871 is a reply to message #248861] Mon, 02 July 2007 09:16 Go to previous messageGo to next message
DreamzZ
Messages: 1666
Registered: May 2007
Location: Dreamzland
Senior Member
uncomment and then check.
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #249142 is a reply to message #248871] Tue, 03 July 2007 08:53 Go to previous messageGo to next message
rams1965
Messages: 7
Registered: June 2007
Location: Bulawayo
Junior Member
Hie,

The listener now runs but I cannot access the database from any other PC after starting up the database. This confuses me further now.
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #249163 is a reply to message #249142] Tue, 03 July 2007 09:44 Go to previous messageGo to next message
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
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #249325 is a reply to message #249163] Wed, 04 July 2007 01:47 Go to previous messageGo to next message
rams1965
Messages: 7
Registered: June 2007
Location: Bulawayo
Junior Member
If I try to connect as system/mypassword@myservice I get the following error
ORA-12154: TNS: could not resolve the connect identifier specified.

However, I can connect as SYSDBA should I change the system password?
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #249526 is a reply to message #247580] Wed, 04 July 2007 15:37 Go to previous messageGo to next message
BlackSwan
Messages: 26766
Registered: January 2009
Location: SoCal
Senior Member
12154, 00000, "TNS:could not resolve the connect identifier specified"
// *Cause:  A connection to a database or other service was requested using
// a connect identifier, and the connect identifier specified could not
// be resolved into a connect descriptor using one of the naming methods
// configured. For example, if the type of connect identifier used was a
// net service name then the net service name could not be found in a 
// naming method repository, or the repository could not be
// located or reached.
// *Action:
//   - If you are using local naming (TNSNAMES.ORA file):
//      - Make sure that "TNSNAMES" is listed as one of the values of the
//        NAMES.DIRECTORY_PATH parameter in the Oracle Net profile
//        (SQLNET.ORA)
//      - Verify that a TNSNAMES.ORA file exists and is in the proper
//        directory and is accessible.
//      - Check that the net service name used as the connect identifier
//        exists in the TNSNAMES.ORA file.
//      - Make sure there are no syntax errors anywhere in the TNSNAMES.ORA
//        file.  Look for unmatched parentheses or stray characters. Errors
//        in a TNSNAMES.ORA file may make it unusable.
//   - If you are using directory naming:
//      - Verify that "LDAP" is listed as one of the values of the
//        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
//        (SQLNET.ORA).
//      - Verify that the LDAP directory server is up and that it is
//        accessible.
//      - Verify that the net service name or database name used as the
//        connect identifier is configured in the directory.
//      - Verify that the default context being used is correct by
//        specifying a fully qualified net service name or a full LDAP DN
//        as the connect identifier
//   - If you are using easy connect naming:
//      - Verify that "EZCONNECT" is listed as one of the values of the
//        NAMES.DIRETORY_PATH parameter in the Oracle Net profile
//        (SQLNET.ORA).
//      - Make sure the host, port and service name specified
//        are correct.
//      - Try enclosing the connect identifier in quote marks.
// 
//   See the Oracle Net Services Administrators Guide or the Oracle
//   operating system specific guide for more information on naming.
Re: Oracle 10g on RHEL4 AS for Itanium Error [message #249746 is a reply to message #249325] Thu, 05 July 2007 14:20 Go to previous message
DreamzZ
Messages: 1666
Registered: May 2007
Location: Dreamzland
Senior Member
Quote:
However, I can connect as SYSDBA should I change the system password?


yes you can change the password.

Quote:
However, I can connect as SYSDBA


try with simple user account
like scott or HR
Previous Topic: Export Environment Variables.
Next Topic: Problem : file being written is being transfered in Incomplete state
Goto Forum:
  


Current Time: Fri Mar 29 04:08:26 CDT 2024