Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

I have shared libraries installed correctly, but they cannot be found at run-time.

Status
Not open for further replies.

kwerner

Administrator
Staff member
The Unix operating system usually looks at the environment variable LD_LIBRARY_PATH to search the directories in the path for the library. Try issuing these commands:

echo $LD_LIBRARY_PATH

If the path does not include /usr/local/lib, then (in ksh, for example), type:
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"

You can put this in your login script so that you do not have to issue this command every time.
 
Status
Not open for further replies.
Top