- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP Java support
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
06-21-2002 02:20 AM
06-21-2002 02:20 AM
I have installed the latest version of Tomcat (4.0). It doesn't start due to some java classes missing.
My question is:
1. What version of Java can be installed on HP-UX? The current Java 2 1.4 doesn't have an install package for HP-UX? Is there an HP site with HP Java packages?
2. Will tomcat run on HP-UX?
Hopefully someone here had experience with Java on HP-UX. I will appreciate all comments.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:22 AM
06-21-2002 02:22 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:23 AM
06-21-2002 02:23 AM
Re: HP Java support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:27 AM
06-21-2002 02:27 AM
Re: HP Java support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:35 AM
06-21-2002 02:35 AM
Re: HP Java support
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:37 AM
06-21-2002 02:37 AM
Re: HP Java support
What you need to download is PA-RISC
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:38 AM
06-21-2002 02:38 AM
Re: HP Java support
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:47 AM
06-21-2002 02:47 AM
Re: HP Java support
Here's answer to a question i found in Java FAQ:
************************
: I downloaded Java and got the error: "Unable to initialize threads -- cannot find class java/lang/thread". What should I do?
A: For most users, the java wrapper script will take care of setting the JAVA_HOME environment variable and will add the appropriate entries to the CLASSPATH so that the JVM finds the standard API classes.
The PATH environment variable needs to include a path to the java wrapper script. People writing applications with non-Java mains may need to worry about the setting of CLASSPATH and SHLIB_PATH. They can set CLASSPATH in the JDK1_1InitArgs structure passed to JNI_CreateJavaVM(). They need to ensure that SHLIB_PATH is set to include the directories where the JVM shared libraries are found (typically ${JAVA_HOME}/lib/PA_RISC/green_threads or ${JAVA_HOME}/lib/PA_RISC/native_threads). SHLIB_PATH must be set prior to launching the application. Using setenv() to set SHLIB_PATH within the application will not have an effect on how the dld searches for shared libraries.
***************************
My question is: How do I set the java wrapper class in CLASSPATH? The Unix server I got came with preinstalled Java, however no JAVA_HOME and CLASSPATH env. variables were set. And I am having trouble finding install info on hp site.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 02:55 AM
06-21-2002 02:55 AM
Re: HP Java support
Appended the nessecary PATH in
/etc/PATH file
Append the nessecary SHLIB_PATH in
/etc/SHLIB_PATH
And for CLASSPATH do this
#export CLASSPATH=/opt/java/class (or whatever)
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-21-2002 03:28 AM
06-21-2002 03:28 AM
Re: HP Java support
Variable Add
CLASSPATH installDir/SUNWjdmk/jdmk4.2/1.1/lib/jdmkrt.jar:
installDir/SUNWjdmk/jdmk4.2/1.1/lib/jdmktk.jar:
installDir/SUNWjdmk/jdmk4.2/1.1/lib/collections.jar
or installDir/SUNWjdmk/jdmk4.2/1.1/lib/jdmkrt.jar:
installDir/SUNWjdmk/jdmk4.2/1.2/lib/jdmktk.jar
PATH installDir/SUNWjdmk/jdmk4.2/1.1/bin
or installDir/SUNWjdmk/jdmk4.2/1.2/bin
regards,
U.SivaKumar