- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Changing maxfiles_lim
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
02-06-2008 06:19 AM
02-06-2008 06:19 AM
maxfiles_lim 2096 -> want to change to 8096
ninode 3140
nfile 31289
Reason for change:
Processes are running out of file descriptors
My Question:
The request is to change maxfiles_lim to 8096.
But I'm thinking this will effectively be the same as setting maxfiles_lim to 3140.
Because don't you need an inode for each file open? So if you set maxfiles > than ninode anything above the value of ninode wont have effect?
Cheers
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2008 06:57 AM
02-06-2008 06:57 AM
Re: Changing maxfiles_lim
ninode has nothing to do with max files.
Go ahead ame change maxfiles and maxfiles_lim to the new level.
Remove any formula problems that result from this change.
You ninode level is pretty low and should be increased to prevent problems as well.
ninode stands nor number of inodes. Lots of files can go on a single inode.
inodes are disk sections. You can have 100 files open at the same time that happen to set on a single inode.
Hope that helps.
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
02-06-2008 09:26 AM
02-06-2008 09:26 AM
SolutionOn my oracle servers I have them both set to 4096.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2008 09:32 AM
02-06-2008 09:32 AM
Re: Changing maxfiles_lim
Before you change the value of 'ninode' make sure you read this whitepaper:
http://docs.hp.com/en/7779/commonMisconfig.pdf
Your setting may be appropriate for your configuration and increasing it my simply waste memory.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 12:45 AM
02-07-2008 12:45 AM
Re: Changing maxfiles_lim
Anyone know of any articles, forum discussions etc. that discuss resolving performance issues with file descriptors?
I'd like to get more exposure about this issue and what people do to address it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 05:59 AM
02-07-2008 05:59 AM
Re: Changing maxfiles_lim
http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=949603&admit=109447626+1202392664157+28353475
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-07-2008 06:06 AM
02-07-2008 06:06 AM
Re: Changing maxfiles_lim
> Anyone know of any articles, forum discussions etc. that discuss resolving performance issues with file descriptors?
Consider:
Many of the kernel parameters (including those limiting the number of open files) are fences to simply prevent rogue programs from usurping all of a resource.
Fundamental, good programming techniques include closing files when you don't need them.
Regards!
...JRF...