- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: oracle sqlplus error - libsqlplus.sl
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2005 08:38 AM
тАО10-29-2005 08:38 AM
I got the below error while using sqlplus command.
root@jasmine: /home/sksonkar/shiv_oracle_sqpplus #./sqlplus
/usr/lib/pa20_64/dld.sl: Unable to find library 'libsqlplus.sl'.
Killed
Can anyone suggest some workaround ?
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2005 09:29 AM
тАО10-29-2005 09:29 AM
Re: oracle sqlplus error - libsqlplus.sl
Could you please show the environment of the user: ORACLE_HOME and SHLIB_PATH.
The library must be in $ORACLE_HOME/lib and this directory must be in SHLIB_PATH
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2005 10:11 AM
тАО10-29-2005 10:11 AM
Re: oracle sqlplus error - libsqlplus.sl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2005 10:14 AM
тАО10-29-2005 10:14 AM
Re: oracle sqlplus error - libsqlplus.sl
Here is directory where i installed oracle intant client:
$ pwd
/home/sksonkar/shiv_oracle_sqpplus
$ ll
total 4654
-rwxr-xr-x 1 sksonkar users 1525 Oct 26 15:51 glogin.sql
-rwxr-xr-x 1 sksonkar users 916968 Oct 26 15:51 libsqlplus.sl
-rwxr-xr-x 1 sksonkar users 1435656 Oct 26 15:51 libsqlplusic.sl
-rwxr-xr-x 1 sksonkar users 25168 Oct 26 15:51 sqlplus
-rwxr-xr-x 1 root sys 1020 Oct 28 09:41 tnsnames.ora
$
Thanks,
Shiv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2005 06:50 PM
тАО10-29-2005 06:50 PM
SolutionLD should be able to find your libraries now. Otherwise, manually linking it to /usr/lib will also help.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-29-2005 07:11 PM
тАО10-29-2005 07:11 PM
Re: oracle sqlplus error - libsqlplus.sl
Looking at the instructions on oracle web:
1. Download the appropriate Instant Client packages for your platform. All installations REQUIRE the Basic package.
2. Unzip the packages into a single directory such as "instantclient".
3. Set the library loading path in your environment to the directory in Step 2 ("instantclient"). On many UNIX platforms, LD_LIBRARY_PATH is the appropriate environment variable. On Windows, PATH should be used.
Did you try to set LD_LIBRARY_PATH to the appropiate value?
Regards,
Zigor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2005 06:41 AM
тАО10-30-2005 06:41 AM
Re: oracle sqlplus error - libsqlplus.sl
/usr/lib/pa20_64/dld.sl: Unable to find library 'libclntsh.sl.10.1'.
Killed
root@bigguy: /home/sksonkar/shiv_oracle_sqpplus #
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2005 06:43 AM
тАО10-30-2005 06:43 AM
Re: oracle sqlplus error - libsqlplus.sl
Now i got this new errors as shown below:
root@bigguy: /home/sksonkar/shiv_oracle_sqpplus # ./sqlplus
/usr/lib/pa20_64/dld.sl: Unable to find library 'libclntsh.sl.10.1'.
Killed
root@bigguy: /home/sksonkar/shiv_oracle_sqpplus #
Thanks,
Shiv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2005 01:23 PM
тАО10-30-2005 01:23 PM
Re: oracle sqlplus error - libsqlplus.sl
SQL*Plus Instant Client allows you to run SQL*Plus without installing the standard Oracle client, or having an ORACLE_HOME.
Unable to find library 'libclntsh.sl.10.1'. indicates that this library did not get created properly
You can try relink all, but more than likely it is an environment variable that is not set properly.
As others mentioned environment variables (LD_LIBRARY_PATH and SHLIB_PATH) were not set properly
LD_LIBRARY_PATH=
export LD_LIBRARY_PATH
SHLIB_PATH=
export SHLIB_PATH
Check the value for LD_LIBRARY_PATH and SHLIB_PATH after step 1
echo $LD_LIBRARY_PATH
echo $SHLIB_PATH
Run sqlplus again.
Indira A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-30-2005 03:13 PM
тАО10-30-2005 03:13 PM
Re: oracle sqlplus error - libsqlplus.sl
IA is right. Assuming your installation was properly done, make sure these environment variables are set:
LD_LIBRARY_PATH and SHLIB_PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/dt/lib:/usr/lib
export SHLIB_PATH=$ORACLE_HOME/lib:/usr/dt/lib:/usr/lib
good luck
yogeeraj