- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: General queries
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
06-08-2009 12:48 AM
06-08-2009 12:48 AM
General queries
2.What does this error message indicates: “file table full" in syslog.log?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 12:59 AM
06-08-2009 12:59 AM
Re: General queries
Dear Ragesh
Please give more details regards file table full in syslog. Only this error message u are recieving or with any other error.
thanks and regards
Sajjad Sahir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 01:03 AM
06-08-2009 01:03 AM
Re: General queries
sar -v 2 10
to look at system table every 2 seconds, for 10 iterations... adjust to suit your needs.
If file table is full, you should look at the setting for the nfile kernel parameter.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 01:07 AM
06-08-2009 01:07 AM
Re: General queries
Ragesh u have to increase the value of the NFILE kernel parameter. You can use sam to increase this parameter.
thanks and regards
Sajjad Sahir
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 01:50 AM
06-08-2009 01:50 AM
Re: General queries
>>.How will you check hp-ux system table usage?
use sar -v
#glance -t
#kcusage nfile( 11iv2 onwords ) use -m for monthly ,-h for hourly report
eg(kcusage -m nfile)
Rgds
Johnson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 02:08 AM
06-08-2009 02:08 AM
Re: General queries
gpm/glance check high water mark.
nfile
maxuprc
These two kernel parameters are set too low.
Use kctune or kmtune to change them.
You can also use sam kernel configuration to make the change, compile the kernel, which involves booting the system.
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
06-08-2009 02:31 AM
06-08-2009 02:31 AM
Re: General queries
>>1.How will you check hp-ux system table usage?
To see the system table use
#sar -v 2 10
>>2.What does this error message indicates: â file table full" in syslog.log?
Unix uses a file table to mediate between the files that users have opened and the inodes. For each user, there is an u_ofile array with references to fields in the file table. The file table then contains references to inodes. Thus, if the user issues a read command, then this call is translated in kernel mode first to a look-up in the u-ofile array, then to the inode, then, depending on the size of the file and the offset of the read within the file, directly or indirectly to a data block.
For more information see the below link
http://www.cse.scu.edu/~tschwarz/coen152_05/Lectures/UnixFileSystem.html
Suraj