- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- system performance slow
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
10-13-2003 09:45 PM
10-13-2003 09:45 PM
system performance slow
Phy memory 1GB
swapinfo o/p is given below .Can anything be done to improve the performance of the system
[/]#swapinfo
Kb Kb Kb PCT START/ Kb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 1048576 308596 739980 29% 0 - 1 /dev/vg00/lvol2
dev 2048000 311156 1736844 15% 0 - 1 /dev/vg00/lvol10
reserve - 814956 -814956
memory 750232 227808 522424 30%
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 10:02 PM
10-13-2003 10:02 PM
Re: system performance slow
check to see if the physical volume is the same for lvol2 and lvol10. it is best to have them on seperate drives.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 10:15 PM
10-13-2003 10:15 PM
Re: system performance slow
you should not rely on the swapinfo command as the only source of information for determining the reason for bad performance.
Your swapinfo command reports that a portion of memory amounting up to 308596 and 311156 kb of disk space has been swapped. But swapinfo does not update dynamically; you get the max use since last reboot and absolutely no clue as to when!
Swapping should of course be avoided completely, but you should do some more investigation first, e.g. for testing the current memory use, try vmstat. Glance is also a good tool for monitoring how system resources are used.
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 10:29 PM
10-13-2003 10:29 PM
Re: system performance slow
It might be worth doing a "vmstat -S 1" and look at the "si" and "so" columns. "iostat" is good for looking at disk io at a disk device level too.
I think we possibly need more information here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 11:21 PM
10-13-2003 11:21 PM
Re: system performance slow
I sometimes run the following command multiple times to get a "quick and dirty" feel for what is hogging cpu:
ps -ef | cut -c42-80 | sort -nr | head
Hope this helps.
Best regards,
Kent M. Ostby
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-13-2003 11:28 PM
10-13-2003 11:28 PM
Re: system performance slow
REvert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2003 05:11 PM
10-14-2003 05:11 PM
Re: system performance slow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2003 05:46 PM
10-14-2003 05:46 PM
Re: system performance slow
If you find that the swap usage is less and performance bottleneck is there
1.What is the value of the kernel parameters dbc_max_pct.
This defines the buffer cache of the system.This parameter is for dynamic buffer cache enabling parameter.
This is enabled once nbuf=0 and bufpages=0 which define the static buffer cache.
By default the value of dbc_max_pct is 50%.
Bring that down to 300MB ie.30% of your memory,assuming that your memory size is 1Gb.
Also,let us start from here
What is the output of
#sar -u 5 20
check for the columns of
idle%
sys%
user%
wio%
REvert with the output