From 996bf74201cfd8aaa06136889c292b88ac01306f Mon Sep 17 00:00:00 2001
From: Eric Covener
Date: Sat, 2 Feb 2013 14:11:53 +0000
Subject: [PATCH] Merge r1441750 from
https://svn.apache.org/repos/asf/httpd/httpd/trunk/:
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/branches/2.4.x@1441751 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/platform/windows.xml | 11 ++++++-----
1 file 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]
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.
+ computer. If you specify a name during the install, you have to
+ also specify it during any other -k operation.
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:
- httpd.exe -k start
+ httpd.exe -k start -n "MyServiceName"
To stop an Apache service via the command line switches, use
this:
- httpd.exe -k stop
+ httpd.exe -k stop -n "MyServiceName"
or
- httpd.exe -k shutdown
+ httpd.exe -k shutdown -n "MyServiceName"
You can also restart a running service and force it to reread
its configuration file by using:
- httpd.exe -k restart
+ httpd.exe -k restart -n "MyServiceName"
By default, all Apache services are registered to run as the
--
2.50.1