- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Getting JSP to work / run?
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
02-28-2006 12:52 AM
02-28-2006 12:52 AM
I have a developer who has written some jsp and set it up on his workstation. I now get to move all this to an HPUX 11i box. I know a little about Apache but nothing about Tomcat or getting the jsp to compile or talk to oracle…. Any tip or suggestions on getting this system up and running?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 01:50 AM
02-28-2006 01:50 AM
Re: Getting JSP to work / run?
You need to install Application servers like Tomcat or Jetty which is part of Internet express suite and edit web.xml. Also take a look at these docs for more help.
http://docs.hp.com/en/5990-8153/ch07s09.html
http://tomcat.apache.org/tomcat-5.5-doc/setup.html
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 02:18 AM
02-28-2006 02:18 AM
Re: Getting JSP to work / run?
"su - www -c "/opt/hpws/tomcat/bin/startup.sh"
But I am unable to connect via
http://server:8080 I believe 8080 is the default port for tomcat no?
Also my JAVA_HOME is set to /opt/java1.4/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 02:32 AM
02-28-2006 02:32 AM
Re: Getting JSP to work / run?
to confirm your configuration, have a look at the server.xml in your conf directory.
Default is 8080
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 02:33 AM
02-28-2006 02:33 AM
Re: Getting JSP to work / run?
Normally tomcat runs on Port 8080. You can control Tomcat by Webmin which is part of HP-UX webserver suite.
Just start webmin,
# /opt/hpws/webmin/webmin-init start
It listens on port 10000, http://your_server_name_or_IP:10000
Login :admin/hp.com
You can easily configure tomcat from there.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 02:40 AM
02-28-2006 02:40 AM
Re: Getting JSP to work / run?
java.util.zip.ZipException: Permission denied
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.
at java.util.jar.JarFile.
at java.util.jar.JarFile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 02:17 PM
02-28-2006 02:17 PM
SolutionIt could be a problem with Jar file permissions. # swverify
http://marc.theaimsgroup.com/?l=tomcat-user&m=106255571527316&w=2
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2006 03:13 AM
03-06-2006 03:13 AM
Re: Getting JSP to work / run?
Still no jsp showing though?