- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: What impact if I increase maxfies?
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-20-2000 10:05 PM
09-20-2000 10:05 PM
What impact if I increase maxfies?
What impact if I increase maxfies?
For example, to increase 60(defaults) to 4192.
Does it cause to use mroe memory?
I believe that it does not big implact on machine.
I would like to know whatdoes it implact in our machine.
Our env. is HP-UX L-class server, 4GB memory, 11 GB swap
Thank for nay help...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2000 10:32 PM
09-20-2000 10:32 PM
Re: What impact if I increase maxfies?
Increasing maxfiles will only use a little more memory by the kernel. You will barely notice the extra memory it will use. With 4GB ram your note going to have a problem.
If you want to measure how much extra memory it will use reboot your server, do a swapinfo -mt command and from the memory line the USED figure is locked memory (used by the kernel and shared mem). Increase maxfiles, reboot, again check swapinfo -mt and you will see how much extra memory the kernel is now using. Should hardly be any.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2000 11:44 PM
09-20-2000 11:44 PM
Re: What impact if I increase maxfies?
However, changing it to 2048 just means processes can if required open 2048 files. You may also need to increase nfile as well if all your processes intent opening 2048 files.
However the effect of increasing maxfiles is fairly small. All it does is use 8 bytes for the pointer and then 56 bytes per file.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2000 01:33 AM
09-21-2000 01:33 AM
Re: What impact if I increase maxfies?
You may want to consider increasing maxfiles_lim along with maxfiles. maxfiles_lim sets the hard limit for the number of files a process is allowed to have open simultaneously. maxfiles is the soft limit and can only be increased by a process up to maxfiles_lim. nfile sets the system-wide ceiling for open files. Thus, we could say that:
maxfiles < maxfiles_lim < nfile
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2000 03:38 AM
09-21-2000 03:38 AM
Re: What impact if I increase maxfies?
software called
lsof -> list open files
you can download it for free on the web.
http://software.hp.com
click on the "HP-UX public domain software" link.