- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Java Service Wrapper error in HPUX
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
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
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-11-2008 02:27 AM
тАО11-11-2008 02:27 AM
Java Service Wrapper error in HPUX
$ sh JSW-Test_App start
-n Starting Test_APP1...
/usr/lib/hpux64/dld.so: Unsatisfied code symbol 'sigActionChildDeath' in load module '/devtest/testapp/bin/./wrapper'.
/usr/lib/hpux64/dld.so: Unsatisfied code symbol 'sigActionHangup' in load module '/devtest/testapp/bin/./wrapper'.
JSW-Test_App[7]: 5380 Killed
Anyone know what causing it?
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2008 02:37 AM
тАО11-11-2008 02:37 AM
Re: Java Service Wrapper error in HPUX
No I don't know what caused it. But I can help you find out.
1) See that all files being complained about exist.
2) See that the libraries being called are on the SHLIB_PATH variable so the installer can find them.
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-11-2008 02:52 AM
тАО11-11-2008 02:52 AM
Re: Java Service Wrapper error in HPUX
How can i check the SHLIB_PATH variable?
How can i set the SHLIB_PATH variable?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2008 05:12 AM
тАО11-11-2008 05:12 AM
Re: Java Service Wrapper error in HPUX
echo $SHLIB_PATH
this variable works just like PATH except it tells compilers and such where to look for libraries.
example:
SHLIB_PATH=/usr/lib/hpux64
export SHLIB_PATH
Also, it might be possible installation instructions and software pre-requisites are not met. Please review those issues as well.
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-11-2008 09:20 AM - edited тАО02-08-2014 07:37 PM
тАО11-11-2008 09:20 AM - edited тАО02-08-2014 07:37 PM
Re: Java Service Wrapper error in HP-UX
This says your application is broken, or you don't have the right shlibs.
>SEP: 1) See that all files being complained about exist.
There are no files here, just unsat symbols.
>2) See that the libraries being called are on the SHLIB_PATH variable so the installer can find them.
I doubt this will help unless there are different versions of the same shlib and LD_LIBRARY_PATH is pointing to the wrong one?
>/usr/lib/hpux64/dld.so is exist.
Of course it exists, that's what is printing the error.
>How can I set the SHLIB_PATH variable?
On Integrity, you should use LD_LIBRARY_PATH instead. You use the export command. But since you don't know if that's the problem, not much you can do with it.
>SEP: except it tells compilers and such where to look for libraries.
It has nothing to do with compilers, just dld.so(5).
>SEP: Please review those issues as well.
Exactly, this is a pretty glaring error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-11-2008 07:14 PM
тАО11-11-2008 07:14 PM
Re: Java Service Wrapper error in HPUX
What is mean Unsatisfied code symbol 'sigActionChildDeath' and 'sigActionHangup'?