home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F233010_perfhp.html.en < prev    next >
Extensible Markup Language  |  2003-03-30  |  6KB  |  97 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Running a High-Performance Web Server on HPUX - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">Platform Specific Notes</a></div><div id="page-content"><div id="preamble"><h1>Running a High-Performance Web Server on HPUX</h1>
  20.  
  21. <pre>
  22. Date: Wed, 05 Nov 1997 16:59:34 -0800
  23. From: Rick Jones <<a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>>
  24. Reply-To: <a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>
  25. Organization: Network Performance
  26. Subject: HP-UX tuning tips
  27. </pre>
  28.  
  29.     <p>Here are some tuning tips for HP-UX to add to the tuning page.</p>
  30.  
  31.     <p>For HP-UX 9.X: Upgrade to 10.20<br />
  32.     For HP-UX 10.[00|01|10]: Upgrade to 10.20</p>
  33.  
  34.     <p>For HP-UX 10.20:</p>
  35.  
  36.     <p>Install the latest cumulative ARPA Transport Patch. This
  37.     will allow you to configure the size of the TCP connection
  38.     lookup hash table. The default is 256 buckets and must be set
  39.     to a power of two. This is accomplished with adb against the
  40.     *disc* image of the kernel. The variable name is <code>tcp_hash_size</code>.
  41.     Notice that it's critically important that you use "<code>W</code>"
  42.     to write a 32 bit quantity, not "<code>w</code>" to write a 16 bit
  43.     value when patching the disc image because the <code>tcp_hash_size</code>
  44.     variable is a 32 bit quantity.</p>
  45.  
  46.     <p>How to pick the value? Examine the output of <a href="ftp://ftp.cup.hp.com/dist/networking/tools/connhist">ftp://ftp.cup.hp.com/dist/networking/tools/connhist</a>
  47.     and see how many total TCP connections exist on the system. You
  48.     probably want that number divided by the hash table size to be
  49.     reasonably small, say less than 10. Folks can look at HP's
  50.     SPECweb96 disclosures for some common settings. These can be
  51.     found at <a href="http://www.specbench.org/">http://www.specbench.org/</a>.
  52.     If an HP-UX system was performing at 1000 SPECweb96 connections
  53.     per second, the <code>TIME_WAIT</code> time of 60 seconds would mean
  54.     60,000 TCP "connections" being tracked.</p>
  55.  
  56.     <p>Folks can check their listen queue depths with <a href="ftp://ftp.cup.hp.com/dist/networking/misc/listenq">ftp://ftp.cup.hp.com/dist/networking/misc/listenq</a>.</p>
  57.  
  58.     <p>If folks are running Apache on a PA-8000 based system, they
  59.     should consider "chatr'ing" the Apache executable to have a
  60.     large page size. This would be "<code>chatr +pi L <BINARY></code>".
  61.     The GID of the running executable must have <code>MLOCK</code> privileges.
  62.     <code>Setprivgrp(1m)</code> should be consulted for assigning
  63.     <code>MLOCK</code>. The change can be validated by running Glance
  64.     and examining the memory regions of the server(s) to make sure that
  65.     they show a non-trivial fraction of the text segment being locked.</p>
  66.  
  67.     <p>If folks are running Apache on MP systems, they might
  68.     consider writing a small program that uses <code>mpctl()</code>
  69.     to bind processes to processors. A simple <code>pid % numcpu</code>
  70.     algorithm is probably sufficient. This might even go into the
  71.     source code.</p>
  72.  
  73.     <p>If folks are concerned about the number of <code>FIN_WAIT_2</code>
  74.     connections, they can use nettune to shrink the value of
  75.     <code>tcp_keepstart</code>. However, they should be careful there -
  76.     certainly do not make it less than oh two to four minutes. If
  77.     <code>tcp_hash_size</code> has been set well, it is probably OK to
  78.     let the <code>FIN_WAIT_2</code>'s take longer to timeout (perhaps
  79.     even the default two hours) - they will not on average have a big
  80.     impact on performance.</p>
  81.  
  82.     <p>There are other things that could go into the code base, but
  83.     that might be left for another email. Feel free to drop me a
  84.     message if you or others are interested.</p>
  85.  
  86.     <p>sincerely,</p>
  87.  
  88.     <p>rick jones</p>
  89.  
  90.     <p><a href="http://www.cup.hp.com/netperf/NetperfPage.html">http://www.cup.hp.com/netperf/NetperfPage.html</a></p>
  91.  
  92.   </div>
  93. </div>
  94. <div id="footer">
  95. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  96. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  97. </body></html>