- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Disk peak utilization on /var
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
08-19-2008 01:29 AM
08-19-2008 01:29 AM
Disk peak utilization on /var
with glance i view a very frequents peaks to use the internal disk 100%, particularly on lvol8.
how can I understand what the file where are doing all this IO?
I tried to make a fuser files into the /var but that does not helped me to identify the problem.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2008 01:55 AM
08-19-2008 01:55 AM
Re: Disk peak utilization on /var
Add an fuser -cu /var
to your measurement to see what user and processes are using the file system at the time.
You can use lsof to get the process doing the i/o.
The scripts contained here:
http://www.hpux.ws/?p=6
Can probably be modified to get you a look at what jobs are eating a lot of i/o
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2008 03:17 AM
08-19-2008 03:17 AM
Re: Disk peak utilization on /var
Sometime peak usage on var is for only few minutes or seconds as many applications may be writing in some temp files under /var.
As SEP suggested....you run fuser and lsof to find the exact user /app processes doing extensive I/O in /var.
You can better a script to monitor /var file system usage...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2008 06:35 AM
08-19-2008 06:35 AM
Re: Disk peak utilization on /var
lsof /var |sort -unk2 |more
or run fuser on the device name
fuser -u /dev/vg00/lvol8
rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2008 09:14 PM
08-19-2008 09:14 PM
Re: Disk peak utilization on /var
If it is temp files, you may consider using TMPDIR to redirect them elsewhere.
If no changes, then that wasn't it.