<?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: Find memory leak in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719619#M62727</link>
    <description>If you are concerned about memory bottleneck, the main thing is to check the memory report in Glance.  Look for page outs and deactivations.  Some page outs are normal, but the cumulative amount should be very small.  Any deactivations would indicate memory pressure.&lt;BR /&gt;&lt;BR /&gt;Based on your swapinfo output, it doesn't look like you have any memory pressures.</description>
    <pubDate>Wed, 08 May 2002 14:50:51 GMT</pubDate>
    <dc:creator>Mladen Despic</dc:creator>
    <dc:date>2002-05-08T14:50:51Z</dc:date>
    <item>
      <title>Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719612#M62720</link>
      <description>I want to findout a possible memory leak. I've glance but not sure how to pinpoint reason for memory leak.&lt;BR /&gt;&lt;BR /&gt;My swapinfo -ta gives this out put &lt;BR /&gt;            Kb      Kb      Kb   PCT  START/      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev     1048576       0 1048576    0%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;dev     8884224       0 8884224    0%       0       -    1  /dev/vg07/lvol2&lt;BR /&gt;reserve       - 1314528 -1314528&lt;BR /&gt;memory  6501260 2696656 3804604   41%&lt;BR /&gt;total   16434060 4011184 12422876   24%       -       0    -&lt;BR /&gt;&lt;BR /&gt;Why is that alway reserved being used and both DEV is 0% used..&lt;BR /&gt;&lt;BR /&gt;My swapinfo -ft shows 100 % used&lt;BR /&gt;           Kb      Kb      Kb   PCT      Kb      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;total         0       0       0  100%       -       0    -&lt;BR /&gt;&lt;BR /&gt;Could some one explain me this please. &lt;BR /&gt;ENV: N-Class, HPUX 1100, Oracle 8i&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 13:21:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719612#M62720</guid>
      <dc:creator>Rushank</dc:creator>
      <dc:date>2002-05-08T13:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719613#M62721</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;See&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://bizforums.itrc.hp.com/cm/QuestionAnswer/1,,0x08830559ff7cd4118fef0090279cd0f9,00.html" target="_blank"&gt;http://bizforums.itrc.hp.com/cm/QuestionAnswer/1,,0x08830559ff7cd4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;              Steve steel</description>
      <pubDate>Wed, 08 May 2002 13:31:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719613#M62721</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2002-05-08T13:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719614#M62722</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Device swap is not being used because you've got swapmem_on set to 1 and there's plenty of spare memory.&lt;BR /&gt;&lt;BR /&gt;Your server has 8Gb RAM and you need about 4Gb of swap space.&lt;BR /&gt;&lt;BR /&gt;swapinfo -ft displays information about filesystem swap, which you're not using. 0 of 0 could be argued as being 100% but I reckon that's a bugette in swapinfo.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;John</description>
      <pubDate>Wed, 08 May 2002 13:35:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719614#M62722</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2002-05-08T13:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719615#M62723</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;FYI. This is useful for leaks&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;#&lt;BR /&gt;# Show processes sorted by size of core image&lt;BR /&gt;#&lt;BR /&gt;# Usage:&lt;BR /&gt;#    psram [ quantity ]&lt;BR /&gt;#&lt;BR /&gt;# where quantity is the top RAM processes to show (default is 20)&lt;BR /&gt;#&lt;BR /&gt;set -u&lt;BR /&gt;if [ $# -gt 0 ]&lt;BR /&gt;then&lt;BR /&gt;   TOPPROCS=$1&lt;BR /&gt;else&lt;BR /&gt;   TOPPROCS=20&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;MYNAME=$(basename $0)&lt;BR /&gt;TEMPFILE=/var/tmp/$MYNAME.$$&lt;BR /&gt;trap `rm -f $TEMPFILE &amp;gt; /dev/null 2&amp;gt;&amp;amp;1` 0 1 2 3 15&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o ruser,vsz,pid,args &amp;gt; $TEMPFILE&lt;BR /&gt;head -1 $TEMPFILE&lt;BR /&gt;DASH5="-----"&lt;BR /&gt;DASH25="$DASH5$DASH5$DASH5$DASH5$DASH5"&lt;BR /&gt;echo "$DASH5---- $DASH5- $DASH5 $DASH25$DASH25"&lt;BR /&gt;grep -v "VSZ COMMAND" $TEMPFILE      | cut -c -78      | sort -rn -k2      | head -${TOPPROCS}&lt;BR /&gt;rm $TEMPFILE &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;BR /&gt;#### END OF SCRIPT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;                 Steve Steel</description>
      <pubDate>Wed, 08 May 2002 13:37:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719615#M62723</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2002-05-08T13:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719616#M62724</link>
      <description>To monitor for memory leaks, you can log the output from:&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o ruser,sz,vsz,pid,ppid,args | grep -v '^RUSER' | sort -nr -k2,2 | head -10&lt;BR /&gt;&lt;BR /&gt;Perhaps you can set up a cron job that appends this output to a log file every 5 minutes or so.&lt;BR /&gt;&lt;BR /&gt;Or, you can run:&lt;BR /&gt;&lt;BR /&gt;nohup glance -adviser_only -syntax /opt/perf/examples/adviser/proc_mem_leak -j 300 &amp;gt; glance.out &amp;amp;&lt;BR /&gt;&lt;BR /&gt;You can also modify a copy of the syntax file /opt/perf/examples/proc_mem_leak if you want to customize the output.&lt;BR /&gt;&lt;BR /&gt;The percentage of swap reservations is relevant only if you suspect that it might reach 100%.  Basically, every process needs to *reserve* swap whether or not it needs to use it.  If there is no swap left to reserve, the process won't start.  Unless you see this percentage getting closer to something like 90%, you need not be concerned.  But it is important to monitor.&lt;BR /&gt;&lt;BR /&gt;The output from swapinfo -ft is not relevant in your case because you have no file system configured as swap.  The percentage of 100% is confusing because it is really 0 Kb used out of 0 Kb available.&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 13:43:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719616#M62724</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T13:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719617#M62725</link>
      <description>&lt;BR /&gt;Thanks for all quick responces. &lt;BR /&gt;&lt;BR /&gt;OK, My worry is one my back up process (Oracle Hotbackup) worse over time until system is rebooted. I was thinking could be some memory leak or bottle neck.&lt;BR /&gt;&lt;BR /&gt;Well, now swapinfo output.&lt;BR /&gt;&lt;BR /&gt;Is that mean I don't have any issue with swap memory..? &lt;BR /&gt;John..&lt;BR /&gt;yes..swap_mem is ON. Is it OK..? or Do I need it changed.&lt;BR /&gt;I was glancing glance on the system table  screen  the nbuff is little confusing. I've dbc_max set to 8 and dbc_min is 5. nbuff is set to 0. &lt;BR /&gt;System Table                 Available        Used      Utilization      High(%)&lt;BR /&gt;--------------------------------------------------------------------------------&lt;BR /&gt;Proc Table (nproc)               4000          606           15           15&lt;BR /&gt;File Table (nfile)              20010        18012           90           90&lt;BR /&gt;Shared Mem Table (shmmni)         128           10            8            8&lt;BR /&gt;Message Table (msgmni)            128            2            2            2&lt;BR /&gt;Semaphore Table (semmni)          128           27           21           21&lt;BR /&gt;File Locks (nflocks)              900          395           44           44&lt;BR /&gt;Pseudo Terminals (npty)           512            7            1            1&lt;BR /&gt;Buffer Headers (nbuf)              na       222222           na           na&lt;BR /&gt;&lt;BR /&gt;Steve,&lt;BR /&gt;From your script it gives list of the process with big VSZ. How do you pinpoint what is wrong.&lt;BR /&gt;&lt;BR /&gt;Mladen,&lt;BR /&gt;&lt;BR /&gt;I am collecting advisory output. And getting some disk bottleneck but not the memory bottleneck&lt;BR /&gt;&lt;BR /&gt;I'll assign points shortly.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 14:01:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719617#M62725</guid>
      <dc:creator>Rushank</dc:creator>
      <dc:date>2002-05-08T14:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719618#M62726</link>
      <description>Rushank,&lt;BR /&gt;&lt;BR /&gt;The memory line in the output from 'swapinfo -ta' is about pseudo-swap.  You turn pseudo-swap on by setting the kernel parameter swapmem_on=1.&lt;BR /&gt;You can turn pseudo-swap off by setting swapmem_on=0.&lt;BR /&gt;&lt;BR /&gt;In your case, pseudo-swap is at 41% utilization, which is ok.  However, if this value gets close to 100%, you should be concerned.  Should that happen, and if you have plenty of disk space, just disable pseudo-swap and enable more device swap.  Indeed, we have had problems with Sybase using up pseudo-swap.  The recommendation from both HP and Sybase was to disable pseudo-swap.  HP recommended the same for Oracle database.&lt;BR /&gt;&lt;BR /&gt;The Glance adviser syntax /opt/perf/examples/proc_mem_leak is designed for detecting memory leaks.  It won't detect memory bottlenecks.&lt;BR /&gt;If you want to monitor a specific process, you can create your own adviser syntax  and run it as mentioned before (use PROCESS LOOP)  See /opt/perf/paperdocs/gp/C/adviser.pdf for more examples and details.&lt;BR /&gt;&lt;BR /&gt;It seems to me that you should increase nfile.  I would double it, at least.&lt;BR /&gt;&lt;BR /&gt;The nbuf is a bit confising because you have configured dynamic buffer cache.  It shouldn't be a concern.  The only thing I would change is dbc_max_pct and dbc_min_pct.  With dbc_max_pct equal to 8, you buffer cache may grow up to 8% of your physical memory.  So, if you have 8Gb, your buffer cache may grow up to 640 Mb.  HP recommends that you don't need more than about 300 Mb of buffer cache.  Ultimately, you want to monitor GBL_MEM_CACHE_HIT_PCT&lt;BR /&gt;in Glance.  If you lower dbc_max_pct and this metric is at least 80-90% on average,&lt;BR /&gt;it is ok.  The moment GBL_MEM_CACHE_HIT_PCT starts show significat decrease, you should then increase dbc_max_pct.  But the way things look right now, it is too high.&lt;BR /&gt;&lt;BR /&gt;Here is some info on Buffer Headers (from /opt/perf/paperdocs/gp/C/metrics.txt):&lt;BR /&gt;&lt;BR /&gt;TBL_BUFFER_HEADER_AVAIL&lt;BR /&gt;--------------------&lt;BR /&gt;The configured number of headers pointing to buffers in the file&lt;BR /&gt;system buffer cache.  This can be set by the nbuf kernel&lt;BR /&gt;configuration parameter.  nbuf is used to determine the maximum&lt;BR /&gt;total number of buffers on the system.&lt;BR /&gt;&lt;BR /&gt;These are used to manage the buffer cache, which is used for all&lt;BR /&gt;block IO operations.  When nbuf is zero, this value depends on&lt;BR /&gt;the bufpages size of memory (see System Administration Tasks&lt;BR /&gt;manual).  A value of "na" indicates either a dynamic buffer cache&lt;BR /&gt;configuration, or the nbuf kernel parameter has been left&lt;BR /&gt;unconfigured and allowed to float with the bufpages parameter.&lt;BR /&gt;&lt;BR /&gt;This is not a maximum available value in a fixed buffer cache&lt;BR /&gt;configuration.  Instead, it is the initial configured value.  The&lt;BR /&gt;actual number of used buffer headers can grow beyond this initial&lt;BR /&gt;value.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;TBL_BUFFER_HEADER_USED&lt;BR /&gt;--------------------&lt;BR /&gt;The number of buffer headers currently in use.&lt;BR /&gt;&lt;BR /&gt;This dynamic value will rarely change once the system boots.&lt;BR /&gt;During the system bootup, the kernel allocates a large number of&lt;BR /&gt;buffer headers and the count is likely to stay at that value&lt;BR /&gt;after the bootup completes.  If the value increases beyond the&lt;BR /&gt;initial boot value, it will not decrease.  Buffer headers are&lt;BR /&gt;allocated in kernel memory, not user memory, and therefore, will&lt;BR /&gt;not decrease.&lt;BR /&gt;&lt;BR /&gt;This value can exceed the available or configured number of&lt;BR /&gt;buffer headers in a fixed buffer cache configuration.&lt;BR /&gt;&lt;BR /&gt;This metric is updated every 30 seconds or the sampling interval,&lt;BR /&gt;whichever is greater.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 14:43:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719618#M62726</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T14:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719619#M62727</link>
      <description>If you are concerned about memory bottleneck, the main thing is to check the memory report in Glance.  Look for page outs and deactivations.  Some page outs are normal, but the cumulative amount should be very small.  Any deactivations would indicate memory pressure.&lt;BR /&gt;&lt;BR /&gt;Based on your swapinfo output, it doesn't look like you have any memory pressures.</description>
      <pubDate>Wed, 08 May 2002 14:50:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719619#M62727</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T14:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719620#M62728</link>
      <description>&lt;BR /&gt;Mladen,&lt;BR /&gt;&lt;BR /&gt;Here is the memory report. &lt;BR /&gt;Cumm page/out increases every time screen refreshes.&lt;BR /&gt;&lt;BR /&gt;                                                          MEMORY REPORT                                                Users=   10&lt;BR /&gt;Event         Current   Cumulative   Current Rate   Cum Rate   High Rate&lt;BR /&gt;--------------------------------------------------------------------------------&lt;BR /&gt;Page Faults      1461        12043       324.6      272.4       704.8&lt;BR /&gt;Page In           555         4450       123.3      100.6       265.9&lt;BR /&gt;Page Out            1           13         0.2        0.2         0.7&lt;BR /&gt;KB Paged In       0kb          0kb         0.0        0.0         0.0&lt;BR /&gt;KB Paged Out      4kb         52kb         0.8        1.1         3.0&lt;BR /&gt;Reactivations       0            0         0.0        0.0         0.0&lt;BR /&gt;Deactivations       0            0         0.0        0.0         0.0&lt;BR /&gt;KB Deactivated    0kb          0kb         0.0        0.0         0.0&lt;BR /&gt;VM Reads            0            0         0.0        0.0         0.0&lt;BR /&gt;VM Writes           2           25         0.4        0.5         1.5&lt;BR /&gt;&lt;BR /&gt;Total VM : 999.6mb   Sys Mem  : 376.9mb   User Mem:  3.04gb   Phys Mem:  8.00gb&lt;BR /&gt;Active VM: 309.8mb   Buf Cache: 655.4mb   Free Mem:  3.95gb&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 15:51:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719620#M62728</guid>
      <dc:creator>Rushank</dc:creator>
      <dc:date>2002-05-08T15:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719621#M62729</link>
      <description>This is normal.&lt;BR /&gt;You have plenty of free memory (almost 4 Gb).&lt;BR /&gt;There is no memory bottleneck.&lt;BR /&gt;&lt;BR /&gt;I would set dbc_max_pct=4&lt;BR /&gt;and dbc_min_pct=1</description>
      <pubDate>Wed, 08 May 2002 16:14:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719621#M62729</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T16:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719622#M62730</link>
      <description>I'll make kernel changes during our maintainance window. But my problem of hotbackup getting worse over time and why a reboot fixes it. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 17:28:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719622#M62730</guid>
      <dc:creator>Rushank</dc:creator>
      <dc:date>2002-05-08T17:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719623#M62731</link>
      <description>Rushank,&lt;BR /&gt;&lt;BR /&gt;Which symptoms are telling you that your hotbackup is getting worse over time?  What exectly is the process name?  Just 'hotbackup' ?&lt;BR /&gt;&lt;BR /&gt;Regards ...   Mladen</description>
      <pubDate>Wed, 08 May 2002 18:06:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719623#M62731</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T18:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719624#M62732</link>
      <description>&lt;BR /&gt;We run a perl  script to take backup of our oracle database &lt;BR /&gt;This script actually takes each table spaces and copy it over to a different filesystem and then  compress it. This normally runs for five hours but gradualy this gets worse and backup runs for more than 12 hours. This is the only concern I've Otherwise system responce is quite good. I want to know what is casuing this. Reboot fixes this problem for some time but then slowly time taken for backup increases. It's really become a mistry to  me solve this. I'm collecting all kind of information but not been able to make out who is the culprit.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 18:47:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719624#M62732</guid>
      <dc:creator>Rushank</dc:creator>
      <dc:date>2002-05-08T18:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719625#M62733</link>
      <description>Rushank,&lt;BR /&gt;&lt;BR /&gt;The only obvious reason at this point would be the kernel parameter 'nfile'.  After a system reboot, the number of open files will increase over time (especially if you have other runaway processes).  So, at some point, it is possible that your "hotbackup" is hitting the maximum number of open files (as set by nfile) and so, it is unable to open more files.  It is possible that it has to wait for another process to close files.&lt;BR /&gt;&lt;BR /&gt;Your current nfile utilization is at 90%.  I think you should definitely increase the value of this kernel parameter.&lt;BR /&gt;&lt;BR /&gt;There are other kernel parameters that should be checked (Glance only shows a few).  If there are any recommendations from Oracle, I would check those first.&lt;BR /&gt;&lt;BR /&gt;If this doesn't help, try posting your perl script on the forum.&lt;BR /&gt;&lt;BR /&gt;Mladen&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 19:42:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719625#M62733</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T19:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719626#M62734</link>
      <description>If I recall correctly, there should be a message in /var/adm/syslog/syslog.log &lt;BR /&gt;if a process is unable to open a file due to 100% nfile utilization.  So, check the syslog!&lt;BR /&gt;&lt;BR /&gt;But, in any case, do increase the value of nfile.&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 19:48:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719626#M62734</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T19:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719627#M62735</link>
      <description>NOTE:&lt;BR /&gt;&lt;BR /&gt;By default, nfile depends on maxusers via a formula:&lt;BR /&gt;&lt;BR /&gt;NFILE=16*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL)&lt;BR /&gt;&lt;BR /&gt;In most cases, you just need to increase the value of maxusers.  The value of nfile will be increased automatically.</description>
      <pubDate>Wed, 08 May 2002 20:02:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719627#M62735</guid>
      <dc:creator>Mladen Despic</dc:creator>
      <dc:date>2002-05-08T20:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Find memory leak</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719628#M62736</link>
      <description>&lt;BR /&gt;Yes. looks like nfile needs a raise in value!. &lt;BR /&gt;I'll do it next maintainance window.&lt;BR /&gt;Thanks for all the help. &lt;BR /&gt;Attached is the script. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 May 2002 20:45:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/find-memory-leak/m-p/2719628#M62736</guid>
      <dc:creator>Rushank</dc:creator>
      <dc:date>2002-05-08T20:45:19Z</dc:date>
    </item>
  </channel>
</rss>

