- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Web Sites focusing on problems tied to CPU Uti...
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
01-29-2003 09:10 AM
01-29-2003 09:10 AM
"Configuration Considerations" and "Best
Practices" for administrators who need to solve problems that manifest themselves on their systems through HIGH CPU UTILIZATION.
I would like to get examples of how to approach a methodology for solving some of the typical problems on systems that manifest themselves through "high CPU utilization".
I am not looking for help in solving such problems; instead, I am looking for web sites that provide information in this specific area.
I want to get help on the WEB!
Al Balash
al_balash@hp.com
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 09:17 AM
01-29-2003 09:17 AM
Re: Web Sites focusing on problems tied to CPU Utilization
Look for Doc Id: UPERFKBAN00000726 in itrc.hp.com technical knowledge database if the following link does not work.
http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000066375011
This would be my first place to start.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2003 10:40 AM
01-29-2003 10:40 AM
Re: Web Sites focusing on problems tied to CPU Utilization
I need to locate web sites that focus on
"Configuration Considerations" and "Best
Practices" for administrators who need to solve problems that manifest themselves on their systems through HIGH CPU UTILIZATION.
I should have added to these comments that
the WEB site must be one that is not the ITRC.
Many of the customers with whom I work have never heard of the ITRC. Of course, between us, the ITRC is the first URL that I offer them. I push the ITRC as hard as I can!!!
However, I also need some URLs outside of the ITRC.
Al Balash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 08:48 AM
01-30-2003 08:48 AM
Re: Web Sites focusing on problems tied to CPU Utilization
You were right! The ITRC was an excellent place to start. It made me re-think my original course of action. However, I could still use an external website.
ajb
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2003 10:31 AM
01-30-2003 10:31 AM
Re: Web Sites focusing on problems tied to CPU Utilization
Seriously, there is virtually nothing you can do in the kernel to fix a bad program. In a separate window, type the following shell commands:
while :
do
:
done
This little code snippet will consume 100% CPU time. If you have multiple processors in the same computer, run it several times. You can even run 50 copies and watch the time slicing take place as each do-nothing program context switches to another.
That said, here are some additional considerations:
- 100% CPU usage is a good thing since all your processing power is being used instead of being wasted.
- database programs trade off disk I/O for memory+CPU activity, so less disk generally means more CPU (but huge increases in overall performance)
- bad programs may be fixed by revising their configuration or instructions. It's not difficult at all to create horrible SQL statements or to have a badly designed database without adequate indexes.
- If the programs are well-written, then you have to decide: do I need better performance? If so, there are two choices:
. more CPU's so that more copies of the busy program can run at the same time, or
. faster CPUs (ie, upgrade or use a faster machine)
And of course, if the program is not threaded, a single copy cannot maske use of more than 1 CPU.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-14-2003 05:15 AM