<?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 descriptor ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233239#M172502</link>
    <description>Here is the kernel document. Happy reading ... (yawn)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html" target="_blank"&gt;http://www.docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html&lt;/A&gt;</description>
    <pubDate>Mon, 29 Mar 2004 21:09:07 GMT</pubDate>
    <dc:creator>Michael Tully</dc:creator>
    <dc:date>2004-03-29T21:09:07Z</dc:date>
    <item>
      <title>file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233237#M172500</link>
      <description>What is a file descriptor ? Users are asking&lt;BR /&gt;if they maxing out on file descriptors. Is there a kernel parm(s) that reflects file descriptors ?</description>
      <pubDate>Mon, 29 Mar 2004 20:58:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233237#M172500</guid>
      <dc:creator>Jerry L. Sims</dc:creator>
      <dc:date>2004-03-29T20:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233238#M172501</link>
      <description>&lt;BR /&gt;The actual parameters your after are 'maxfiles' and 'maxfiles_lim'. These define 'hard' and 'soft'limits. The shell uses 'ulimit -a' to see the actual limit. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Mar 2004 21:08:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233238#M172501</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-03-29T21:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233239#M172502</link>
      <description>Here is the kernel document. Happy reading ... (yawn)&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html" target="_blank"&gt;http://www.docs.hp.com/hpux/onlinedocs/939/KCParms/KCparams.OverviewAll.html&lt;/A&gt;</description>
      <pubDate>Mon, 29 Mar 2004 21:09:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233239#M172502</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2004-03-29T21:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233240#M172503</link>
      <description>Hello Tully,&lt;BR /&gt;&lt;BR /&gt;  Is there a way to tell if a user is getting close to that limit ?</description>
      <pubDate>Mon, 29 Mar 2004 21:13:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233240#M172503</guid>
      <dc:creator>Jerry L. Sims</dc:creator>
      <dc:date>2004-03-29T21:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233241#M172504</link>
      <description>c file descriptor 0 refers to standard input, usually keyboad (device file of kb)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;c file descriptor 1 refers to standard output, usually the terminal (device file fo terminal)&lt;BR /&gt;&lt;BR /&gt;c file descriptor 2 refers to standard error, the file to which the shell writes the error message.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Mar 2004 21:13:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233241#M172504</guid>
      <dc:creator>nibble</dc:creator>
      <dc:date>2004-03-29T21:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233242#M172505</link>
      <description>The "ulimit -a" command delivered the following :&lt;BR /&gt;ulimit -a&lt;BR /&gt;time(seconds)        unlimited&lt;BR /&gt;file(blocks)         unlimited&lt;BR /&gt;data(kbytes)         1048576&lt;BR /&gt;stack(kbytes)        8192&lt;BR /&gt;memory(kbytes)       unlimited&lt;BR /&gt;coredump(blocks)     0&lt;BR /&gt;nofiles(descriptors) 2048&lt;BR /&gt;&lt;BR /&gt;The "2048" matches the "maxfiles &amp;amp; maxfiles_lim". Are these global values for all users? When I executed the "ulimit -a"&lt;BR /&gt;from a users ID it did not display the:&lt;BR /&gt;"nofiles(descriptors) 2048". How do I tell if a user gets anywhere near that limit?</description>
      <pubDate>Mon, 29 Mar 2004 21:30:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233242#M172505</guid>
      <dc:creator>Jerry L. Sims</dc:creator>
      <dc:date>2004-03-29T21:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: file descriptor ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233243#M172506</link>
      <description>File descriptors are small integers in the range of 0-n. In the old days of UNIX, n was 19; then 63; and now its determined by the tunable maxfiles. This limits the number of file descriptor for a process. The global limit nfile limits the total number of open files. If 20 users have the same file open, that counts as 20 for nfile purposes. File descriptors are returned by the open(), pipe(), and creat() system calls. The are lower-level abstracts than their *FILE counterparts returned by fopen() and popen().&lt;BR /&gt;It is very important to note the errno set by the failing process (indicated by well-written programs by returning errno as $?). The result code will tell you which file limit you are hitting.&lt;BR /&gt;&lt;BR /&gt;Man 2 open for details.&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Mar 2004 21:39:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/file-descriptor/m-p/3233243#M172506</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-03-29T21:39:05Z</dc:date>
    </item>
  </channel>
</rss>

