<?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: Kernel tuning in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198053#M462938</link>
    <description>hi all,&lt;BR /&gt;&lt;BR /&gt;Thanks for those valued comments thus far.&lt;BR /&gt;But just one question again, since as we know kernel tuning could be done by using sam.&lt;BR /&gt;&lt;BR /&gt;Is there anyway to modify /stand/system and run command to perform kernel compile ? &lt;BR /&gt;&lt;BR /&gt;If it work, could eliminate of lot errors and time saving.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
    <pubDate>Thu, 10 Sep 2009 01:55:25 GMT</pubDate>
    <dc:creator>cedrichiu</dc:creator>
    <dc:date>2009-09-10T01:55:25Z</dc:date>
    <item>
      <title>Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198048#M462933</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Can you guys please help ?&lt;BR /&gt;I have problem in changing the kernel value as below.&lt;BR /&gt;&lt;BR /&gt;MAXUSERS = 512&lt;BR /&gt;MAX_THREAD_PROC = 1024&lt;BR /&gt;NPROC = ((20+8*MAXUSERS)*2)&lt;BR /&gt;NCALLOUT = ((16+NKTHREAD)*5)&lt;BR /&gt;SEMNS = 4109&lt;BR /&gt;MAXFILES_LIM = 4096&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It always encountered errors as below.&lt;BR /&gt;&lt;BR /&gt;ncallout &amp;gt;= nkthread&lt;BR /&gt;semmni &amp;lt;= semns&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Attached kernel.zip includes the screenshot of error and current kernel values.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Sep 2009 02:31:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198048#M462933</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-09-09T02:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198049#M462934</link>
      <description>HI,&lt;BR /&gt;I have seen the screen shot, there is clearly show that you are defining wrong parameter those are not in system.&lt;BR /&gt;You can change within existing parameter.&lt;BR /&gt;But there should be option for Customization.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Gokul Chandola&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Sep 2009 02:58:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198049#M462934</guid>
      <dc:creator>Gokul Chandola</dc:creator>
      <dc:date>2009-09-09T02:58:30Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198050#M462935</link>
      <description>hi Gokul,&lt;BR /&gt;&lt;BR /&gt;The system now is not allow me to change.&lt;BR /&gt;Any idea how to proceed  further ?</description>
      <pubDate>Wed, 09 Sep 2009 03:06:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198050#M462935</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-09-09T03:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198051#M462936</link>
      <description>Based on the parms, I'm guessing your at 11v1 or lower.&lt;BR /&gt;&lt;BR /&gt;There are a number of parms that are generated by an associated calculation that depends on the value of another parm.&lt;BR /&gt;If you wish, you can change that by setting the values yourself and removing the "calculation" for those parms.  But here's the trick....you have to read the parms description and find out what parm affects another parm and change them in order.  Confusing at times.&lt;BR /&gt;&lt;BR /&gt;Example your ncallout &amp;gt;= nkthread&lt;BR /&gt;If you look at nkthread it says:&lt;BR /&gt;nkthread &amp;gt;= nproc +100&lt;BR /&gt;nkthread &amp;gt;= max_thread_proc&lt;BR /&gt;..and let's not forget that nproc has more than one parm that it affects, but nproc's may not be nkthread or ncallout.&lt;BR /&gt;&lt;BR /&gt;So you need to adjust nproc first (personally I set these manually and also manually reset the parms it affects, but it's your choice to stick with the calcs) to what value you want.  But bear in mind to make sure that what you set it to will allow you to set nkthread so it will be &amp;gt; greater than or = equal to ncallout.&lt;BR /&gt;&lt;BR /&gt;Similar on the semaphore parms...you need to change the leading parm. For semaphores you will note that semmns and semmni have that close relationship.  semmns must be greater than semmni.  So if your going up in numbers make sure semmns is greater than semmni and change semmns first.  If your reducing...than switch and do semmni first and then adjust the other accordingly.&lt;BR /&gt;&lt;BR /&gt;Read the description on maxusers and nproc and again decide to go with calc or change manually and set accordingly.&lt;BR /&gt;&lt;BR /&gt;I hope this made some sense and I didn't typo too much.  Probably the best advice I can give is to ask your employer to let you take a course on Performance &amp;amp; Tuning.  It really helps.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Rita</description>
      <pubDate>Wed, 09 Sep 2009 11:03:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198051#M462936</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2009-09-09T11:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198052#M462937</link>
      <description>Easier way to do :&lt;BR /&gt;&lt;BR /&gt;Go to SAM &amp;gt; Kernel Configuration &amp;gt; Configurable Parameters &lt;BR /&gt;&lt;BR /&gt;to see if your adjusted parameters are available ? if yes right click on to mouse and Modify Configurable Parameters&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;</description>
      <pubDate>Wed, 09 Sep 2009 12:50:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198052#M462937</guid>
      <dc:creator>Hakki Aydin Ucar</dc:creator>
      <dc:date>2009-09-09T12:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198053#M462938</link>
      <description>hi all,&lt;BR /&gt;&lt;BR /&gt;Thanks for those valued comments thus far.&lt;BR /&gt;But just one question again, since as we know kernel tuning could be done by using sam.&lt;BR /&gt;&lt;BR /&gt;Is there anyway to modify /stand/system and run command to perform kernel compile ? &lt;BR /&gt;&lt;BR /&gt;If it work, could eliminate of lot errors and time saving.&lt;BR /&gt;&lt;BR /&gt;Regards,</description>
      <pubDate>Thu, 10 Sep 2009 01:55:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198053#M462938</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-09-10T01:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198054#M462939</link>
      <description>&amp;gt;&amp;gt;Is there anyway to modify /stand/system and run command to perform kernel compile ?&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;Answer to you above Question simple . Please try in the devlopment box than proceed to the live server.&lt;BR /&gt;&lt;BR /&gt;Below are steps I usual follow with out SAM&lt;BR /&gt;&lt;BR /&gt;Best Recomdation from my Expereince "SAM"&lt;BR /&gt;&lt;BR /&gt;Procedures for Kernel Parameter changes&lt;BR /&gt;====================================&lt;BR /&gt; #  cd /stand  &lt;BR /&gt; #  cp system system.prev.&amp;lt;050112&amp;gt;&lt;BR /&gt; #  cp vmunix vmunix.prev.&amp;lt;050112&amp;gt;&lt;BR /&gt;&lt;BR /&gt; #  cd /stand/build &lt;BR /&gt; #  /usr/lbin/sysadm/system_prep -s /stand/build/system &lt;BR /&gt; #  vi /stand/build/system (....edit the file to make the necessary changes --&amp;gt; e.g. "max_thread_proc  3072")&lt;BR /&gt; #  /usr/sbin/mk_kernel -s /stand/build/system&lt;BR /&gt; #  mv system /stand/system&lt;BR /&gt; #  /usr/sbin/kmupdate&lt;BR /&gt;&lt;BR /&gt;  Kernel update request is scheduled.&lt;BR /&gt;&lt;BR /&gt;  Default kernel /stand/vmunix will be updated by&lt;BR /&gt;  newly built kernel /stand/build/vmunix_test&lt;BR /&gt;  at next system shutdown or startup time.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;&lt;BR /&gt;Johnson</description>
      <pubDate>Thu, 10 Sep 2009 02:26:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198054#M462939</guid>
      <dc:creator>Johnson Punniyalingam</dc:creator>
      <dc:date>2009-09-10T02:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198055#M462940</link>
      <description>hi Johnson,&lt;BR /&gt;&lt;BR /&gt;Thanks for your input. It really helps me to resolve the problem. Very much appreciated.&lt;BR /&gt;&lt;BR /&gt;Have a good day!</description>
      <pubDate>Thu, 10 Sep 2009 07:26:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198055#M462940</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-09-10T07:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Kernel tuning</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198056#M462941</link>
      <description>Solution provided by Johnson is helpful and valid.</description>
      <pubDate>Thu, 10 Sep 2009 07:38:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/kernel-tuning/m-p/5198056#M462941</guid>
      <dc:creator>cedrichiu</dc:creator>
      <dc:date>2009-09-10T07:38:51Z</dc:date>
    </item>
  </channel>
</rss>

