- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to got the top disk I/O process
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
тАО08-31-2008 10:32 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2008 10:35 PM
тАО08-31-2008 10:35 PM
Re: how to got the top disk I/O process
you can use
#iostat
#sar -d
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-31-2008 11:58 PM
тАО08-31-2008 11:58 PM
Re: how to got the top disk I/O process
If my memory serves me right glance can help you but it's a part of OpenView and isn't free :(
Or you can read appropriate kernel varialbles and report them to your monitoring system, but this approach requires C/C++ programming.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2008 12:04 AM
тАО09-01-2008 12:04 AM
Re: how to got the top disk I/O process
you can use glanceplus and perfview utility.
Or
Refer manpages for below commands
iostat
sar -d
Thanks
SKR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2008 06:00 AM
тАО09-01-2008 06:00 AM
Re: how to got the top disk I/O process
Thanks in advance for your kind feedback.
But, the really want to know is to find out which unix process use the most of disk I/O resource ? Have any command to find out it ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2008 08:33 PM
тАО09-01-2008 08:33 PM
Re: how to got the top disk I/O process
This would be glance or gpm.
Besides sar -d, you could use sar -u to see if it is memory manager I/O.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-01-2008 11:00 PM
тАО09-01-2008 11:00 PM
SolutionI think its a difficult to find it which process is using more disk. but u can apply some logic like..
1)first check iostat o/p for a disk which is heavily utilised suppose c0t0d0
2)lvdisplay -v |grep "c0t0d0"
3)u will get the idea like this disk is a member of this lv
4)use #bdf |grep
5)then from lv u will get the idea regarding File system name
6)then check which are the users are using that FS
#fuser -cu
7)you will get the pid
8)then grep that pid like
ps -ef |grep
9)it will show the which proccess is running and owner of that proceess.
=========================================
so doing aboe activity u will get idea
Regards
Prashant
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-02-2008 12:51 AM
тАО09-02-2008 12:51 AM
Re: how to got the top disk I/O process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-03-2008 08:41 AM
тАО09-03-2008 08:41 AM
Re: how to got the top disk I/O process
One of my senior gave me this command to check the top five processes by vsz (core image size, in kbytes):
# UNIX95= ps -ef -o "vsz,pid,args" | sort -rn -k1 | head -n 5
regards,
Vikas