<?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: Oracle/RedHat6.2 and Kernel Parameters in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505791#M508</link>
    <description>I think you can change the kernel parameter on the fly (but require database restart to take effect).&lt;BR /&gt;&lt;BR /&gt;issue this command as root:&lt;BR /&gt;&lt;BR /&gt;echo 2147483647 &amp;gt; /proc/sys/kernel/shmmax&lt;BR /&gt;&lt;BR /&gt;I use 2^31-1. I suggest you try several value until you get the largest value possible for your server.&lt;BR /&gt;Someone gave me larger value than that, but my server cannot accept it and I start divide the value by two. If the new value ca not be accepted, I divide it again by two, and so on.&lt;BR /&gt;&lt;BR /&gt;You know if the value is accepted by issuing this command:&lt;BR /&gt;&lt;BR /&gt;cat /proc/sys/kernel/shmmax&lt;BR /&gt;&lt;BR /&gt;if the output is NOT -1 and similar with value you assigned, then the kernel accept the new value.&lt;BR /&gt;&lt;BR /&gt;You should upgrade your kernel, if you can not not find /proc/sys/kernel/shmmax or you can not assign any value.&lt;BR /&gt;&lt;BR /&gt;Make sure to add the command to rc.local (or elsewhere, depends on your server config), so that the changes always take effect when server restart and before database startup.</description>
    <pubDate>Thu, 22 Mar 2001 04:12:13 GMT</pubDate>
    <dc:creator>Dapid Candra</dc:creator>
    <dc:date>2001-03-22T04:12:13Z</dc:date>
    <item>
      <title>Oracle/RedHat6.2 and Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505789#M506</link>
      <description>I want to install an Oracle database on a RedHat 6.2 installation.  It appears to be a 6.2 Standard addition.  I know there is a Redhat release 6.2E that appears to be specifically tuned for Oracle.  I checked the kernel header files and they are not up to par with Oracle's recommendations.  Is there kernel source for 6.2E that I can download from Redhat to the tuned kernel parameters.&lt;BR /&gt;&lt;BR /&gt;If not,  I will need to edit the appropriate header files.  I have some questions regarding the format and some comments in the files.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#define SHMMAX 0x2000000   /* max shared seg size (bytes) */&lt;BR /&gt;/* Try not to change the default shipped SHMMAX - people rely on it */&lt;BR /&gt;&lt;BR /&gt;For SHMMAX, can the comment be ignored and what format can the value be in?</description>
      <pubDate>Thu, 15 Mar 2001 22:20:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505789#M506</guid>
      <dc:creator>Dan Nixon</dc:creator>
      <dc:date>2001-03-15T22:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle/RedHat6.2 and Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505790#M507</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The format for max shared memory is in hex, thus 0x... The parameter should be changed only if you work with really big databases.</description>
      <pubDate>Mon, 19 Mar 2001 12:46:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505790#M507</guid>
      <dc:creator>Dieter Degrendele_1</dc:creator>
      <dc:date>2001-03-19T12:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle/RedHat6.2 and Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505791#M508</link>
      <description>I think you can change the kernel parameter on the fly (but require database restart to take effect).&lt;BR /&gt;&lt;BR /&gt;issue this command as root:&lt;BR /&gt;&lt;BR /&gt;echo 2147483647 &amp;gt; /proc/sys/kernel/shmmax&lt;BR /&gt;&lt;BR /&gt;I use 2^31-1. I suggest you try several value until you get the largest value possible for your server.&lt;BR /&gt;Someone gave me larger value than that, but my server cannot accept it and I start divide the value by two. If the new value ca not be accepted, I divide it again by two, and so on.&lt;BR /&gt;&lt;BR /&gt;You know if the value is accepted by issuing this command:&lt;BR /&gt;&lt;BR /&gt;cat /proc/sys/kernel/shmmax&lt;BR /&gt;&lt;BR /&gt;if the output is NOT -1 and similar with value you assigned, then the kernel accept the new value.&lt;BR /&gt;&lt;BR /&gt;You should upgrade your kernel, if you can not not find /proc/sys/kernel/shmmax or you can not assign any value.&lt;BR /&gt;&lt;BR /&gt;Make sure to add the command to rc.local (or elsewhere, depends on your server config), so that the changes always take effect when server restart and before database startup.</description>
      <pubDate>Thu, 22 Mar 2001 04:12:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505791#M508</guid>
      <dc:creator>Dapid Candra</dc:creator>
      <dc:date>2001-03-22T04:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle/RedHat6.2 and Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505792#M509</link>
      <description>Dieter&lt;BR /&gt;&lt;BR /&gt;I'm not familiar with this syntax for hex.  How do you calcualte it.  &lt;BR /&gt;&lt;BR /&gt;-Dan</description>
      <pubDate>Thu, 22 Mar 2001 22:06:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505792#M509</guid>
      <dc:creator>Dan Nixon</dc:creator>
      <dc:date>2001-03-22T22:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle/RedHat6.2 and Kernel Parameters</title>
      <link>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505793#M510</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;man ascii gives you the hexadecimal equivalent of decimals from 0 to 26 and also 127. &lt;BR /&gt;&lt;BR /&gt;You can use the od command on your linux system to compute the hexadecimal equivalent of any decimals. &lt;BR /&gt;&lt;BR /&gt;Alternatively, if you have a Windows PC, you can run "calc" to perform the translation between hexadecimal and decimal numbers.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong&lt;BR /&gt;Brainbench MVP for Unix Admin&lt;BR /&gt;&lt;A href="http://www.brainbench.com" target="_blank"&gt;http://www.brainbench.com&lt;/A&gt;</description>
      <pubDate>Wed, 28 Mar 2001 06:13:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/oracle-redhat6-2-and-kernel-parameters/m-p/2505793#M510</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2001-03-28T06:13:43Z</dc:date>
    </item>
  </channel>
</rss>

