<?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: memory VMSTAT in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136030#M154022</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;please have a look at this:&lt;BR /&gt;&lt;BR /&gt;Overview of Process-Management Parameters &lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.ProcessParmsOverview.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.ProcessParmsOverview.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Armin</description>
    <pubDate>Thu, 04 Dec 2003 08:37:37 GMT</pubDate>
    <dc:creator>Armin Feller</dc:creator>
    <dc:date>2003-12-04T08:37:37Z</dc:date>
    <item>
      <title>memory VMSTAT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136029#M154021</link>
      <description>I see in the vmstat output that the free memory is 1300000 but my process need more , i mean that he take all the memory till free memory is 0 and crash&lt;BR /&gt;Which kernel parameter i need to increasefor this &lt;BR /&gt;I have 10G RAM 4CPU  &lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 04 Dec 2003 08:31:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136029#M154021</guid>
      <dc:creator>Yair Goldel</dc:creator>
      <dc:date>2003-12-04T08:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: memory VMSTAT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136030#M154022</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;please have a look at this:&lt;BR /&gt;&lt;BR /&gt;Overview of Process-Management Parameters &lt;BR /&gt;&lt;A href="http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.ProcessParmsOverview.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/939/KCParms/KCparam.ProcessParmsOverview.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Armin</description>
      <pubDate>Thu, 04 Dec 2003 08:37:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136030#M154022</guid>
      <dc:creator>Armin Feller</dc:creator>
      <dc:date>2003-12-04T08:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: memory VMSTAT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136031#M154023</link>
      <description>The free column you see in vmstat is pages. The free memory you have is (1300000+*4096)MB.&lt;BR /&gt;&lt;BR /&gt;Now this is the free memory available to you.&lt;BR /&gt;&lt;BR /&gt;If you start your program/application which needs more than this program/application will use whatever is available at that point in time. after that swapping will start and that wont be good.&lt;BR /&gt;&lt;BR /&gt;If you want to reserve the memory for your program/application you can think of using PRM.(Process Resource Manager)</description>
      <pubDate>Thu, 04 Dec 2003 08:41:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136031#M154023</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2003-12-04T08:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: memory VMSTAT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136032#M154024</link>
      <description>HP-UX is a virtual memory machine, so as long as your process can address more memory, and you have plenty of swap space, you won't have any problems. The amount of free memory has nothing to do with whether a program can request (and address) the memory it needs.&lt;BR /&gt; &lt;BR /&gt;First, the kernel parameter maxdsiz limits the size that a single program can request for a local data area. The default value is far too small (67megs), so change that parameter to 900 megs as a start.&lt;BR /&gt; &lt;BR /&gt;Second, is your program 64bit or just a simple 32bit program. You can tell by using the file command on the program:&lt;BR /&gt; &lt;BR /&gt;file /dir_name/program_name&lt;BR /&gt; &lt;BR /&gt;If the result has the letters: ELF then it is a 64bit program and is constrained only by maxdsiz_64 and the total amount of virtual memory (swap and RAM). However, if ELF does not appear, there are MANY restrictions on this 32bit program. maxdsiz is one restriction, another is the type of executable. If your program needs more than 900 megs, you'll need to use chatr to allow quadrant1+2 bonding.&lt;BR /&gt; &lt;BR /&gt;Third: if the program is crashing due to shared memory (not local), you'll need to check on the programs requirements for shared memory segments (how big, how many, etc) and set the appropriate kernel parameters. If the program is 64bit, then you'll only be constrained by swap and RAM. But if it is a 32bit program, things get quite complicated due to map limitations and shared memory area fragmentation.&lt;BR /&gt; &lt;BR /&gt;Read the two documents in /usr/share/doc called mem_mgt and proc_mgt and for 11.00 and higher, take a look at memory windows in the same directory.</description>
      <pubDate>Thu, 04 Dec 2003 08:49:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/memory-vmstat/m-p/3136032#M154024</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-12-04T08:49:25Z</dc:date>
    </item>
  </channel>
</rss>

