- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Unable to increase nfile and other kernel params a...
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-24-2008 05:25 PM
06-24-2008 05:25 PM
Unable to increase nfile and other kernel params after update-ux
vmunix: file: table is full
I have tried to increase nfile - rebuild the kernel with mk_kernel and reboot, but the new value is not applied.
I have also attempted to change the maxusers, but the same issue applies.
Any suggestions?
Thanks.
Belinda
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 06:23 PM
06-24-2008 06:23 PM
Re: Unable to increase nfile and other kernel params after update-ux
You used kmtune(1m) then mk_kernel?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 07:01 PM
06-24-2008 07:01 PM
Re: Unable to increase nfile and other kernel params after update-ux
how did you set the parameters? did you use SAM? You can change the kernel parameter easily from SAM.
the calculation of nfile parameter is '(15 * NPROC + 2048)'.
Note that the recommended setting for nproc, to which nfile refers in its formula, is '4096'
Do not increase nfile by a small amount as this will require many, many reboots. There is no practical limit for nfile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 07:45 PM
06-24-2008 07:45 PM
Re: Unable to increase nfile and other kernel params after update-ux
Error: One or more tunable parameters violates an interdependency rule. SAM expects the following expression(s) to be true:
semmnu <= (nproc-4)
I have also tried to change it via kmtune:
kmtune -s nfile=1200
kmtune -q nfile
Parameter Current Dyn Planned Module Version
===============================================================================
nfile 910 - 1200
Then run mk_kernel and then rebooted - but the Planned value is never applied.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 07:54 PM
06-24-2008 07:54 PM
Re: Unable to increase nfile and other kernel params after update-ux
>>Error: One or more tunable parameters violates an interdependency rule. SAM expects the following expression(s) to be true:
semmnu <= (nproc-4)
the error is easily guide you to the findings. if you wanna change parameter nfile, it depends on nproc parameter value and the calculation I stated above.
and nproc value must be set as stated above error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 07:55 PM
06-24-2008 07:55 PM
Re: Unable to increase nfile and other kernel params after update-ux
semmnu <= (nproc-4)
You may want to fix this and retry sam. What are the values of those two?
1200 is probably way too small for nfile.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 08:19 PM
06-24-2008 08:19 PM
Re: Unable to increase nfile and other kernel params after update-ux
nproc is currently set to (20+8*maxusers)
So I tried to increase maxusers and still get the error: semmnu <= nproc-4
So it seems to be a vicious circle at the moment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 08:28 PM
06-24-2008 08:28 PM
Re: Unable to increase nfile and other kernel params after update-ux
1. semmnu
2. maxusers
3. nrpoc
4. nfile
it'd be highlighten more precisely.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2008 08:47 PM
06-24-2008 08:47 PM
Re: Unable to increase nfile and other kernel params after update-ux
semmnu was not set to nproc-4, it was a number not the formula.
I had not changed this parameter, but once I set it to this formula I was able to set maxusers and the other params ok.
I was interpreting the error message incorrectly.
Thanks for the assistance. Points posted.