Operating System - HP-UX
1753666 Members
6129 Online
108799 Solutions
New Discussion юеВ

svrmgrl, sqlplus path(?) error

 
GN_1
Occasional Contributor

svrmgrl, sqlplus path(?) error

When I try to run 'svrmgrl' I get the following error message:

/usr/lib/dld.sl: Can't find path for shared library: libobk.sl
/usr/lib/dld.sl: No such file or directory
/usr/lib/dld.sl: Can't find path for shared library: libobk.sl
/usr/lib/dld.sl: No such file or directory
ORA-12547: TNS:lost contact
SVRMGR>

But these dld.sl and libobk.sl files are present in /usr/lib. I can not start svrmgrl and instances. Any help would be highly appreciated!

Thanks in advance
-gn
5 REPLIES 5
Patrick Wallek
Honored Contributor

Re: svrmgrl, sqlplus path(?) error

You probably need to add the path to the Oracle lib directory to your LD_LIBRARY_PATH.

We have Oracle 8.1.6 installed and it is installed in /apps/oracle/product/8.1.6. The LD_LIBRARY_PATH is:

LD_LIBRARY_PATH=/apps/oracle/product/8.1.6/lib:/usr/lib:/usr/dt/lib
GN_1
Occasional Contributor

Re: svrmgrl, sqlplus path(?) error


That is what I tried first; I added /usr/lib in PATH, LD_LIBRARY_PATH,SHLIB_PATH.
But no luck.

I remember my DBA recently invoked installer(or similar) to remove LegatorNetworker component when database was not running.
Is there a chance some link broke?

I use Oracle 8.17 with HP-UX 11.0 32bit OS.

Thanks in advance,

-GN
Eric Ladner
Trusted Contributor

Re: svrmgrl, sqlplus path(?) error

For 64 bit oracle, it should be

LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib64:/usr/lib
export LD_LIBRARY_PATH

Try running that in a shell first then executing svrmgrl and see if it works correctly. If so, add to oracle's .profile or /etc/profile (your choice)
Helen French
Honored Contributor

Re: svrmgrl, sqlplus path(?) error

Hi GN,

Check this out. This is talking about Omniback, but can be the same case happened to you with Legato:

http://us-support.external.hp.com/cki/bin/doc.pl/sid=cf56b6b818739e478d/screen=ckiDisplayDocument?docId=200000055546676

HTH,
Shiju
Life is a promise, fulfill it!
GN_1
Occasional Contributor

Re: svrmgrl, sqlplus path(?) error


Looks like my DBA foundout some answer from Oracle site.

the answer was like
" If you un-install Legato Networker from oracle, create a new link for library file like:
ln -s /xxxx/xxxx libobk.sl "

It works now. I dont know what was the linking source filename.

Thanks for all who answered.