HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPWS Tomcat won't stay running.
Operating System - HP-UX
1830746
Members
2234
Online
110015
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
03-21-2003 11:56 AM
03-21-2003 11:56 AM
HPWS Tomcat won't stay running.
Has anyone seen the tomcat provided with the hpws stop replying to requests? The server that I run just stops responding and has to be killed and restarted. The shutdown command doesn't even work. I'm running HP-UX 11/64 bit with Java 1.4. Any help would be appreciated.
The possibilities of disaster boggle the mind!
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2003 09:45 AM
05-01-2003 09:45 AM
Re: HPWS Tomcat won't stay running.
Have not used the actual HPWS version as I need to use 4.1.18 but I would imagine that one of two things is happening
1) your kernel params are not set properly and your JVM is throwing a Hotspot exception. We got this alot until we set our kernel similar to
maxusers 512
nproc 2068
max_thread_proc 3000
nkthread 6000
nfile 30000
maxfiles 2048
maxfiles_lim 2048
ncallout 6000
maxdsiz 2063835136
maxdsiz was the most important.
2) your need to set the heap properly for your JVM when you start tomcat. my start script looks like
if [ -z "$CATALINA_OPTS" ] ; then
CATALINA_OPTS="-Dreporthome=$REPORT_HOME -XdoCloseWithReadPending -Xms256m -Xmn100m -Xmx256m -Xverbosegc:file=/home/webadmin/tomc
at/logs/gc.out"
export CATALINA_OPTS
echo start: CATALINA_OPTS set to $CATALINA_OPTS
fi
the XdoCloseWithReadPending is important becuase the mod_jk and http listening threads do not exit correctly and your JVM will not stop following a shutdown.
Jeff
1) your kernel params are not set properly and your JVM is throwing a Hotspot exception. We got this alot until we set our kernel similar to
maxusers 512
nproc 2068
max_thread_proc 3000
nkthread 6000
nfile 30000
maxfiles 2048
maxfiles_lim 2048
ncallout 6000
maxdsiz 2063835136
maxdsiz was the most important.
2) your need to set the heap properly for your JVM when you start tomcat. my start script looks like
if [ -z "$CATALINA_OPTS" ] ; then
CATALINA_OPTS="-Dreporthome=$REPORT_HOME -XdoCloseWithReadPending -Xms256m -Xmn100m -Xmx256m -Xverbosegc:file=/home/webadmin/tomc
at/logs/gc.out"
export CATALINA_OPTS
echo start: CATALINA_OPTS set to $CATALINA_OPTS
fi
the XdoCloseWithReadPending is important becuase the mod_jk and http listening threads do not exit correctly and your JVM will not stop following a shutdown.
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2003 09:51 AM
05-01-2003 09:51 AM
Re: HPWS Tomcat won't stay running.
Have not used the actual HPWS version as I need to use 4.1.18 but I would imagine that one of two things is happening
1) your kernel params are not set properly and your JVM is throwing a Hotspot exception. We got this alot until we set our kernel similar to
maxusers 512
nproc 2068
max_thread_proc 3000
nkthread 6000
nfile 30000
maxfiles 2048
maxfiles_lim 2048
ncallout 6000
maxdsiz 2063835136
maxdsiz was the most important.
2) your need to set the heap properly for your JVM when you start tomcat. my start script looks like
if [ -z "$CATALINA_OPTS" ] ; then
CATALINA_OPTS="-Dreporthome=$REPORT_HOME -XdoCloseWithReadPending -Xms256m -Xmn100m -Xmx256m -Xverbosegc:file=/home/webadmin/tomc
at/logs/gc.out"
export CATALINA_OPTS
echo start: CATALINA_OPTS set to $CATALINA_OPTS
fi
the XdoCloseWithReadPending is important becuase the mod_jk and http listening threads do not exit correctly and your JVM will not stop following a shutdown.
Jeff
1) your kernel params are not set properly and your JVM is throwing a Hotspot exception. We got this alot until we set our kernel similar to
maxusers 512
nproc 2068
max_thread_proc 3000
nkthread 6000
nfile 30000
maxfiles 2048
maxfiles_lim 2048
ncallout 6000
maxdsiz 2063835136
maxdsiz was the most important.
2) your need to set the heap properly for your JVM when you start tomcat. my start script looks like
if [ -z "$CATALINA_OPTS" ] ; then
CATALINA_OPTS="-Dreporthome=$REPORT_HOME -XdoCloseWithReadPending -Xms256m -Xmn100m -Xmx256m -Xverbosegc:file=/home/webadmin/tomc
at/logs/gc.out"
export CATALINA_OPTS
echo start: CATALINA_OPTS set to $CATALINA_OPTS
fi
the XdoCloseWithReadPending is important becuase the mod_jk and http listening threads do not exit correctly and your JVM will not stop following a shutdown.
Jeff
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP