Operating System - HP-UX
1821800 Members
3086 Online
109637 Solutions
New Discussion юеВ

Java Service Wrapper error in HPUX

 
stanic
New Member

Java Service Wrapper error in HPUX

Hi All! I having the following error when I try to install Java Service Wrapper 3.3.1 HPUX Itanium in my HP-UX server B.11.23.

$ 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.
5 REPLIES 5
Steven E. Protter
Exalted Contributor

Re: Java Service Wrapper error in HPUX

Shalom,

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
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
stanic
New Member

Re: Java Service Wrapper error in HPUX

SEP, Thanks for you reply. The file(/usr/lib/hpux64/dld.so) is exist.

How can i check the SHLIB_PATH variable?
How can i set the SHLIB_PATH variable?


Steven E. Protter
Exalted Contributor

Re: Java Service Wrapper error in HPUX

Shalom,

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
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Dennis Handly
Acclaimed Contributor

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.

stanic
New Member

Re: Java Service Wrapper error in HPUX

When i do an echo $SHLIB_PATH and $LD_LIBRARY_PATH, it show empty. Then i set the /usr/lib/hpux64 into the SHLIB_PATH and LD_LIBRARY_PATH variables and run the installer again. The error still the same.

What is mean Unsatisfied code symbol 'sigActionChildDeath' and 'sigActionHangup'?