![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| HP-UX HP-UX (Hewlett Packard UniX) is Hewlett-Packard's proprietary implementation of the Unix operating system, based on System V. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Shared memory in shared library | DreamWarrior | High Level Programming | 12 | 05-30-2007 01:33 PM |
| Shared Object library problem | suman_jakkula | AIX | 0 | 09-06-2006 02:40 AM |
| shared library | areef4u | UNIX for Advanced & Expert Users | 1 | 07-31-2006 11:14 PM |
| Linking problem while linking to shared library | laho | High Level Programming | 6 | 03-16-2004 06:01 AM |
| Shared Library | rajashekaran | High Level Programming | 2 | 08-03-2002 10:59 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
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) |
| Forum Sponsor | ||
|
|
|
|||
|
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 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. |
|||
| Google UNIX.COM |