- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- nfile count
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
10-01-2003 04:52 AM
10-01-2003 04:52 AM
nfile count
The nfile count on one of my N Class servers seems to be continually increasing. Does anyone know what could be causing this problem? Are there any tools that can track down what process is causing this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:02 AM
10-01-2003 05:02 AM
Re: nfile count
Rgds,
JL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:06 AM
10-01-2003 05:06 AM
Re: nfile count
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:06 AM
10-01-2003 05:06 AM
Re: nfile count
as formula based it depends upon nproc,maxusers,npty,nstrpty,nstrtel also.
That can be due to increase in users, number of processess and opened files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:07 AM
10-01-2003 05:07 AM
Re: nfile count
http://forums1.itrc.hp.com/service/forums/parseCurl.do?CURL=%2Fcm%2FQuestionAnswer%2F1%2C%2C0xa55b2d88ce9cd711abdc0090277a778c%2C00.html&admit=716493758+1065027833667+28353475
and this one
http://forums1.itrc.hp.com/service/forums/parseCurl.do?CURL=%2Fcm%2FQuestionAnswer%2F1%2C%2C0xc8c9b34415f0184b9221dd9ebc1b47ac%2C00.html&admit=716493758+1065028010565+28353475
Rgds,
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 05:31 AM
10-01-2003 05:31 AM
Re: nfile count
You could have a cron run every hour or so and run something like:
#!/usr/bin/sh
date >> /tmp/lsof.log
lsof | sort >> /tmp/lsof.log
Look for a particular process in which the number of open files continuously grows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2003 06:00 AM
10-01-2003 06:00 AM
Re: nfile count
It is not unusual to require tens of thousands of files to be open at the same time (might be the same file though...nfile is a list of all open files). The average open file count is 5-25 per process so if nproc allows 500 processes, then nfile should be 2500 to 125,000. IN some large server applications with thousands of logins, I have seen nproc=20,000 and nfile=800,000 with about 70% usage in both tables. HP-UX is very scalable.
Bill Hassell, sysadmin