<?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 configuration of shared memory .. in Operating System - Tru64 Unix</title>
    <link>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615288#M13308</link>
    <description>Following things has been done from my end ..&lt;BR /&gt;&lt;BR /&gt;1) /sbin/sysconfig -r ipc shm_max=33554432&lt;BR /&gt;&lt;BR /&gt;2) Changed the value from CDE Karnel tuner.&lt;BR /&gt;&lt;BR /&gt;3) added on sysconfigdb also.&lt;BR /&gt;&lt;BR /&gt;Quary :&lt;BR /&gt;&lt;BR /&gt;1) /sbin/sysconfig -s shm_max&lt;BR /&gt;shm_max:loaded and configured&lt;BR /&gt;&lt;BR /&gt;2) /sbin/sysconfig -q ipc shm_max &lt;BR /&gt;showing 33554432&lt;BR /&gt;&lt;BR /&gt;Now if I run ipcs then it is not showing any shared memory.&lt;BR /&gt;&lt;BR /&gt;but if I run /usr/field/shmx -m 33554432 and then run ipcs it is showing shared memory segments.&lt;BR /&gt;&lt;BR /&gt;What needs to be done to automatically run the process during boottime.  &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt;</description>
    <pubDate>Wed, 31 Aug 2005 02:09:25 GMT</pubDate>
    <dc:creator>Siddhartha Das</dc:creator>
    <dc:date>2005-08-31T02:09:25Z</dc:date>
    <item>
      <title>configuration of shared memory ..</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615288#M13308</link>
      <description>Following things has been done from my end ..&lt;BR /&gt;&lt;BR /&gt;1) /sbin/sysconfig -r ipc shm_max=33554432&lt;BR /&gt;&lt;BR /&gt;2) Changed the value from CDE Karnel tuner.&lt;BR /&gt;&lt;BR /&gt;3) added on sysconfigdb also.&lt;BR /&gt;&lt;BR /&gt;Quary :&lt;BR /&gt;&lt;BR /&gt;1) /sbin/sysconfig -s shm_max&lt;BR /&gt;shm_max:loaded and configured&lt;BR /&gt;&lt;BR /&gt;2) /sbin/sysconfig -q ipc shm_max &lt;BR /&gt;showing 33554432&lt;BR /&gt;&lt;BR /&gt;Now if I run ipcs then it is not showing any shared memory.&lt;BR /&gt;&lt;BR /&gt;but if I run /usr/field/shmx -m 33554432 and then run ipcs it is showing shared memory segments.&lt;BR /&gt;&lt;BR /&gt;What needs to be done to automatically run the process during boottime.  &lt;BR /&gt; &lt;BR /&gt;  &lt;BR /&gt;</description>
      <pubDate>Wed, 31 Aug 2005 02:09:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615288#M13308</guid>
      <dc:creator>Siddhartha Das</dc:creator>
      <dc:date>2005-08-31T02:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: configuration of shared memory ..</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615289#M13309</link>
      <description>You have just taken all the necessary steps to allow the maximum size of a shared memory segment to be increased to 33554432(32 MB). However you haven't actually allocated any segments. This is up to an application to do that. The shmx program is a shared memory exercisor that will allocate such a segment for the duration of its run.</description>
      <pubDate>Wed, 31 Aug 2005 03:00:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615289#M13309</guid>
      <dc:creator>Han Pilmeyer</dc:creator>
      <dc:date>2005-08-31T03:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: configuration of shared memory ..</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615290#M13310</link>
      <description>Yes, after setting the shared memory parameters, the application will then create the shared memory segment.&lt;BR /&gt;&lt;BR /&gt;But, isn't too low your shared memory configuration?&lt;BR /&gt;&lt;BR /&gt;For oracle, the default shared memory is 2GB and can be increased to 4GB-16M. It depends also of the available memory on your system.</description>
      <pubDate>Wed, 31 Aug 2005 08:34:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615290#M13310</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-08-31T08:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: configuration of shared memory ..</title>
      <link>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615291#M13311</link>
      <description>&lt;BR /&gt;Just echoing what has been said before:&lt;BR /&gt;&lt;BR /&gt;You have taken all the rigth steps to allow for a 32M shm section to be created by an application, but it is still op to the application to create it wih shmget.&lt;BR /&gt;&lt;BR /&gt;field/smhx is amn excerciser (try with -h) and will create a shm section, but just for its own use and only during its own time&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;What is your application?&lt;BR /&gt;32M seem a little low for shmmax.&lt;BR /&gt;I am used to 2GB give or take 8mb.&lt;BR /&gt;&lt;BR /&gt;If you use Oracle, you may want to run $ORACLE_HOME/bin/maxmem&lt;BR /&gt;&lt;BR /&gt;If you use SAP then you may want to run:&lt;BR /&gt;$DIR_LIBRARY/memlimits&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Aug 2005 10:05:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-tru64-unix/configuration-of-shared-memory/m-p/3615291#M13311</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-08-31T10:05:56Z</dc:date>
    </item>
  </channel>
</rss>

