- 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
04-15-2003 10:12 PM
04-15-2003 10:12 PM
vmunix: file: table is full
I am receiving "crt0: ERROR couldn't open /usr/lib/dld.sl errno: 000000023" message when I tried to perform any command on a HPUX 11.00 machine.
According to the replies in this forum, it's due to the file table is full and need to increase the "nfile" parameter in kernel.
I also checked the "file-sz" value using sar -v command and found it's true that the number is reaching the limit.
Just wondering before I re-tune the nfile parameter, is there a way for me to find out which processes is causing the number of file open increase so much?
Your help is much appreciated. Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 10:36 PM
04-15-2003 10:36 PM
Re: vmunix: file: table is full
You can get 'lsof' here:
http://hpux.cs.utah.edu/hppd/hpux/Sysadmin/lsof-4.61/
Here are some examples on it's usage.
# lsof -p
To see all the open files associated with a particular command.
# lsof -c midaemon
User name.
# lsof -u
# lsof -u
processes being used via a socket.
# lsof -i tcp:23
# lsof -i udp:123
Is something that has just occurred? WHat is the current setting?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 11:36 PM
04-15-2003 11:36 PM
Re: vmunix: file: table is full
This problem has just occurred recently (2-3 days) ago. When I perform the sar command, I got the following result:
# sar -v 2 5
HP-UX S34KLJ74 B.11.00 U 9000/800 04/16/03
15:15:58 text-sz ov proc-sz ov inod-sz ov file-sz ov
15:16:00 N/A N/A 436/1600 0 2189/8318 0 5299/6583 0
15:16:02 N/A N/A 437/1600 0 2185/8318 0 5305/6583 0
15:16:04 N/A N/A 437/1600 0 2184/8318 0 5305/6583 0
15:16:06 N/A N/A 437/1600 0 2184/8318 0 5305/6583 0
15:16:08 N/A N/A 438/1600 0 2184/8318 0 5315/6583 0
The current setting is:
(35*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))
which is equals to around 6500.
I also downloaded the lsof binary and executed the lsof -u
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 11:53 PM
04-15-2003 11:53 PM
Re: vmunix: file: table is full
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xd97719434a69d711abdc0090277a778c,00.html
Try the one liner that i'd pasted. using lsof, it gives count of files opened by each process. you may sort it in descending order using sort command with -n option.
- ramd.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2003 11:58 PM
04-15-2003 11:58 PM
Re: vmunix: file: table is full
Also this -
sort -n is used for numeric sorting. for sorting in descending order you would use -r option and so the command would be -
$
- ramd.