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 / F232700_stopping.xml < prev    next >
Extensible Markup Language  |  2002-12-18  |  10KB  |  208 lines

  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="./style/manual.en.xsl"?>
  4. <manualpage>
  5. <relativepath href="."/>
  6.  
  7.   <title>Stopping and Restarting</title>
  8.  
  9. <summary>
  10.     <p>This document covers stopping and restarting Apache on
  11.     Unix-like systems. Windows NT, 2000 and XP users should see
  12.     <a href="platform/windows.html#winsvc">Running Apache as a
  13.     Service</a> and Windows 9x and ME users should see <a
  14.     href="platform/windows.html#wincons">Running Apache as a
  15.     Console Application</a> for information on how to control
  16.     Apache on those platforms.</p>
  17. </summary>
  18.  
  19. <seealso><a href="programs/httpd.html">httpd</a></seealso>
  20. <seealso><a href="programs/apachectl.html">apachectl</a></seealso>
  21.  
  22. <section id="introduction"><title>Introduction</title>
  23.  
  24.     <p>In order to stop or restart Apache, you must send a signal to
  25.     the running <code>httpd</code> processes.  There are two ways to
  26.     send the signals.  First, you can use the unix <code>kill</code>
  27.     command to directly send signals to the processes.  You will
  28.     notice many <code>httpd</code> executables running on your system,
  29.     but you should not send signals to any of them except the parent,
  30.     whose pid is in the <directive
  31.     module="mpm_common">PidFile</directive>. That is to say you
  32.     shouldn't ever need to send signals to any process except the
  33.     parent. There are three signals that you can send the parent:
  34.     <code>TERM</code>, <code>HUP</code>, and <code>USR1</code>, which
  35.     will be described in a moment.</p>
  36.  
  37.     <p>To send a signal to the parent you should issue a command
  38.     such as:</p>
  39.  
  40. <example>kill -TERM `cat /usr/local/apache2/logs/httpd.pid`</example>
  41.  
  42.     <p>The second method of signaling the <code>httpd</code> processes
  43.     is to use the <code>-k</code> command line options: <code>stop</code>,
  44.     <code>restart</code>, and <code>graceful</code>,
  45.     as described below.  These are arguments to the <a
  46.     href="programs/httpd.html">httpd</a> binary, but we recommend that
  47.     you send them using the <a
  48.     href="programs/apachectl.html">apachectl</a> control script, which
  49.     will pass them through to <code>httpd</code>.</p>
  50.  
  51.     <p>After you have signaled <code>httpd</code>, you can read about
  52.     its progress by issuing:</p>
  53.  
  54. <example>tail -f /usr/local/apache2/logs/error_log</example>
  55.  
  56.     <p>Modify those examples to match your <directive
  57.     module="core">ServerRoot</directive> and <directive
  58.     module="mpm_common">PidFile</directive> settings.</p>
  59. </section>
  60.  
  61. <section id="term"><title>Stop Now</title>
  62.  
  63. <dl><dt>Signal: TERM</dt>
  64. <dd><code>apachectl -k stop</code></dd>
  65. </dl>
  66.  
  67.     <p>Sending the <code>TERM</code> or <code>stop</code> signal to
  68.     the parent causes it to immediately attempt to kill off all of its
  69.     children. It may take it several seconds to complete killing off
  70.     its children.  Then the parent itself exits. Any requests in
  71.     progress are terminated, and no further requests are served.</p>
  72. </section>
  73.  
  74. <section id="graceful"><title>Graceful Restart</title>
  75.  
  76. <dl><dt>Signal: USR1</dt>
  77. <dd><code>apachectl -k graceful</code></dd>
  78. </dl>
  79.  
  80.     <p>The <code>USR1</code> or <code>graceful</code> signal causes
  81.     the parent process to <em>advise</em> the children to exit after
  82.     their current request (or to exit immediately if they're not
  83.     serving anything). The parent re-reads its configuration files and
  84.     re-opens its log files. As each child dies off the parent replaces
  85.     it with a child from the new <em>generation</em> of the
  86.     configuration, which begins serving new requests immediately.</p>
  87.  
  88.     <note>On certain platforms that do not allow <code>USR1</code> to
  89.     be used for a graceful restart, an alternative signal may be used (such
  90.     as <code>WINCH</code>). The command <code>apachectl graceful</code>
  91.     will send the right signal for your platform.</note>
  92.  
  93.     <p>This code is designed to always respect the process control
  94.     directive of the MPMs, so the number of processes and threads
  95.     available to serve clients will be maintained at the appropriate
  96.     values throughout the restart process.  Furthermore, it respects
  97.     <directive module="mpm_common">StartServers</directive> in the
  98.     following manner: if after one second at least <directive
  99.     module="mpm_common">StartServers</directive> new children have not
  100.     been created, then create enough to pick up the slack. Hence the
  101.     code tries to maintain both the number of children appropriate for
  102.     the current load on the server, and respect your wishes with the
  103.     <directive>StartServers</directive> parameter.</p>
  104.  
  105.     <p>Users of the <module>mod_status</module>
  106.     will notice that the server statistics are <strong>not</strong>
  107.     set to zero when a <code>USR1</code> is sent. The code was
  108.     written to both minimize the time in which the server is unable
  109.     to serve new requests (they will be queued up by the operating
  110.     system, so they're not lost in any event) and to respect your
  111.     tuning parameters. In order to do this it has to keep the
  112.     <em>scoreboard</em> used to keep track of all children across
  113.     generations.</p>
  114.  
  115.     <p>The status module will also use a <code>G</code> to indicate
  116.     those children which are still serving requests started before
  117.     the graceful restart was given.</p>
  118.  
  119.     <p>At present there is no way for a log rotation script using
  120.     <code>USR1</code> to know for certain that all children writing
  121.     the pre-restart log have finished. We suggest that you use a
  122.     suitable delay after sending the <code>USR1</code> signal
  123.     before you do anything with the old log. For example if most of
  124.     your hits take less than 10 minutes to complete for users on
  125.     low bandwidth links then you could wait 15 minutes before doing
  126.     anything with the old log.</p>
  127.  
  128.     <note>If your configuration file has errors
  129.     in it when you issue a restart then your parent will not
  130.     restart, it will exit with an error. In the case of graceful
  131.     restarts it will also leave children running when it exits.
  132.     (These are the children which are "gracefully exiting" by
  133.     handling their last request.) This will cause problems if you
  134.     attempt to restart the server -- it will not be able to bind to
  135.     its listening ports. Before doing a restart, you can check the
  136.     syntax of the configuration files with the <code>-t</code>
  137.     command line argument (see <a
  138.     href="programs/httpd.html">httpd</a>). This still will not
  139.     guarantee that the server will restart correctly. To check the
  140.     semantics of the configuration files as well as the syntax, you
  141.     can try starting <code>httpd</code> as a non-root user. If there are no
  142.     errors it will attempt to open its sockets and logs and fail
  143.     because it's not root (or because the currently running <code>httpd</code>
  144.     already has those ports bound). If it fails for any other
  145.     reason then it's probably a config file error and the error
  146.     should be fixed before issuing the graceful restart.</note>
  147. </section>
  148.  
  149. <section id="hup"><title>Restart Now</title>
  150.  
  151. <dl><dt>Signal: HUP</dt>
  152. <dd><code>apachectl -k restart</code></dd>
  153. </dl>
  154.  
  155.     <p>Sending the <code>HUP</code> or <code>restart</code> signal to
  156.     the parent causes it to kill off its children like in
  157.     <code>TERM</code>, but the parent doesn't exit. It re-reads its
  158.     configuration files, and re-opens any log files. Then it spawns a
  159.     new set of children and continues serving hits.</p>
  160.  
  161.     <p>Users of <module>mod_status</module>
  162.     will notice that the server statistics are set to zero when a
  163.     <code>HUP</code> is sent.</p>
  164.  
  165. <note>If your configuration file has errors in it when you issue a
  166. restart then your parent will not restart, it will exit with an
  167. error. See above for a method of avoiding this.</note>
  168. </section>
  169.  
  170. <section id="race"><title>Appendix: signals and race conditions</title>
  171.  
  172.     <p>Prior to Apache 1.2b9 there were several <em>race
  173.     conditions</em> involving the restart and die signals (a simple
  174.     description of race condition is: a time-sensitive problem, as
  175.     in if something happens at just the wrong time it won't behave
  176.     as expected). For those architectures that have the "right"
  177.     feature set we have eliminated as many as we can. But it should
  178.     be noted that there still do exist race conditions on certain
  179.     architectures.</p>
  180.  
  181.     <p>Architectures that use an on disk <directive
  182.     module="mpm_common">ScoreBoardFile</directive> have the potential
  183.     to corrupt their scoreboards. This can result in the "bind:
  184.     Address already in use" (after <code>HUP</code>) or "long lost
  185.     child came home!" (after <code>USR1</code>). The former is a fatal
  186.     error, while the latter just causes the server to lose a
  187.     scoreboard slot. So it might be advisable to use graceful
  188.     restarts, with an occasional hard restart. These problems are very
  189.     difficult to work around, but fortunately most architectures do
  190.     not require a scoreboard file. See the <directive
  191.     module="mpm_common">ScoreBoardFile</directive> documentation for a
  192.     architecture uses it.</p>
  193.  
  194.     <p>All architectures have a small race condition in each child
  195.     involving the second and subsequent requests on a persistent
  196.     HTTP connection (KeepAlive). It may exit after reading the
  197.     request line but before reading any of the request headers.
  198.     There is a fix that was discovered too late to make 1.2. In
  199.     theory this isn't an issue because the KeepAlive client has to
  200.     expect these events because of network latencies and server
  201.     timeouts. In practice it doesn't seem to affect anything either
  202.     -- in a test case the server was restarted twenty times per
  203.     second and clients successfully browsed the site without
  204.     getting broken images or empty documents. </p>
  205. </section>
  206.  
  207. </manualpage>
  208.