From 7192e060fb3398b841b65763e61876eb6b29b59a Mon Sep 17 00:00:00 2001 From: Ken Coar Date: Wed, 4 Aug 1999 17:43:46 +0000 Subject: [PATCH] Boy is this one turning into a FAQ.. PR: Too numerous to mention. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83568 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/FAQ-D.html | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/docs/manual/misc/FAQ-D.html b/docs/manual/misc/FAQ-D.html index 844ffc5656..dd54b1635c 100644 --- a/docs/manual/misc/FAQ-D.html +++ b/docs/manual/misc/FAQ-D.html @@ -31,7 +31,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.1 $ ($Date: 1999/06/24 15:02:51 $) + $Revision: 1.2 $ ($Date: 1999/08/04 17:43:46 $)

The latest version of this FAQ is always available from the main @@ -97,6 +97,11 @@ than 1.2.0 and suddenly I have problems with Apache dying randomly or not restarting properly +

  • When I try to start Apache from a DOS + window, I get a message like "Cannot determine host name. + Use ServerName directive to set it manually." What does + this mean? +
  • @@ -324,6 +329,35 @@


    + +
  • + When I try to start Apache from a DOS + window, I get a message like "Cannot determine host name. + Use ServerName directive to set it manually." What does + this mean? + +

    + It means what it says; the Apache software can't determine the + hostname of your system. Edit your conf\httpd.conf + file, look for the string "ServerName", and make sure there's an + uncommented directive such as +

    +
    +
    ServerName localhost
    +
    +

    + or +

    +
    +
    ServerName www.foo.com
    +
    +

    + in the file. Correct it if there one there with wrong information, or + add one if you don't already have one. Then try to start the server + again. +

    +
  • + -- 2.40.0