From owner-freebsd-newbies@FreeBSD.ORG Tue Oct 12 19:45:10 2004 Return-Path: Delivered-To: freebsd-newbies@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2761E16A4CE for ; Tue, 12 Oct 2004 19:45:10 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA5D243D46 for ; Tue, 12 Oct 2004 19:45:09 +0000 (GMT) (envelope-from david.jenkins@gmail.com) Received: by mproxy.gmail.com with SMTP id 74so480811rnk for ; Tue, 12 Oct 2004 12:45:06 -0700 (PDT) Received: by 10.38.162.14 with SMTP id k14mr2016035rne; Tue, 12 Oct 2004 12:45:05 -0700 (PDT) Received: by 10.38.208.74 with HTTP; Tue, 12 Oct 2004 12:45:05 -0700 (PDT) Message-ID: <9395922d041012124552848ad5@mail.gmail.com> Date: Tue, 12 Oct 2004 20:45:05 +0100 From: David Jenkins To: Lynette Tillner In-Reply-To: <000e01c4b091$646d2ec0$0601a8c0@M2> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <000e01c4b091$646d2ec0$0601a8c0@M2> cc: freebsd-newbies@freebsd.org Subject: Re: Basic-starting Apache Webserver Question X-BeenThere: freebsd-newbies@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: David Jenkins List-Id: Gathering place for new users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Oct 2004 19:45:10 -0000 On Tue, 12 Oct 2004 12:26:31 -0700, Lynette Tillner wrote: > I've set up a test server in-house using FreeBSD 4.10. Now I'm trying to start the apache web services and get the following error whenever I try to start apache: > > [Tue Oct 12 12:16:15 2004] [alert] mod_unique_id: unable to gethostbyname("avs-2.com") > > and the server can't start. Hi Lynette, I believe disabling the unique_id_module will fix this. Comment out the following lines in httpd.conf LoadModule unique_id_module libexec/apache/mod_unique_id.so AddModule mod_unique_id.c And run "apachectl restart". More information on this module is available here. http://httpd.apache.org/docs/mod/mod_unique_id.html Hope this helps. David