diff options
author | Eric Covener <covener@apache.org> | 2013-02-02 15:10:04 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2013-02-02 15:10:04 +0100 |
commit | de0b8830b5b4c263a4fffa4191721a931347f7eb (patch) | |
tree | b7e84f10e6e22e2d5de0284f45ed11bf8c013f17 /docs/manual | |
parent | Updates. (diff) | |
download | apache2-de0b8830b5b4c263a4fffa4191721a931347f7eb.tar.xz apache2-de0b8830b5b4c263a4fffa4191721a931347f7eb.zip |
fill in the dots for
http://httpd.apache.org/docs/2.4/platform/windows.html#comment_802
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1441750 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/platform/windows.xml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/manual/platform/windows.xml b/docs/manual/platform/windows.xml index 5feccf1725..1b899e5eab 100644 --- a/docs/manual/platform/windows.xml +++ b/docs/manual/platform/windows.xml @@ -205,7 +205,8 @@ RewriteRule (.*) ${lowercase:$1} [R,L] <p>If you need to specify the name of the service you want to install, use the following command. You have to do this if you have several different service installations of Apache on your - computer.</p> + computer. If you specify a name during the install, you have to + also specify it during any other -k operation.</p> <example> httpd.exe -k install -n "MyServiceName" @@ -250,27 +251,27 @@ RewriteRule (.*) ${lowercase:$1} [R,L] too. To start an installed Apache service you'll use this:</p> <example> - httpd.exe -k start + httpd.exe -k start -n "MyServiceName" </example> <p>To stop an Apache service via the command line switches, use this:</p> <example> - httpd.exe -k stop + httpd.exe -k stop -n "MyServiceName" </example> <p>or</p> <example> - httpd.exe -k shutdown + httpd.exe -k shutdown -n "MyServiceName" </example> <p>You can also restart a running service and force it to reread its configuration file by using:</p> <example> - httpd.exe -k restart + httpd.exe -k restart -n "MyServiceName" </example> <p>By default, all Apache services are registered to run as the |