Shared Library Problem


 
Thread Tools Search this Thread
Operating Systems HP-UX Shared Library Problem
# 1  
Old 08-26-2004
Shared Library Problem

I have this error when I try to do check on the oracle database...
Can you help me figure out whats the problem? Thanks for all the help!


/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'.
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'.
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'.
/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0
/usr/lib/dld.sl: No such file or directory
sh: 28741 Abort(coredump)
/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0
/usr/lib/dld.sl: No such file or directory
sh: 28747 Abort(coredump)
/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0
/usr/lib/dld.sl: No such file or directory
sh: 28750 Abort(coredump)
# 2  
Old 08-27-2004
For starters -- what I think is going on:
Code:
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'. 
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'. 
/usr/lib/pa20_64/dld.sl: Unable to find library 'libjox8.sl'. 

The file you are trying to run was linked as a 64 bit ELF file.
dld is trying to search $ORACLE_HOME for libjox8.sl and cnnot find it or permissions on the directory or the file are bad.

/usr/lib/dld.sl: Can't open shared library: /oracle/D00/817_64/lib/libclntsh.sl.8.0 
/usr/lib/dld.sl: No such file or directory 
The file you are running expects the Oracle library to be in
/oracle/D00/817_64/ and it can't open the shared library.

...same problem on down.

You need to define $ORACLE_HOME to point to where Oracle is installed.

You need to make sure that Oracle is in the directory: /oracle/D00/817_64/

-- and that you have permissions to access it and the lib directory under it.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies

2. Programming

Shared library with acces to shared memory.

Hello. I am new to this forum and I would like to ask for advice about low level POSIX programming. I have to implement a POSIX compliant C shared library. A file will have some variables and the shared library will have some functions which need those variables. There is one special... (5 Replies)
Discussion started by: iamjag
5 Replies

3. HP-UX

Problem in Shared library file .sl on 64bit HP-UX 11.11

We are facing issue with shared library file, we are getting difference in content for same shared file for chatr command :confused: , below are the detail about *.sl file, even we are also getting difference in size of both file. can you please tell me what will be the issue for same. is my new... (1 Reply)
Discussion started by: amodkavi
1 Replies

4. HP-UX

Can't open shared library problem

I am getting following error when I am trying access PMCMD utility /usr/lib/dld.sl: Can't open shared library: /home/build3p/PMReleases/Zeus/HP-UX/xml/xerces2_4_0-icu2_6_1_811/lib/libxerces-c.sl.24 /usr/lib/dld.sl: No such file or directory Please help me with this (0 Replies)
Discussion started by: imran_affu
0 Replies

5. UNIX for Dummies Questions & Answers

Problem with shared dynamic library files

I am having a major problem. Most of the commands that i am running on my centos 5 system is giving the error of type: <dynamic shared library file>:open failed: No such file or directory For example: libgcc_s.so.1: open failed: No such file or directory How can i solve this? (6 Replies)
Discussion started by: proactiveaditya
6 Replies

6. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

7. Programming

Shared library versioning problem at runtime

My executable was linked under RedHat using the LessTif GUI shared library. When I try to run it under UBUNTU, I get an error message that the LessTif library cannot be found. The LessTif library is there, but it is a newer VERSION. My executable is looking for the older version it was linked with.... (1 Reply)
Discussion started by: imagtek
1 Replies

8. Programming

Shared memory for shared library

I am writing a shared library in Linux (but compatible with other UNIXes) and I want to allow multiple instances to share a piece of memory -- 1 byte is enough. What's the "best" way to do this? I want to optimize for speed and portability. Obviously, I'll have to worry about mutual exclusion. (0 Replies)
Discussion started by: otheus
0 Replies

9. Programming

Shared memory in shared library

I need to create a shared library to access an in memory DB. The DB is not huge, but big enough to make it cumbersome to carry around in every single process using the shared library. Luckily, it is pretty static information, so I don't need to worry much about synchronizing the data between... (12 Replies)
Discussion started by: DreamWarrior
12 Replies

10. AIX

Shared Object library problem

Hi, When using shared objects on AIX 4.3 i am getting runtime problems. I have a small sample program which links to a shared object libray, oracle and system related libraries. At runtime it fails (gives segmentation fault and coredump ) in one proc file when executing login statement. But... (0 Replies)
Discussion started by: suman_jakkula
0 Replies
Login or Register to Ask a Question