Operating System - HP-UX
1748063 Members
5656 Online
108758 Solutions
New Discussion юеВ

HP-UX 11.0 Oracle 9.2 install issue

 
SOLVED
Go to solution
hongsee
New Member

HP-UX 11.0 Oracle 9.2 install issue

Hi All,

I am trying to install Oracle 9.2 on a server with HP-UX 11.0 following Oracle's HP-UX: Quick Start Guide - 9.2.0 RDBMS Installation (Doc ID: 201023.1)

During 61% linking stage, I got this error: Error in invoking target install of makefile /u01/app/oracle/product/9.2.0/ins_plsql.mk

Do I need to apply any patch to HP-UX 11.0 first. I have check in Oracle Metalink, 9.2 & 11.0 is certified.

Please advise.
9 REPLIES 9
Shahul
Esteemed Contributor
Solution

Re: HP-UX 11.0 Oracle 9.2 install issue

Hi

Sounds like patch problem. get the rqd patch details from Oracle and cross check with the system. If anything is missing load it and then proceed with Oracle installation.

Best of luck
Shahul
Victor Geere
Frequent Advisor

Re: HP-UX 11.0 Oracle 9.2 install issue

Here is a handy link to Oracle installation documentation where you will find a long list of patches that you need to install. You will have a nice adventure finding patches that have been superceded.

Also, Oracle has been able to fit 5 small yet significant spelling mistakes into 8 lines of environment variables.

Here is a profile that worked for me, you will need to change the NLS settings to suit your Language:

#oracle environment variables
DISPLAY=mymachine:0.0
export DISPLAY
ORACLE_HOME=/oracle/product/9.0.1; export ORACLE_HOME
ORACLE_BASE=/oradb; export ORACLE_BASE
ORACLE_SID=OEMREP; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
JAVA_HOME=/opt/java1.3; export JAVA_HOME
TNS_ADMIN=$ORACLE_HOME/network/admin; export TNS_ADMIN
NLS_LANG=AMERICAN_AMERICA.US7ASCII; export NLS_LANG
#NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1; export NLS_LANG
NLS_LANGUAGE=$NLS_LANG; export NLS_LANGUAGE
ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data; export ORA_NLS33
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib:$ORACLE_HOME/rdbms/lib:$LD_LIBRARY_PATH
SHLIB_PATH=$SHLIB_PATH:$ORACLE_HOME/lib32:$ORACLE_HOME/rdbms/lib32
export LD_LIBRARY_PATH
export SHLIB_PATH
stty erase
#set shell search paths
PATH=$PATH:/opt/java1.3/bin:/bin:/usr/bin:/usr/sbin:/etc:/opt/bin:/usr/ccs/bin:/usr/local/bin:$ORACLE_HOME/bin
export PATH

CLASSPATH=$CLASSPATH:$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib:$ORACLE_HOME/jdbc/lib/classes12.zip
export CLASSPATH

#oracle environment variables end here


I thought that I was because I had thought.
Victor Geere
Frequent Advisor

Re: HP-UX 11.0 Oracle 9.2 install issue

http://docs.oracle.com/cd_a97630/index.htm
I thought that I was because I had thought.
Ravi_8
Honored Contributor

Re: HP-UX 11.0 Oracle 9.2 install issue

Hi,

refer URL:
http://docs.oracle.com/HTML_Storage/a90357/toc.html

which tells you the patches and kernel parameters values to be there before starting the oracle installation.
never give up
Victor Geere
Frequent Advisor

Re: HP-UX 11.0 Oracle 9.2 install issue

Your lucky day. Here's my list:

I have installed the following patches. Have a look at the docs anyway, because you might qualify for some additional pathces.

Dec 2000 patch bundle

PHCO_23919 was installed

PHCO_23963 superceded PHCO_23092

PHCO_23707 superceded PHCO_23770

PHKL_26059 superceded PHKL_23226

PHNE_25484 superceded PHNE_23249

PHSS_26262 superceded PHSS_23377

Hyperfabric driver 11.00.12 if applicable.
I thought that I was because I had thought.
T G Manikandan
Honored Contributor

Re: HP-UX 11.0 Oracle 9.2 install issue

Hello

You have some OS patches (LIBC).Install those patches .
check for those
patches before you go for installation


Thanks
T G Manikandan
Honored Contributor

Re: HP-UX 11.0 Oracle 9.2 install issue

check this guide
http://docs.oracle.com/DOCS_DOT_PDF_Storage/a96167.pdf

These patches have been mentioned

HP-UX 11.0
(64- bit)
Sept. 2001 Quality Pack,
PHCO_23792, PHCO_
24148, PHKL_24268,
PHKL_24729,
PHKL_ 25475,
PHKL_25525,
PHNE_24715,
PHSS_23670, PHSS_24301,
PHSS_24303, PHSS_24627,
PHSS_22868
For patch bundles:
http://www.software.hp.com/SUPPORT_PLUS
For individual patches:
http://itresourcecenter.hp.com
hongsee
New Member

Re: HP-UX 11.0 Oracle 9.2 install issue

Hi All,

First of all, I must sincerely thank you all of you.

I managed to do the installation with the March 2002 patch bundle installed.
Victor Geere
Frequent Advisor

Re: HP-UX 11.0 Oracle 9.2 install issue

What's the score :?)
I thought that I was because I had thought.