Operating System - HP-UX
1748255 Members
3828 Online
108760 Solutions
New Discussion юеВ

Re: problem on install oracle 9.2.0.1 on hpux 11i

 

problem on install oracle 9.2.0.1 on hpux 11i

When I install oracle 9.2.0.1 on hpux 11i, it report error: "$ORACLE_HOME/sqlplus/lib/ins_sqlplus.mk".
Then I login system as user oracle , execute command "make -f $ORACLE_HOME/sqlplus/lib/ins_sqlplus.mk", it report error: "ld: Can't find library for -lfcgi".
Does someone met similar case, and help me.
4 REPLIES 4
T G Manikandan
Honored Contributor

Re: problem on install oracle 9.2.0.1 on hpux 11i

make sure that you have all the pre-requisite hpux patches loaded on the sevrer.

check the oracle installation manual for the hpux patches

Thanks
Wodisch
Honored Contributor

Re: problem on install oracle 9.2.0.1 on hpux 11i

Hi,

and you really have to configure your kernel parameters BEFORE you start to (re)link Oracle, as the MAXDSIZ is way too low for this task!

FWIW,
Wodisch
twang
Honored Contributor

Re: problem on install oracle 9.2.0.1 on hpux 11i

You may try to hardcore the path the library:
1. Login as Oracle.
2. Ensure you are setting SHLIB_PATH and NOT SH_LIB_PATH.
% echo $SHLIB_PATH
-OR-
% env
--> SHLIB_PATH should be set to $ORACLE_HOME/lib:/usr/lib
3. Go into the env_.mk file for the product you are having the problem with. 4. % cd $ORACLE_HOME/sqlplus/lib
5. Edit env_sqlplus.mk, hardcode the path to your library file.
6. Relink the RDBMS.
% $ORACLE_HOME/rdbms/lib make -f ins_rdbms.mk install
6. Relink your product.
% $ORACLE_HOME/sqlplus/lib make -f ins_sqlplus.mk install
T G Manikandan
Honored Contributor

Re: problem on install oracle 9.2.0.1 on hpux 11i