- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file system full and inodes
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-18-2003 07:26 AM
08-18-2003 07:26 AM
Can someone explain this to me? Do I need to reboot each time? we are running 11.i.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 07:30 AM
08-18-2003 07:30 AM
Re: file system full and inodes
Questions, questions, questions:
Who determined this was an inode issue? How did they determine that? What type of file system is it? HFS? VxFS? If it's VxFS (or Journalled) it's not likely to be an inode issue.
As far as why the utilization dropped after reboot, it's probably because there was a process holding a file open. After the reboot, the process is gone and the space is reclaimed.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 07:31 AM
08-18-2003 07:31 AM
Re: file system full and inodes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 07:34 AM
08-18-2003 07:34 AM
Re: file system full and inodes
The reason the file system came up as only 1% used after you rebooted is probably because there were files that had been rm'ed but still had a process or processes accessing them. When you rebooted, those processes went away, thus allowing the file to finally be removed.
When you rm a file, it is not actually removed until any and all processes that are accessing it finish and go away.
You don't need to reboot every time this occurrs, just make sure, via lsof or fuser before you rm the file, that whatever processes are accessing the files you want to remove finish or somehow are made to go away.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 07:51 AM
08-18-2003 07:51 AM
Re: file system full and inodes
After reboot those processes got killed and it released the space. That is why you are seeing space after reboot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 10:58 AM
08-18-2003 10:58 AM
Re: file system full and inodes
thanks,
s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 11:04 AM
08-18-2003 11:04 AM
Re: file system full and inodes
Yes, since it's a VxFS file system, the inodes are allocated dynamically. That means that there is no hard set limit, as is the case with HFS file systems, and it is highly improbably that there was any "inode issue". As has been stated, the process which had all those "rm'd" files open has to terminate before the space occupied by those files will be released. Re-booting was the anwer in this case, but finding and terminating the offending process would be just as effective in the future.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 11:10 AM
08-18-2003 11:10 AM
Re: file system full and inodes
Do this:
mkfs -F vxfs -m /dev/vg01/lvol3 (substituting the correct device node for the filesystem in question). The -m option directs mkfs to display the command line arguments used to create the filesystem BUT be absolutely certain to specify -m so a new filesystem will not be created. You should see a value "ninode=unlimited" or "ninode=0"; these indicate dynamic inode allocation; any other non-zero value indicates static inode allocation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2003 11:11 AM
08-18-2003 11:11 AM
SolutionDo this:
mkfs -F vxfs -m /dev/vg01/lvol3 (substituting the correct device node for the filesystem in question). The -m option directs mkfs to display the command line arguments used to create the filesystem BUT be absolutely certain to specify -m so a new filesystem will not be created. You should see a value "ninode=unlimited" or "ninode=0"; these indicate dynamic inode allocation; any other non-zero value indicates static inode allocation.
Man mkfs_vxfs for details.