- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: High CPU utilization, what to look for?
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
Discussions
Discussions
Discussions
Forums
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
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
тАО01-18-2001 11:35 AM
тАО01-18-2001 11:35 AM
Jeff
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-18-2001 12:08 PM
тАО01-18-2001 12:08 PM
Re: High CPU utilization, what to look for?
You don't indicate whether the high CPU utilization is accompanied by a relatively high run-queue depth or not. You also need to determine whether the high activity is a user or system component. Given the environment you describe, it could simply be a particular user doing a particular query.
Various tools like 'sar', 'vmstat', 'glance' [in particular!], 'top' and 'uptime' are very helpful here.
I would suggest you step through the guidelines in documents #S3100002312A, #S3100002312B and #S3100002312C ("Sys Adm: determining the cause of system performance problems") to begin to get a clear picture.
'glance' is available for a trial basis on the Application CDs. It is otherwise as chargeable licensed product, but very worth the cost.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-18-2001 12:15 PM
тАО01-18-2001 12:15 PM
Re: High CPU utilization, what to look for?
ps -e | grep -v TIME | awk '{for (i=1;i<=NF;i++) if ( i != 2 ) printf("%10s ",$i);print "";}'| sort -rk 2,2 | head
that will give you the top cpu total time users. and if any of these have a parent process id of 1 that would be something to look at.
see what are the top cpu process currently running via top or glance. see what the biggest users are performing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-18-2001 02:41 PM
тАО01-18-2001 02:41 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-18-2001 08:11 PM
тАО01-18-2001 08:11 PM
Re: High CPU utilization, what to look for?
Start with top, find the process, then find the user, and go from there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-18-2001 08:28 PM
тАО01-18-2001 08:28 PM
Re: High CPU utilization, what to look for?
Even though all 6 systems are running oracle, there are probably different databases on each, with different sizes, different indexes, different queries, and perhaps different software accessing Oracle.
I'm working on a K460 (4CPU's, 8GB RAM, 8GB swap) now with 70 users averaging 90% CPU. The culprit is the way users are accesing oracle (through MS ODBC drivers...)
If oracle is the problem, it will be immediately apparent with TOP that oracle is eating the CPU. If it is not oracle, then use vmstat, top and sar if your cheap to find out what is killing you. If you have a budgett, invest in Glance! Awsome program well worth the $$ :)
Regards,
Shannon