home *** CD-ROM | disk | FTP | other *** search
/ PC World 2004 May / PCWorld_2004-05_cd.bin / komunikace / apache / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252836_perfhp.html.en < prev    next >
Extensible Markup Language  |  2003-05-29  |  6KB  |  103 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" class="no-sidebar"><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. <div class="toplang">
  21. <p><span>Available Languages: </span><a href="../en/platform/perf-hp.html" title="English"> en </a></p>
  22. </div>
  23.  
  24.  
  25. <pre>
  26. Date: Wed, 05 Nov 1997 16:59:34 -0800
  27. From: Rick Jones <<a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>>
  28. Reply-To: <a href="mailto:raj@cup.hp.com">raj@cup.hp.com</a>
  29. Organization: Network Performance
  30. Subject: HP-UX tuning tips
  31. </pre>
  32.  
  33.     <p>Here are some tuning tips for HP-UX to add to the tuning page.</p>
  34.  
  35.     <p>For HP-UX 9.X: Upgrade to 10.20<br />
  36.     For HP-UX 10.[00|01|10]: Upgrade to 10.20</p>
  37.  
  38.     <p>For HP-UX 10.20:</p>
  39.  
  40.     <p>Install the latest cumulative ARPA Transport Patch. This
  41.     will allow you to configure the size of the TCP connection
  42.     lookup hash table. The default is 256 buckets and must be set
  43.     to a power of two. This is accomplished with adb against the
  44.     *disc* image of the kernel. The variable name is <code>tcp_hash_size</code>.
  45.     Notice that it's critically important that you use "<code>W</code>"
  46.     to write a 32 bit quantity, not "<code>w</code>" to write a 16 bit
  47.     value when patching the disc image because the <code>tcp_hash_size</code>
  48.     variable is a 32 bit quantity.</p>
  49.  
  50.     <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>
  51.     and see how many total TCP connections exist on the system. You
  52.     probably want that number divided by the hash table size to be
  53.     reasonably small, say less than 10. Folks can look at HP's
  54.     SPECweb96 disclosures for some common settings. These can be
  55.     found at <a href="http://www.specbench.org/">http://www.specbench.org/</a>.
  56.     If an HP-UX system was performing at 1000 SPECweb96 connections
  57.     per second, the <code>TIME_WAIT</code> time of 60 seconds would mean
  58.     60,000 TCP "connections" being tracked.</p>
  59.  
  60.     <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>
  61.  
  62.     <p>If folks are running Apache on a PA-8000 based system, they
  63.     should consider "chatr'ing" the Apache executable to have a
  64.     large page size. This would be "<code>chatr +pi L <BINARY></code>".
  65.     The GID of the running executable must have <code>MLOCK</code> privileges.
  66.     <code>Setprivgrp(1m)</code> should be consulted for assigning
  67.     <code>MLOCK</code>. The change can be validated by running Glance
  68.     and examining the memory regions of the server(s) to make sure that
  69.     they show a non-trivial fraction of the text segment being locked.</p>
  70.  
  71.     <p>If folks are running Apache on MP systems, they might
  72.     consider writing a small program that uses <code>mpctl()</code>
  73.     to bind processes to processors. A simple <code>pid % numcpu</code>
  74.     algorithm is probably sufficient. This might even go into the
  75.     source code.</p>
  76.  
  77.     <p>If folks are concerned about the number of <code>FIN_WAIT_2</code>
  78.     connections, they can use nettune to shrink the value of
  79.     <code>tcp_keepstart</code>. However, they should be careful there -
  80.     certainly do not make it less than oh two to four minutes. If
  81.     <code>tcp_hash_size</code> has been set well, it is probably OK to
  82.     let the <code>FIN_WAIT_2</code>'s take longer to timeout (perhaps
  83.     even the default two hours) - they will not on average have a big
  84.     impact on performance.</p>
  85.  
  86.     <p>There are other things that could go into the code base, but
  87.     that might be left for another email. Feel free to drop me a
  88.     message if you or others are interested.</p>
  89.  
  90.     <p>sincerely,</p>
  91.  
  92.     <p>rick jones</p>
  93.  
  94.     <p><a href="http://www.cup.hp.com/netperf/NetperfPage.html">http://www.cup.hp.com/netperf/NetperfPage.html</a></p>
  95.  
  96.   </div>
  97. </div>
  98. <div class="bottomlang">
  99. <p><span>Available Languages: </span><a href="../en/platform/perf-hp.html" title="English"> en </a></p>
  100. </div><div id="footer">
  101. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  102. <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>
  103. </body></html>