- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Query regarding inode
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
06-22-2004 12:01 AM
06-22-2004 12:01 AM
We have a directory in production machine number of files are increasing and hence the inode value increases. However after a limit the number of files will become constant and then inode value will also not increase.
We want to know what is the maximum limit for inode count and is there any potential danger if the inode value has already reached to a limit like 12 million.
Files in this directory are of very small size (less than 100 bytes) but number of files can increase upto 0.6 million.
Please let us know if there can be a potential issue due to this increasing number of inode value
We get the inode value using the command -
ls -ltr
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 12:17 AM
06-22-2004 12:17 AM
Re: Query regarding inode
Check out the following links:
a) http://www.interex.org/pubcontent/enterprise/nov01/grumann.jsp
b) http://www.samag.com/quest/archive/1999/0592.htm
HTH.
Regards,
Sri Ram
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 12:20 AM
06-22-2004 12:20 AM
Re: Query regarding inode
Check this doc from the ITRC database.
http://www4.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000064129598
Inode Limitation on VxFS w/o Large File Support DocId: UFSKBRC00010611
You can use the
# bdf -i
command to list the number of inodes.
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 12:27 AM
06-22-2004 12:27 AM
Re: Query regarding inode
I think this is what you are looking for. Go thr' the discussion below:
http://forums1.itrc.hp.com/service/forums/bizsupport/questionanswer.do?threadId=279360
Hope that helps.
regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2004 12:46 AM
06-22-2004 12:46 AM
SolutionThe kernel parameter ninode applies only to hfs file systems. (You can take care of this while creating hfs file system)
The vxfs file system creates the inodes dynamically. The kernel tunable vx_ninode is tunable with a patch. Otherwise leave it as 0.
But a word of caution here. Having so many files in a dir will create few problems. If you plan to backup this directory it will slow doen the operation.
ll/tar commands may give error as ARG list too long (controlled by max_arg_list--check getconf man page)
Anil