- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX 11.0 syslog.log message
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
08-09-2001 09:24 AM
08-09-2001 09:24 AM
baandev vmunix: file: table is full
At first I thought this must be an Informix issue. However, I was able to find the text of the message in /stand/vmunix by doing a strings.
My question is, what the heck is this? Haven't received any of these messages yet today. Translation; Doesn't seem to be a bug, I'm just curious.
Regards,
Terry
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 09:31 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 09:40 AM
08-09-2001 09:40 AM
Re: HP-UX 11.0 syslog.log message
Looks like your kernel 'nfile' (maximum number of open files, system-wide) has been exceeded. You can track this with 'glance' using the [t]able option, or by running:
# sar -v 10 10
Look at the columns labeled "file-sz" and "ov" to the right of it. This is the current, maximum and number of times overflowed.
To increase this use SAM -> Kernel Configuration. Since 'nfile' is depenendent on 'nproc' and 'maxusers', I'd adjust 'maxusers' and let 'nfile' adjust based on that. For more information see:
http://docs.hp.com/hpux/onlinedocs/os/KCparams.OverviewAll.html
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 10:48 AM
08-09-2001 10:48 AM
Re: HP-UX 11.0 syslog.log message
I set up a spreadsheet to calculate nfile based on the values of maxusers, nproc, npty, and nstrptr. The formula looks like this:
nfile=(16*(nproc+16+maxusers)/10)+32+2*(npty+nstrpty)
nfile =(16*(276+16+32)/10+32+2*(60+60)
nfile=790.4
The actual value of nfile is 910!? This a vanilla copy of HP-UX 11.0 that was installed in June. The document seems to say that there is a direct relationship between maxusers, nproc, npty, and nstrpty. But on all of the systems I have here (5) the value of nfile seems to be a number pulled out of the air. For example one of the systems should have a nfile of 1491 but is actually 19300!
Any thoughts?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 11:08 AM
08-09-2001 11:08 AM
Re: HP-UX 11.0 syslog.log message
If you look further at the kernel document you'll see it notes:
"maxusers does not itself determine the size of any structures in the system; instead, the default value of other global system parameters depend on the value of maxusers. When other configurable parameter values are defined in terms of maxusers, the kernel is made smaller and more efficient by minimizing wasted space due to improperly balanced resource allocations...Rather than varying each configurable parameter individually, it is easier to specify certain parameters using a formula based on the maximum number of expected users (for example, nproc = (20+8*MaxUsers)). Thus, if you increase the maximum number of users on your system, you only need to change the maxusers parameter."
Thus, again, I'd inflate 'maxusers' to a value that yields an 'nfile' ceiling that fits your needs (as determined by 'sar' and/or by 'glance' metrics).
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2001 12:01 PM
08-09-2001 12:01 PM
Re: HP-UX 11.0 syslog.log message
Regards
Terry