home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278519_httpd.xml < prev    next >
Extensible Markup Language  |  2004-02-09  |  7KB  |  193 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.  
  5. <!--
  6.  Copyright 2002-2004 The Apache Software Foundation
  7.  
  8.  Licensed under the Apache License, Version 2.0 (the "License");
  9.  you may not use this file except in compliance with the License.
  10.  You may obtain a copy of the License at
  11.  
  12.      http://www.apache.org/licenses/LICENSE-2.0
  13.  
  14.  Unless required by applicable law or agreed to in writing, software
  15.  distributed under the License is distributed on an "AS IS" BASIS,
  16.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17.  See the License for the specific language governing permissions and
  18.  limitations under the License.
  19. -->
  20.  
  21. <manualpage metafile="httpd.xml.meta">
  22. <parentdocument href="./">Programs</parentdocument>
  23.  
  24.   <title>httpd - Apache Hypertext Transfer Protocol Server</title>
  25.  
  26. <summary>
  27.      <p><code>httpd</code> is the Apache HyperText Transfer Protocol
  28.      (HTTP) server program.  It is designed to be run as a standalone
  29.      daemon process. When used like this it will create a pool of
  30.      child processes or threads to handle requests.</p>
  31.  
  32.      <p>In general, <code>httpd</code> should not be invoked directly,
  33.      but rather should be invoked via <a
  34.      href="apachectl.html">apachectl</a> on Unix-based systems or <a
  35.      href="../platform/windows.html#winsvc">as a service on Windows NT,
  36.      2000 and XP</a> and <a href="../platform/windows.html#wincons">as
  37.      a console application on Windows 9x and ME</a>.</p>
  38. </summary>
  39.  
  40. <seealso><a href="../invoking.html">Starting Apache</a></seealso>
  41. <seealso><a href="../stopping.html">Stopping Apache</a></seealso>
  42. <seealso><a href="../configuring.html">Configuration Files</a></seealso>
  43. <seealso><a href="../platform/">Platform-specific Documentation</a></seealso>
  44. <seealso><a href="apachectl.html">apachectl</a></seealso>
  45.  
  46. <section id="synopsis"><title>Synopsis</title>
  47.      <p><code><strong>httpd</strong> [ -<strong>d</strong>
  48.      <var>serverroot</var> ] [ -<strong>f</strong> <var>config</var> ]
  49.      [ -<strong>C</strong> <var>directive</var> ] [ -<strong>c</strong>
  50.      <var>directive</var> ] [ -<strong>D</strong> <var>parameter</var> ]
  51.      [ -<strong>e</strong> <var>level</var> ] [ -<strong>E</strong>
  52.      <var>file</var> ] [ <strong>-k</strong> start|restart|graceful|stop ]
  53.      [ -<strong>R</strong> <var>directory</var> ] [ -<strong>h</strong> ]
  54.      [ -<strong>l</strong> ] [ -<strong>L</strong> ] [ -<strong>S</strong> ]
  55.      [ -<strong>t</strong> ] [ -<strong>v</strong> ] [ -<strong>V</strong> ]
  56.      [ -<strong>X</strong> ]</code></p>
  57.  
  58.      <p>On <a href="../platform/windows.html">Windows systems</a>, the
  59.      following additional arguments are available:</p>
  60.  
  61.      <p><code><strong>httpd</strong> [ -<strong>k</strong>
  62.      install|config|uninstall ] [ -<strong>n</strong> <var>name</var> ]
  63.      [ -<strong>w</strong> ]</code></p>
  64. </section>
  65.  
  66. <section id="options"><title>Options</title>
  67.  
  68. <dl>
  69. <dt><code>-d <var>serverroot</var></code></dt>
  70.  
  71. <dd>Set the initial value for the <directive
  72. module="core">ServerRoot</directive> directive to
  73. <var>serverroot</var>.  This can be overridden by the ServerRoot
  74. directive in the configuration file. The default is
  75. <code>/usr/local/apache2</code>.</dd>
  76.  
  77. <dt><code>-f <var>config</var></code></dt>
  78.  
  79. <dd>Uses the directives in the file <var>config</var> on startup. If
  80. <var>config</var> does not begin with a /, then it is taken to be a
  81. path relative to the <directive
  82. module="core">ServerRoot</directive>. The default is
  83. <code>conf/httpd.conf</code>.</dd>
  84.  
  85. <dt><code>-k <code>start|restart|graceful|stop</code></code></dt>
  86.  
  87. <dd>Signals <code>httpd</code> to start, restart, or stop.  See <a
  88. href="../stopping.html">Stopping Apache</a> for more information.</dd>
  89.  
  90. <dt><code>-C <var>directive</var></code></dt>
  91.  
  92. <dd>Process the configuration <var>directive</var> before reading
  93. config files.</dd>
  94.  
  95. <dt><code>-c <var>directive</var></code></dt>
  96.  
  97. <dd>Process the configuration <var>directive</var> after reading config
  98. files.</dd>
  99.  
  100.  
  101. <dt><code>-D <var>parameter</var></code></dt>
  102.  
  103. <dd>Sets a configuration <var>parameter </var>which can be used with
  104. <directive type="section" module="core">IfDefine</directive> sections
  105. in the configuration files to conditionally skip or process
  106. commands at server startup and restart.</dd>
  107.  
  108. <dt><code>-e <var>level</var></code></dt>
  109.  
  110. <dd>Sets the <directive module="core">LogLevel</directive> to
  111. <var>level</var> during server startup.  This is useful for
  112. temporarily increasing the verbosity of the error messages to find
  113. problems during startup.</dd>
  114.  
  115. <dt><code>-E <var>file</var></code></dt>
  116.  
  117. <dd>Send error messages during server startup to <var>file</var>.</dd>
  118.  
  119. <dt><code>-R <var>directory</var></code></dt>
  120.  
  121. <dd>When the server is compiled using the <code>SHARED_CORE</code>
  122. rule, this specifies the <var>directory</var> for the shared
  123. object files.</dd>
  124.  
  125. <dt><code>-h</code></dt>
  126.  
  127. <dd>Output a short summary of available command line options.</dd>
  128.  
  129. <dt><code>-l</code></dt>
  130.  
  131. <dd>Output a list of modules compiled into the server.  This will
  132. <strong>not</strong> list dynamically loaded modules included using
  133. the <directive module="mod_so">LoadModule</directive> directive.</dd>
  134.  
  135. <dt><code>-L</code></dt>
  136.  
  137. <dd>Output a list of directives together with expected arguments and
  138. places where the directive is valid.</dd>
  139.  
  140. <dt><code>-S</code></dt>
  141.  
  142. <dd>Show the settings as parsed from the config file (currently only
  143. shows the virtualhost settings).</dd>
  144.  
  145. <dt><code>-t</code></dt>
  146.  
  147. <dd>Run syntax tests for configuration files only.  The program
  148. immediately exits after these syntax parsing tests with either a return code
  149. of 0 (Syntax OK) or return code not equal to 0 (Syntax Error).  If -D
  150. <var>DUMP</var>_<var>VHOSTS </var>is also set, details of the virtual host
  151. configuration will be printed.</dd>
  152.  
  153. <dt><code>-v</code></dt>
  154.  
  155. <dd>Print the version of <code>httpd</code>, and then exit.</dd>
  156.  
  157. <dt><code>-V</code></dt>
  158.  
  159. <dd>Print the version and build parameters of <code>httpd</code>, and
  160. then exit.</dd>
  161.  
  162. <dt><code>-X</code></dt>
  163.  
  164. <dd>Run httpd in debug mode.  Only one worker will be started and the
  165. server will not detach from the console.</dd>
  166.  
  167. </dl>
  168.  
  169. <p>The following arguments are available only on the <a
  170. href="../platform/windows.html">Windows platform</a>:</p>
  171.  
  172. <dl>
  173.  
  174. <dt><code>-k install|config|uninstall</code></dt>
  175.  
  176. <dd>Install Apache as a Windows NT service; change startup options for
  177. the Apache service; and uninstall the Apache service.</dd>
  178.  
  179. <dt><code>-n <var>name</var></code></dt>
  180.  
  181. <dd>The <var>name</var> of the Apache service to signal.</dd>
  182.  
  183. <dt><code>-w</code></dt>
  184.  
  185. <dd>Keep the console window open on error so that the error message can 
  186. be read.</dd>
  187.  
  188. </dl>
  189.  
  190. </section>
  191.  
  192. </manualpage>
  193.