- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- nfile is maxing out
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
02-21-2002 12:29 PM
02-21-2002 12:29 PM
nfile is maxing out
nproc is fine it doesn't grow at all.
Thanks,
Joe
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:31 PM
02-21-2002 12:31 PM
Re: nfile is maxing out
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:36 PM
02-21-2002 12:36 PM
Re: nfile is maxing out
I would download a copy of lsof from any of the HP-UX Porting Centre's. It is really the weapon of choice in this case. If will list all the open files and the process that has them open - just what you need. Because you say this is happening as 0100, my pschic, Miss Cleo, tells me to look for backup programs. She also suggests that you do a crontab -l and look for batch jobs.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:42 PM
02-21-2002 12:42 PM
Re: nfile is maxing out
It shows all the signs of a process spinning out of control. It might be backup related. I have also seen strange recursion in mail or print queues causing this kind of symptom, but lsof will nail down the culprit for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:48 PM
02-21-2002 12:48 PM
Re: nfile is maxing out
Clay and Alan are right. lsof is a good tool for find out the root cause of the problem.
Also check for any cron jobs running at the specific time (crontab -l). Any other processes or applications running at the specific time ( check all log files).
Check here: http://hpux.asknet.de/hppd/hpux/Sysadmin/lsof-4.55/
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 12:48 PM
02-21-2002 12:48 PM
Re: nfile is maxing out
Download and install lsof, this might help you,
lsof for 10.20 and 11
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/
lsof for 11i,
http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/B.11.11/
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2002 03:00 PM
02-21-2002 03:00 PM
Re: nfile is maxing out
To sort all the proceses by memory size:
# UNIX95= ps -eo vsz,ruser,args | sort -rn | more
If any of the processes are pushing more than 50 megs, run SAM & change maxdsiz to double or even more (requires a reboot).
.. if sar -v 5 5 get high values on proc-sz, inod-sz & file-sz u might want to increase maxusers the following is the impact of maxusers value :
root:> more /stand/build/tune.h |grep -i maxuser
#define MAXUSERS any_value
#define NCLIST (100+16*MAXUSERS)
#define NFILE (16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))
#define NINODE ((NPROC+16+MAXUSERS)+32+(2*NPTY))
#define NPROC (20+8*MAXUSERS)
g`d luck
t+-