- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: LD_LIBRARY_PATH
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
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
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
11-15-2005 12:46 AM
11-15-2005 12:46 AM
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 12:54 AM
11-15-2005 12:54 AM
SolutionWhat you are trying is perhaps requirement of some application rather than OS.
Usually it is not required for some normal OS user but when the user has to be owner of an application then this variable has to be defined. But again it is specific to application and not OS in my opinion.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 12:55 AM
11-15-2005 12:55 AM
Re: LD_LIBRARY_PATH
Yes, it is appliciable. It may not have anything direct to do with HP-UX but can be used by different applications (see the installation documentation for the specific product).
To verify:
echo $LD_LIBRARY_PATH
To add:
LD_LIBRARY_PATH=/xxx/yyy/zzz; export LD_LIBRARY_PATH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 01:23 AM
11-15-2005 01:23 AM
Re: LD_LIBRARY_PATH
Kind of works like SHLIB_PATH.
Some applications/compilers want LD_LIBRARY_PATH set instead of or alongside SHLIB_PATH.
Oracle uses it on Linux.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 01:45 AM
11-15-2005 01:45 AM
Re: LD_LIBRARY_PATH
It is applicable but I think it only will be used with 64 bits binaries.
Use chatr to check if this environment variable is used by oracle (if this is your case):
$cd $ORACLE_HOME/bin
$chatr oracle|more
Best Regards,
Eric Antunes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 02:25 AM
11-15-2005 02:25 AM
Re: LD_LIBRARY_PATH
Check for the oracle's home's .profile file.
# cat /etc/passwd | grep -i oracle
# cd ~oracle
# cat .profile | grep -i ld
You will get something like that:
# cat .profile | grep -i ld
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 02:59 AM
11-15-2005 02:59 AM
Re: LD_LIBRARY_PATH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 04:14 AM
11-15-2005 04:14 AM
Re: LD_LIBRARY_PATH
The LD_LIBRARY_PATH is usually configured for oracle is $ORACLE_HOME/lib ,
Check for the $ORACLE_HOME , in the .profile of ~oracle , and you will come to know about the LD_LIBRARY_PATH ,ie
/oracle/product/9.2.0.4/lib
For more Details :
Check :
HP-UX Linker and Libraries User's Guide .
Hth,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2005 04:23 AM
11-15-2005 04:23 AM
Re: LD_LIBRARY_PATH
Here it is :
http://docs.hp.com/en/B2355-90655/B2355-90655.pdf
Enjoy,
Cheers,
Raj.