![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Shared memory in shared library | DreamWarrior | High Level Programming | 12 | 05-30-2007 04:33 PM |
| Shared Object library problem | suman_jakkula | AIX | 0 | 09-06-2006 05:40 AM |
| shared library | areef4u | UNIX for Advanced & Expert Users | 1 | 08-01-2006 02:14 AM |
| Linking problem while linking to shared library | laho | High Level Programming | 6 | 03-16-2004 10:01 AM |
| Shared Library | rajashekaran | High Level Programming | 2 | 08-03-2002 01:59 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | 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) |
|
||||
|
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. |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|