- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: help: unusually high system load vs. user load...
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
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
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-2002 07:43 AM
тАО02-28-2002 07:43 AM
help: unusually high system load vs. user load. how to debug/fix?
i'm working on a hp-ux 9000 v11.0 (64bit) server with 5 cpu's. the current load avg on the box is 1.67 (5min avg). however, when i watch a top session, i notice that the system loads are unusually high for this server and was wondering if hp-ux had a way of finding the culprit other than just my usual "ps -ef" and basic unix tools?
i've attached an example of the "top" summary for the cpu's.
thanks in advance everyone.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2002 07:45 AM
тАО02-28-2002 07:45 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2002 07:53 AM
тАО02-28-2002 07:53 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
The best option is to use Glanceplus software from HP. It will defenitely help you to find out each and every thing you needed on this issue. This is not a freeware, so you have to purchase it from HP ( you will get a free trial copy though ). Tha administration is also easy.
Check www.docs.hp.com for more information on how Glance works ! You can also check other options like perfview, sar, vmstat, netstat, PRM etc.
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2002 08:00 AM
тАО02-28-2002 08:00 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
Can only concur glance since your machine is well occupied.
Check your syslog and swapinfo -ta
You may need to free some memory by reducing dbc_max_pct from its default
see kmtune -l
A quick and dirty one is
UNIX95= ps -e -o pcpu -o ruser -o args|sort -nr|grep -v %CPU|head -10
This will give you the top 10 cpu users.
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2002 08:06 AM
тАО02-28-2002 08:06 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
If rewriting the programs is not an option, then replacing your CPU's with higher speed CPU's may improve things.
However, your top list shows a mostly idle machine with higher than normal system overhead. This overhead may indeed be due to orphan processes or programs that do a lot of polling, perhaps on the LAN.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2002 08:09 AM
тАО02-28-2002 08:09 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
Look at your top CPU users in detail and see which ones are system processes. Just identifying which processes are running high might give you a good idea of the problem.
And, of course, the fact that you still have ample idel time across all CPUs means whatever is going on is unlikely to be causing any CPU based performance issues.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-28-2002 08:13 AM
тАО02-28-2002 08:13 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-06-2002 11:43 AM
тАО03-06-2002 11:43 AM
Re: help: unusually high system load vs. user load. how to debug/fix?
We had a very similar situation when we upgraded our version of sybase from 11.03 to 11.9.2. Turns out that the optimizer had changed and so we had table scans going on. There really wasn't any way to tell from the operating system, except for the fact that there was high system load vs user load. We ended up having to set some flags within sybase and had to re-write some code.
Good luck.