<?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: Measuring shared memory in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308940#M185201</link>
    <description>Spot my deliberate mistake? ;-)&lt;BR /&gt;&lt;BR /&gt;should be 1048576.0, not 1024000.0.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 18 Jun 2004 06:40:36 GMT</pubDate>
    <dc:creator>Steve Lewis</dc:creator>
    <dc:date>2004-06-18T06:40:36Z</dc:date>
    <item>
      <title>Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308934#M185195</link>
      <description>We have a RP7410 running HPUX 11i. The machine is running out of shared memory which is causing application problems.&lt;BR /&gt;&lt;BR /&gt;Is there a way of looking at the amount of shared memory in use at a given point in time which could be logged over a period of time so I can see how and where it is growing ? Even a percentage used type of measure would be useful. &lt;BR /&gt;&lt;BR /&gt;All help appreciated.&lt;BR /&gt;Simon</description>
      <pubDate>Fri, 18 Jun 2004 03:58:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308934#M185195</guid>
      <dc:creator>Simon R Wootton</dc:creator>
      <dc:date>2004-06-18T03:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308935#M185196</link>
      <description>top command can be used.&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Fri, 18 Jun 2004 04:02:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308935#M185196</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-06-18T04:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308936#M185197</link>
      <description>Hi&lt;BR /&gt;Install the trial glance plus or measureware.&lt;BR /&gt;Also you can try top,vmstat,etc..,&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jun 2004 04:08:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308936#M185197</guid>
      <dc:creator>Shaikh Imran</dc:creator>
      <dc:date>2004-06-18T04:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308937#M185198</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;exist also command&lt;BR /&gt;&lt;BR /&gt;ipcs,&lt;BR /&gt;&lt;BR /&gt;and the option "-b"&lt;BR /&gt;could be useful.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;pg</description>
      <pubDate>Fri, 18 Jun 2004 04:12:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308937#M185198</guid>
      <dc:creator>Piergiacomo Perini</dc:creator>
      <dc:date>2004-06-18T04:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308938#M185199</link>
      <description>What is the application?&lt;BR /&gt;Are you using some database such as Oracle?&lt;BR /&gt;Is the context of shared memory related to Oracle?&lt;BR /&gt;&lt;BR /&gt;sks</description>
      <pubDate>Fri, 18 Jun 2004 04:19:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308938#M185199</guid>
      <dc:creator>Sanjay Kumar Suri</dc:creator>
      <dc:date>2004-06-18T04:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308939#M185200</link>
      <description>Simon,&lt;BR /&gt;&lt;BR /&gt;Put this script below into crontab and run it every so often.  It lists all your shared memory segments with sizes in Kb and Mb.&lt;BR /&gt;&lt;BR /&gt;Steve&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;echo "    ID     Perms        Owner      Size    Creator  Lastpid"&lt;BR /&gt;ipcs -ma | awk '&lt;BR /&gt;function sv(val)&lt;BR /&gt;{&lt;BR /&gt;if (val&amp;gt;=1024000.0) pv=sprintf("%3.2fMb",val/1024000);&lt;BR /&gt;else pv=sprintf("%3.2fKb",val/1024);&lt;BR /&gt;return pv;&lt;BR /&gt;}&lt;BR /&gt;{if(NR&amp;gt;3)printf("%6s  %10s  %8s  %10s  %6s  %6s\n",$2,$4,$6,sv($10),$11,$12)}'&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jun 2004 06:28:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308939#M185200</guid>
      <dc:creator>Steve Lewis</dc:creator>
      <dc:date>2004-06-18T06:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring shared memory</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308940#M185201</link>
      <description>Spot my deliberate mistake? ;-)&lt;BR /&gt;&lt;BR /&gt;should be 1048576.0, not 1024000.0.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Jun 2004 06:40:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/measuring-shared-memory/m-p/3308940#M185201</guid>
      <dc:creator>Steve Lewis</dc:creator>
      <dc:date>2004-06-18T06:40:36Z</dc:date>
    </item>
  </channel>
</rss>

