Operating System - HP-UX
1752806 Members
5404 Online
108789 Solutions
New Discussion юеВ

Re: ORA-12547: TNS:lost contact

 
SOLVED
Go to solution
Teck Sim
Frequent Advisor

ORA-12547: TNS:lost contact

After a cold-installation of HP-UX 11 from HP-UX 10.20, I was unable to startup the database.
Current database version is 7.3.4.4

[SMT1:/home/oracle]> svrmgrl

Oracle Server Manager Release 2.3.4.0.0 - Production

Copyright (c) Oracle Corporation 1994, 1995. All rights reserved.

/usr/lib/dld.sl: Unresolved symbol: getrlimit64 (code) from /usr/lib/libcma.1
/usr/lib/dld.sl: Unresolved symbol: getrlimit64 (code) from /usr/lib/libcma.1
ORA-12547: TNS:lost contact

Please help. Thanks.
4 REPLIES 4
Joseph C. Denman
Honored Contributor
Solution

Re: ORA-12547: TNS:lost contact

Did you load 7.3.4 for 11.0. There is a difference between the version for 10.20 and 11.0.

If you did load the correct version, try relinking.

...jcd...
If I had only read the instructions first??
T G Manikandan
Honored Contributor

Re: ORA-12547: TNS:lost contact

Re-link your oracle executables

1.shutdown the database
2.go into $ORACLE_HOME/bin
3.Backup the executables
oracle
svrmgrl
sqlplus
to some other directory.

4.go into
cd $ORACLE_HOME/svrmgr/lib

$make -f svrmgr.mk svrmrgl
$mv svrmgrl $ORACLE_HOME/bin/

$cd $ORACLE_HOME/rdbms/lib
$make -f rdbms.mk ioracle

$cd $ORACLE_HOME/sqlplus/lib
$make -f sqlplus.mk install


THanks
Brian Crabtree
Honored Contributor

Re: ORA-12547: TNS:lost contact

Dont forget:

cd $ORACLE_HOME/network/lib
make -f ins_network.mk install
Teck Sim
Frequent Advisor

Re: ORA-12547: TNS:lost contact

Thanks, guys. All I need to solve this problem is to install Oracle734 for HP-UX11.
Thanks.