From 57c55b78de646d75419dc5148cf76d3413b72957 Mon Sep 17 00:00:00 2001 From: pcs Date: Wed, 7 Oct 1998 08:52:31 +0000 Subject: [PATCH] Document the -k command line argument. This is based on a previous patch to add this documentation from bhyde@pobox.com (16 Jun 1998). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82239 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/platform/windows.html | 36 ++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/docs/manual/platform/windows.html b/docs/manual/platform/windows.html index b4879e95ec..2eb65247b7 100644 --- a/docs/manual/platform/windows.html +++ b/docs/manual/platform/windows.html @@ -17,7 +17,7 @@

Using Apache With Microsoft Windows

This document explains how to install, configure and run - Apache 1.3 under Microsoft Windows. Please note that at + Apache 1.3b6 and later under Microsoft Windows. Please note that at this time, Windows support is entirely experimental, and is recommended only for experienced users. The Apache Group does not guarantee that this software will work as documented, or even at @@ -47,6 +47,7 @@ to help with development, or to track down bugs), see the section on

  • Running Apache for Windows
  • Using Apache for Windows
  • Running Apache for Windows from the Command Line +
  • Signalling Apache when running
  • Compiling Apache for Windows @@ -183,8 +184,8 @@ with To run Apache from a console window, select the "Apache Server" option from the Start menu. This will open a console window and start Apache running inside it. The window will remain active until you stop -Apache. To stop Apache running, press Control-C within the console -window. +Apache. To stop Apache running, see Signalling Apache when running + +On Windows 95 Apache runs as a console application. You can tell a +running Apache to stop by opening another console window and running + +
    +    apache -k shutdown
    +
    + +This should be used instead of pressing Control-C in the running +Apache console window, because it lets Apache end any current +transactions and cleanup gracefully. + +

    + +You can also tell Apache to restart. This makes it re-read the +configuration files. Any transactions in progress are allowed to +complete without interruption. To restart Apache, run + +

    +    apache -k restart
    +
    + +Note for people familiar with the Unix version of Apache: these +commands provide a Windows equivalent to kill -TERM +pid and kill -USR1 pid. The command +line option used, -k, was chosen as a reminder of the +"kill" command used on Unix. +

    Compiling Apache for Windows

    Compiling Apache requires Microsoft Visual C++ 5.0 to be properly -- 2.50.1