- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: CPU hangup for Java aplication using Tomcat
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
12-03-2004 05:09 AM
12-03-2004 05:09 AM
CPU hangup for Java aplication using Tomcat
java version "1.4.2.03"
HP-UX hp1 B.11.11 U 9000/800
hpuxwsTOMCAT.TOMCAT A.1.0.01.02 4.1.12 base
Two CPU 650 Mhz
4 GB RAM
My problem is when I check the process with top, I saw the CPU 100%, and the server only running Tomcat.
I'dont know if you know if I need to modify some parameters of kernel o ndd parameters??
Thanks for your help.
Carlos
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 05:29 AM
12-03-2004 05:29 AM
Re: CPU hangup for Java aplication using Tomcat
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 05:30 AM
12-03-2004 05:30 AM
Re: CPU hangup for Java aplication using Tomcat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 05:35 AM
12-03-2004 05:35 AM
Re: CPU hangup for Java aplication using Tomcat
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 05:38 AM
12-03-2004 05:38 AM
Re: CPU hangup for Java aplication using Tomcat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 05:43 AM
12-03-2004 05:43 AM
Re: CPU hangup for Java aplication using Tomcat
http://www.hp.com/products1/unix/java/patches/index.html
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2004 06:57 AM
12-03-2004 06:57 AM
Re: CPU hangup for Java aplication using Tomcat
Next, download and install lsof if you don't already have it:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.73/
run lsof|pg and search for the PID. It should be referencing a tcp port it's listening on or connected to via l0. Next serach the same listing for all occurances of the port number to see if you have more than one process listening or trying to connect on that port.
Finally, run netstat -a|pg and serach for the port number to see if you can determine if there's a client connection to it. You should see the dns name of the system in question, and then you'll know who to go talk to in order to find out what's being run that's eating the system.
mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2004 01:53 PM
12-05-2004 01:53 PM
Re: CPU hangup for Java aplication using Tomcat
This will do all the checking for you and give an idea of what needs to be changed.