From owner-freebsd-questions@FreeBSD.ORG Sat May 21 14:59:16 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35B4A16A4CF for ; Sat, 21 May 2005 14:59:16 +0000 (GMT) Received: from mta1.srv.hcvlny.cv.net (mta1.srv.hcvlny.cv.net [167.206.4.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E1C343D5F for ; Sat, 21 May 2005 14:59:12 +0000 (GMT) (envelope-from kellers@njit.edu) Received: from [192.168.1.101] (ool-4353d5dd.dyn.optonline.net [67.83.213.221]) by mta1.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0IGU004K3HNW9X@mta1.srv.hcvlny.cv.net> for freebsd-questions@freebsd.org; Sat, 21 May 2005 10:59:57 -0400 (EDT) Date: Sat, 21 May 2005 10:58:54 -0400 From: Tim Kellers In-reply-to: <20050521143927.68CA043D39@mx1.FreeBSD.org> To: freebsd-questions@freebsd.org Message-id: <200505211058.56315.kellers@njit.edu> MIME-version: 1.0 Content-type: text/plain; charset=iso-8859-1 Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: KMail/1.8 References: <20050521143927.68CA043D39@mx1.FreeBSD.org> cc: 'Kris Kennaway' cc: Eric Sheesley Subject: Re: Portupgrade breaks Apache13-modssl X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 May 2005 14:59:16 -0000 On Saturday 21 May 2005 10:39 am, Eric Sheesley wrote: > When I did the portupgrade I did 'portupgrade -arR'. Apache fails to start > at boot. If I run it manually with 'httpd' it works fine but if I do > 'httpd -DSSL' it fails. I've even rebuilt the apache13-modssl port with no > luck. Not sure what other details I can give besides the messages log > reports a core dump. > > -----Original Message----- > From: Kris Kennaway [mailto:kris@obsecurity.org] > Sent: Saturday, May 21, 2005 02:38 > To: Eric Sheesley > Cc: freebsd-questions@freebsd.org > Subject: Re: Portupgrade breaks Apache13-modssl > > On Sat, May 21, 2005 at 12:47:41AM -0400, Eric Sheesley wrote: > > I am running Freebsd 5.3 and just did a portupgrade(upgraded php, > > amavis, clamav, and cyrus-sasl. When I rebooted apache refused to > > start. I can get apache started with no ssl but not with it. I have > > apache13-modssl installed. It wasn't modified during the upgrade > > though. So it would seem taht teh ssl mod is crashing. Any ideas? > > Anyone else experience this? > > You need to > > * make sure you also update the ports that depend on those you updated, > e.g. by using portupgrade -a, -r, etc. > > * provide more details in your support requests. "It is crashing", etc is > not helpful. Show exact commands you are running and exact output, and > exact errors, if any. > > Thanks, > Kris > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" I have had upgrades to php mysteriously (that is with no apparent logfile error) break apache. Try commenting out the following lines from your httpd.conf file: LoadModule php4_module AddModule mod_php4.c and restart apache. If that works, look in /usr/local/etc/php/extensions.ini and see if there are any obvious php conflicting modules and comment them out --extension=recode.so has sometimes gotten placed back in that file even though it's a known conflict after an upgrade. Then restart apache. If there is no "obvious" conflict like the recode conflict, you may have to begin commenting out the extensions in that file one by one, restarting apache until it starts again.