<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: nfile is maxing out in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669595#M50552</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Download and install lsof, this might help you,&lt;BR /&gt;&lt;BR /&gt;lsof for 10.20 and 11&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;lsof for 11i,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/B.11.11/" target="_blank"&gt;http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/B.11.11/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
    <pubDate>Thu, 21 Feb 2002 20:48:56 GMT</pubDate>
    <dc:creator>Sanjay_6</dc:creator>
    <dc:date>2002-02-21T20:48:56Z</dc:date>
    <item>
      <title>nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669590#M50547</link>
      <description>We have a nbox with 11i, around 1 am the nfile table is filling up, we have sar -v's and ps -ef,I had up'd nfile from 8000 to 16000, so now it took 45 minutes from 1 am to fill up, tonight I am going to use glance to see what process is opening all those files, any other ideas with glance, or other ways to catch what is filling up the nfile table.&lt;BR /&gt;nproc is fine it doesn't grow at all.&lt;BR /&gt;                 Thanks,&lt;BR /&gt;                   Joe&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Feb 2002 20:29:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669590#M50547</guid>
      <dc:creator>joe clark</dc:creator>
      <dc:date>2002-02-21T20:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669591#M50548</link>
      <description>The nfile table grows from 4000 to 16000 in that 45 minutes.</description>
      <pubDate>Thu, 21 Feb 2002 20:31:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669591#M50548</guid>
      <dc:creator>joe clark</dc:creator>
      <dc:date>2002-02-21T20:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669592#M50549</link>
      <description>Hi Joe:&lt;BR /&gt;&lt;BR /&gt;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.&lt;BR /&gt;&lt;BR /&gt;Regards, Clay&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Feb 2002 20:36:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669592#M50549</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-02-21T20:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669593#M50550</link>
      <description>Clay is right, lsof is the tool you need.  You can generate a list of open files by process, then use awk (or cut|uniq -c) to generate a count of the number of files opened by each process.&lt;BR /&gt;&lt;BR /&gt;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.</description>
      <pubDate>Thu, 21 Feb 2002 20:42:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669593#M50550</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2002-02-21T20:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669594#M50551</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Clay and Alan are right. lsof is a good tool for find out the root cause of the problem.&lt;BR /&gt;&lt;BR /&gt;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).&lt;BR /&gt;&lt;BR /&gt;Check here: &lt;A href="http://hpux.asknet.de/hppd/hpux/Sysadmin/lsof-4.55/" target="_blank"&gt;http://hpux.asknet.de/hppd/hpux/Sysadmin/lsof-4.55/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Feb 2002 20:48:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669594#M50551</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-02-21T20:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669595#M50552</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Download and install lsof, this might help you,&lt;BR /&gt;&lt;BR /&gt;lsof for 10.20 and 11&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.55/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;lsof for 11i,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/B.11.11/" target="_blank"&gt;http://www.mirrors.wiretapped.net/security/host-security/lsof/binaries/hpux/B.11.11/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Feb 2002 20:48:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669595#M50552</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2002-02-21T20:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: nfile is maxing out</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669596#M50553</link>
      <description>To add more to above:&lt;BR /&gt;&lt;BR /&gt;To sort all the proceses by memory size: &lt;BR /&gt;# UNIX95= ps -eo vsz,ruser,args | sort -rn | more &lt;BR /&gt;&lt;BR /&gt;If any of the processes are pushing more than 50 megs, run SAM &amp;amp; change maxdsiz to double or even more (requires a reboot).&lt;BR /&gt;&lt;BR /&gt;.. if sar -v 5 5 get high values on proc-sz, inod-sz &amp;amp; file-sz u might want to increase maxusers the following is the impact of maxusers value :&lt;BR /&gt;&lt;BR /&gt;root:&amp;gt; more /stand/build/tune.h |grep -i maxuser&lt;BR /&gt;#define MAXUSERS     any_value&lt;BR /&gt;#define NCLIST  (100+16*MAXUSERS)&lt;BR /&gt;#define NFILE   (16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))&lt;BR /&gt;#define NINODE  ((NPROC+16+MAXUSERS)+32+(2*NPTY))&lt;BR /&gt;#define NPROC   (20+8*MAXUSERS)&lt;BR /&gt;&lt;BR /&gt;g`d luck&lt;BR /&gt;t+-&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Feb 2002 23:00:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/nfile-is-maxing-out/m-p/2669596#M50553</guid>
      <dc:creator>T. M. Louah</dc:creator>
      <dc:date>2002-02-21T23:00:09Z</dc:date>
    </item>
  </channel>
</rss>

