<?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: file table overflow in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636500#M42519</link>
    <description>Thanks for the help.  This worked.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#cp /stand/system /stand/system.prev &lt;BR /&gt;#/usr/lbin/sysadm/system_prep -s /stand/system &lt;BR /&gt;#kmtune -s nfile="new value" &lt;BR /&gt;#mk_kernel -o /stand/vmunix &lt;BR /&gt;#kmupdate &lt;BR /&gt;#shutdown -r now &lt;BR /&gt;&lt;BR /&gt;Mark</description>
    <pubDate>Wed, 02 Jan 2002 16:31:37 GMT</pubDate>
    <dc:creator>MarkW_1</dc:creator>
    <dc:date>2002-01-02T16:31:37Z</dc:date>
    <item>
      <title>file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636492#M42511</link>
      <description>I am getting a file table overflow error with a new application on an l2000 OS 11.0.&lt;BR /&gt;Any ideas?</description>
      <pubDate>Fri, 28 Dec 2001 16:41:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636492#M42511</guid>
      <dc:creator>MarkW_1</dc:creator>
      <dc:date>2001-12-28T16:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636493#M42512</link>
      <description>run a sar -v 1,  your output will look something like this&lt;BR /&gt;&lt;BR /&gt;11:46:21 text-sz  ov  proc-sz  ov  inod-sz  ov  file-sz  ov &lt;BR /&gt;11:46:22   N/A   N/A 910/6344  0  3272/3272  0  4824/9498  0&lt;BR /&gt;&lt;BR /&gt;if the file-sz column is close, you are running out of space in the open file table.  You will either need to up this kernel param (nfile), or clean up procs that are using open files.  You can find out by getting lsof.</description>
      <pubDate>Fri, 28 Dec 2001 16:45:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636493#M42512</guid>
      <dc:creator>Jeff Machols</dc:creator>
      <dc:date>2001-12-28T16:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636494#M42513</link>
      <description>Hi Mark,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Check out your sar -v 2 20 and look for file-sz and ov next to it. ov indicates that number of times the 'nfile' kernel parameter got overflown.&lt;BR /&gt;&lt;BR /&gt;The vendors usually provide benchmarking values&lt;BR /&gt;for the kernel parameters. If not, you can consider doubling the value. Do not increase too much but keep a trend of nfile. I would calculate the dependencies and increase it according to the forcast needs. For the timebeing, you can double the value if it is the default.&lt;BR /&gt;&lt;BR /&gt;You can use SAM to do this for you. Otherwise, you can follow the following process.&lt;BR /&gt;&lt;BR /&gt;#cp /stand/system /stand/system.prev&lt;BR /&gt;#/usr/lbin/sysadm/system_prep -s /stand/system&lt;BR /&gt;#kmtune -s nfile="new value"&lt;BR /&gt;#mk_kernel -o /stand/vmunix&lt;BR /&gt;#kmupdate&lt;BR /&gt;#shutdown -r now&lt;BR /&gt;&lt;BR /&gt;-Sri&lt;BR /&gt;</description>
      <pubDate>Fri, 28 Dec 2001 16:49:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636494#M42513</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2001-12-28T16:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636495#M42514</link>
      <description>Hi Mark&lt;BR /&gt;&lt;BR /&gt;Do a sar -v 2 10 and check for the nfile parameter , if it is saturated then u need to bump that parameter using SAM. Also may be if you see the dmesg or the syslog file u have HP UX error No 23.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Fri, 28 Dec 2001 16:52:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636495#M42514</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2001-12-28T16:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636496#M42515</link>
      <description>The perspective opposite the kernel parameter settings is to find whether the application is single or multi-threaded; and if the former if it is correctly closing files after processing queries/updates, and if the later if it is utilizing shared memory for multiple sub-processes and does not close files associated with that shared memory segment until all of the processes accessing that memory have stopped, and if the vendor has a fix/work-around for either case.&lt;BR /&gt;&lt;BR /&gt;--&lt;BR /&gt;mark</description>
      <pubDate>Fri, 28 Dec 2001 16:52:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636496#M42515</guid>
      <dc:creator>Mark Greene_1</dc:creator>
      <dc:date>2001-12-28T16:52:32Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636497#M42516</link>
      <description>I am getting this group of messages when processing the new kernel.&lt;BR /&gt;&lt;BR /&gt;Cannot build a kernel using /usr/sbin/config.  The standard output of ^ | |&lt;BR /&gt;| || the command is shown below:                                             | |&lt;BR /&gt;|-|| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 119: error    |-|&lt;BR /&gt;|C|| 1000: Unexpected symbol: "queue_t".                                     |d|&lt;BR /&gt;|-|| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 127: error    |-|&lt;BR /&gt;| || 1000: Unexpected symbol: "mblk_t".                                      | |&lt;BR /&gt;| || (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 148: error    | |&lt;BR /&gt;|+|| 1000: Unexpected symbol: "mblk_t".                                      | |&lt;BR /&gt;|||| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 149: error    | |&lt;BR /&gt;|||| 1000: Unexpected symbol: "mblk_t".                                      | |&lt;BR /&gt;|||| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 119: error    | |&lt;BR /&gt;|||| 1573: Type of "pt_srq" is undefined due to an illegal declaration.      | |&lt;BR /&gt;|||| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 119: error    | |&lt;BR /&gt;|||| 1578: Size of struct or union member is unknown.                        | |&lt;BR /&gt;|||| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 127: error    | |&lt;BR /&gt;|||| 1573: Type of "pt_qioctl" is undefined due to an illegal declaration.   | |&lt;BR /&gt;|||| (Bundled) cc: "/usr/conf/space.h.d/../strtio/pty.h", line 127: error  v | |&lt;BR /&gt;|||--------------------------------------------------------------------</description>
      <pubDate>Fri, 28 Dec 2001 17:38:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636497#M42516</guid>
      <dc:creator>MarkW_1</dc:creator>
      <dc:date>2001-12-28T17:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636498#M42517</link>
      <description>try changing the value through SAM, that will build the kernel and reboot for you</description>
      <pubDate>Fri, 28 Dec 2001 17:44:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636498#M42517</guid>
      <dc:creator>Jeff Machols</dc:creator>
      <dc:date>2001-12-28T17:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636499#M42518</link>
      <description>I am using sam to make the change.&lt;BR /&gt;&lt;BR /&gt;I changed maxuser from 32&amp;gt;96, which increased&lt;BR /&gt;nfile, nproc</description>
      <pubDate>Fri, 28 Dec 2001 17:50:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636499#M42518</guid>
      <dc:creator>MarkW_1</dc:creator>
      <dc:date>2001-12-28T17:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: file table overflow</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636500#M42519</link>
      <description>Thanks for the help.  This worked.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#cp /stand/system /stand/system.prev &lt;BR /&gt;#/usr/lbin/sysadm/system_prep -s /stand/system &lt;BR /&gt;#kmtune -s nfile="new value" &lt;BR /&gt;#mk_kernel -o /stand/vmunix &lt;BR /&gt;#kmupdate &lt;BR /&gt;#shutdown -r now &lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Wed, 02 Jan 2002 16:31:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-table-overflow/m-p/2636500#M42519</guid>
      <dc:creator>MarkW_1</dc:creator>
      <dc:date>2002-01-02T16:31:37Z</dc:date>
    </item>
  </channel>
</rss>

