- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- nfile question
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-02-2004 05:59 AM
09-02-2004 05:59 AM
We are having to increase the nfile parameter every few months or so. We currently increase it by bumping up MAXUSERS. Currently the formula for nfile is MAXUSERS*70 + 2048. MAXUSERS = 1500
Is there any implications to continually raising this parameter? Should I be going about it a different way?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2004 06:14 AM
09-02-2004 06:14 AM
SolutionI would be interested in why it's increasing first. Aside from that, however, it's not a big deal. Quoting from SAM's help on configurable parameters:
" It is the number of slots in the file descriptor table. Be generous with this number because the required memory is minimal, and not having enough slots restricts system processing capacity. "
As far as how it's specified, I tend to avoid the formulas because you end up increasing values you may not have intended (or wanted) to. Your formula works out to 107048. We have ours hard coded to 114548. I suspect we could double that without any ill effects.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2004 06:14 AM
09-02-2004 06:14 AM
Re: nfile question
I do not use formulae at all. That's a pretty old way of doing and it is not applicable anymore in my view. For ex., increasing MAXUSERS may unnecessarily increase other parameters such as ninode which you may not want.
You can hardcode the value of nfile you want to set.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2004 06:21 AM
09-02-2004 06:21 AM
Re: nfile question
He takes out those formulas in the kernel that raise other parameters based on maxusers.
I'm going to do the same. Makes sense.
Note: nfile may need to be raised, under this scenario take out the forumula and put in a number.
Also check maxuprc
That is the max number of processes for a given user. That defaults to 75 and I commonly need to bnump that up to 200 to accommodate complex Oracle products.
Either change will require a kernel compile and boot.
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
09-02-2004 06:29 AM
09-02-2004 06:29 AM
Re: nfile question
It increases due to the fact that the application is continually being rolled out to more users. They have added 350 users since the 1st of April, the last time I increased it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2004 06:50 AM
09-02-2004 06:50 AM
Re: nfile question
The main reason that you need to increase NFILE as new users come online is that *everything* in 'NIX is a file & that includes the socket connections created by every Oracle connection.
My 2 cents,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2004 02:09 PM
09-02-2004 02:09 PM
Re: nfile question
Bill Hassell, sysadmin