- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: vmunix: file: table is full ?
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-14-2001 10:01 AM
09-14-2001 10:01 AM
One of our HPUX boxes is a heavy loaded test machine, sometimes I can only login as root user, all 'su - username' failed, I checked the syslog, there were some entries said " vmunix: file: table is full", after I stopped some applications or reboot the machine, it back to normal again.
So what kernel parameter is(are) related with this system error message?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 10:05 AM
09-14-2001 10:05 AM
Re: vmunix: file: table is full ?
GK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 10:07 AM
09-14-2001 10:07 AM
Solutionhttp://docs.hp.com/hpux/onlinedocs/os/KCparam.Nfile.html
http://docs.hp.com/hpux/onlinedocs/os/KCparams.OverviewAll.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 10:08 AM
09-14-2001 10:08 AM
Re: vmunix: file: table is full ?
That one is 'nfile'; it is also common for 'nproc' to need increasing as well.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 10:09 AM
09-14-2001 10:09 AM
Re: vmunix: file: table is full ?
Looks like you are running out of nfile parameter
Increase the value either using SAM or manually
Will need a reboot
-Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 10:12 AM
09-14-2001 10:12 AM
Re: vmunix: file: table is full ?
Most likely you're running into the nfile kernel parameter limit. This parameter controls the number file handles that the kernel can have open at any given point in time.
You can use sam to set the kernel parameter or use kmtune -s nfile, mk_kernel and kmupdate and reboot the machine.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-14-2001 10:18 AM
09-14-2001 10:18 AM
Re: vmunix: file: table is full ?
My colleagues have pointed you to the kernel parameter and documentation you need to review.
You can use 'sar -v' to monitor critical, kernel tables like 'nfile' by looking at the column "file-sz". This shows the current, maximum and number of times an overflow has occured.
# sar -v 5 10
...will sample every 5-seconds, ten times.
If you have 'glance' you can also track table utilization by toggling the [t] menu.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2002 05:43 PM
01-22-2002 05:43 PM
Re: vmunix: file: table is full ?
thanks