1833053 Members
2584 Online
110049 Solutions
New Discussion

Re: Lib Error

 
Robert DJ
Frequent Advisor

Lib Error

Hi,

Am getting an error like this below,

/usr/lib/dld.sl: Can't find path for shared library: libservice05.sl
/usr/lib/dld.sl: No such file or directory
/usr/lib/dld.sl: Can't find path for shared library: libservice05.sl
/usr/lib/dld.sl: No such file or directory

I do hav the library file which it specifies could anyone let me know what i need to do.

Thank you.

Regards,
Robs
Robert DJ
9 REPLIES 9
Muthukumar_5
Honored Contributor

Re: Lib Error

Find the location of libservice05.sl library and then export the settings of ,

export SHLIB_PATH=

or

export LD_LIBRARY_PATH= for itanium

hth.
Easy to suggest when don't know about the problem!
saju_2
Respected Contributor

Re: Lib Error

Hi Robs

Have u exported the SHLIB_PATH ( Shared Library Path) varibale? If not export it,

export SHLIB_PATH=/usr/lib/

Regards
CS

Muthukumar_5
Honored Contributor

Re: Lib Error

Do this,

# find / -name "libservice05.sl"
# ldd libservice05.sl
# export SHLIB_PATH=/usr/lib:

PS: Post your try in shell prompt with errors you are getting more. It will give speedy solution.


Easy to suggest when don't know about the problem!
Eric Antunes
Honored Contributor

Re: Lib Error

Hi Robert,

If you are using Oracle, you may need to do some relinking...

Best Regards,

Eric Antunes
Each and every day is a good day to learn.
Robert DJ
Frequent Advisor

Re: Lib Error

Hi Muthu,

My Shell is current working on "tcsh"

export doesnt work as this is set to a separate user and it works only for that particular set of applications.

even though am able to locate the library file. is there a way to export in tcsh.

Thank you.

Regards,
Robs
Robert DJ
Muthukumar_5
Honored Contributor

Re: Lib Error

Use with set command.

set SHLIB_PATH =

hth.
Easy to suggest when don't know about the problem!
Robert-Jan Goossens_1
Honored Contributor

Re: Lib Error

setenv SHLIB_PATH /usr/lib/.......etc

Regards,
Robert-Jan
Robert DJ
Frequent Advisor

Re: Lib Error

Nope, Its still showing the same error.

Any other way....

Regards,
Robs
Robert DJ
Robert DJ
Frequent Advisor

Re: Lib Error

Got it fixed by trying with the .profile coz it was as well reflecting with the one of our databases as well.

Thank you for the replies and was really usefull.

Regards,
Robs
Robert DJ