- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vmunix: file: table is full --secret formula for ...
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
07-20-2005 02:53 AM
07-20-2005 02:53 AM
But, how do I judge to what?
I have glance running, but not very familar with it.
glance -t shows:
System Table Available Used Utilization High(%)
--------------------------------------------------------------------------------
Proc Table (nproc) 2020 351 17 18
File Table (nfile) 4619 3780 82 83
Shared Mem Table (shmmni) 1024 12 1 1
Message Table (msgmni) 664 4 1 1
Semaphore Table (semmni) 10000 21 0 0
File Locks (nflocks) 2600 65 3 3
Pseudo Terminals (npty) 200 1 1 1
Buffer Headers (nbuf) 840 840 100 100
I read once that if you have lsof you can also judge how to set the kernel.
I was told to increase MAXUSERS since that will increase nfile.
Also to increase MAXFILES
Is there a formula, script, to run to figure out what it should be?
How to use glance and lsof to full potential?
HP 11.00 with oracle 8.1.7
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 03:10 AM
07-20-2005 03:10 AM
Re: vmunix: file: table is full --secret formula for configureing kernel?
it is the first time for me to hear that and I will stay on this thread to know more about this news (I refer to use lsof and glance to judge how to set the kernel).
Meanwhile surely you should increase nfile or maxusers. The most important thing is increase nfile to solve the "vmunix: file: table is full ".
Best regards,
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 03:15 AM
07-20-2005 03:15 AM
Re: vmunix: file: table is full --secret formula for configureing kernel?
Parameter: nfile
Value: (16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))
Default: (16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))
I need to figure out what I need to increase it to.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 03:21 AM
07-20-2005 03:21 AM
Re: vmunix: file: table is full --secret formula for configureing kernel?
Every system has its own set of requirements depending on what it does. If I were you I would scan through the unix installation document which came with your Oracle database. Usually, they give you guidelines of how the kernel parameters needs to be set.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 03:31 AM
07-20-2005 03:31 AM
Re: vmunix: file: table is full --secret formula for configureing kernel?
My answer, then, would be to look at the actual number it is set to now and double it.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 07:56 AM
07-20-2005 07:56 AM
Re: vmunix: file: table is full --secret formula for configureing kernel?
looking
File Table (nfile) 4619 3780 82 83
I would say to double or triple the value of nfile. Considerations are always about what your system does. For example I see 3780/4619, that should see even by
sar -v 5 5
In file-sz column you will find
how much in use/what is the limit of nfile
Hope this helps you.
Best regards,
Fabio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2005 09:14 AM
07-20-2005 09:14 AM
SolutionMAXFILES is special: it governs how a program is allowed to behave. It allows up to MAXFILES number of files per program. A second parameter: MAXFILES_LIM is the absolute maximum number of files open per program. Using a system call (setrlimit) or changing ulimit allows you to increase or decrease this value for your current session. But the maximum is set by MAXFILES_LIM. Some vendors insist on making MAXFILES=MAXFILES_LIM=1024 or some ridiculous number when their programs never open more a few dozen files. This is a fence for runaway programs, that's all. Most programs only open a few files at the same time.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 02:21 AM
08-18-2005 02:21 AM