- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Too many open files : FIFO
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
Discussions
Discussions
Discussions
Forums
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
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
тАО02-15-2005 12:54 PM
тАО02-15-2005 12:54 PM
Too many open files : FIFO
We are running Tomcat which after running for few days start generating 'Too Many open files exceptions'.. We ran lsof when this problem occurs and found a huge number(about 1000) of FIFO files.
Can you provide some info on what these FIFO files are ? Why do they get created ? And basically how to fix this problem.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2005 01:12 PM
тАО02-15-2005 01:12 PM
Re: Too many open files : FIFO
for interprocess communication. They can be created by mkfifo(3C) library call.
- Biswajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2005 01:48 PM
тАО02-15-2005 01:48 PM
Re: Too many open files : FIFO
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2005 01:56 PM
тАО02-15-2005 01:56 PM
Re: Too many open files : FIFO
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2005 02:26 PM
тАО02-15-2005 02:26 PM
Re: Too many open files : FIFO
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-15-2005 02:40 PM
тАО02-15-2005 02:40 PM
Re: Too many open files : FIFO
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-16-2005 12:10 AM
тАО02-16-2005 12:10 AM
Re: Too many open files : FIFO
Is the kernel parameter maxfiles=4096 or just maxfiles_lim=4096? If maxfiles is lower, use ulimit to bump the ulimit -n value to 4096 and then start Tomcat. If that works OK, change the startup script for Tomcat to add the ulimit value permanently. As mentioned, programs can call setrlimit to accomplish this but you may not have any control over the code.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-16-2005 12:46 AM
тАО02-16-2005 12:46 AM
Re: Too many open files : FIFO
In other system, I only can see 1~5 FIFO files.
But in HP-UX will over 1000, it looks the process never release FIFO files. Anyway, I will focus on the patch.
Thanks