- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: %IUSED for /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
09-16-2002 01:58 PM
09-16-2002 01:58 PM
%IUSED for /var
Having problem with /var directory. When I vi a file it would complain about not enough space in the device. when I do a bdf its show that its actual space used is on 25% but the %Iused (% of Inode used ) is 100 %. I know its because of the # of file in the /var, but I don't know how to decrease it. I tried deleting somefile, but was hoping if someone knew better ways to solve this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2002 02:11 PM
09-16-2002 02:11 PM
Re: %IUSED for /var
What is probably happening is that when you vi a file, vi makes a copy of it in /var (/var/tmp I believe) and there is probably not enough space available in /var for the copy of the file to succeed.
Compare the size of the file with the space left in /var and if the file is larger than the space left, you have found your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2002 02:23 PM
09-16-2002 02:23 PM
Re: %IUSED for /var
Run iostat to see which of your disks is being utilised the most.
You may run iostat with -t option where t is used for specifying duration.
Also, you may run
sar 1 10
this will give you a output of your io's in use and free and what is causing then to fill up, a application or a system process.
Once you get to know which disk is showing the maximum I/O you may find what volume group it is configured into, and then if there is some database or something loaded on that disk then use "top" command to see a corresponding process. You may cancel or kill that process and you will be raring to go.
Regards,
Anil (Don't forget to assign points if the answers are valuable to you. I might have answered many of your questions, but you haven't been providing points to them. maybe too busy :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2002 02:23 PM
09-16-2002 02:23 PM
Re: %IUSED for /var
If it is a file size issue, and /var is not a JFS system, create a new file system for /var/tmp. This will allow you to have more space available without having to reboot into single user mode.
HTH
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2002 02:38 PM
09-16-2002 02:38 PM
Re: %IUSED for /var
Another good way of verifying what is causing a high I/O utilization can be seen using GlancePlus Monitor.
See if this helps you. You may select Report --> Application List at the initial screen.
That's all i can think of right now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-16-2002 02:39 PM
09-16-2002 02:39 PM
Re: %IUSED for /var
cleanup -c 1
it will commit any patch that has been superceded at least 1 time and will remove all of the saved files in /var/adm/sw... which can be a lot if you have applied patches but never cleaned up. I make it a habit to do this following a new patch series... after about a month of run in to verify that no problems were introduced.... could be very effective for you...
this tool is not on 10.20 (I think)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2002 11:51 PM
09-17-2002 11:51 PM
Re: %IUSED for /var
Tony