From owner-freebsd-questions@FreeBSD.ORG Wed Mar 5 16:11:27 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 582C61065673 for ; Wed, 5 Mar 2008 16:11:27 +0000 (UTC) (envelope-from ginganutz@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.176]) by mx1.freebsd.org (Postfix) with ESMTP id 24F588FC24 for ; Wed, 5 Mar 2008 16:11:26 +0000 (UTC) (envelope-from ginganutz@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so1695192waf.3 for ; Wed, 05 Mar 2008 08:11:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=fq6BPLUb9dPVFcR67h6NguaASJ5cvktOgsueJ+eNFVI=; b=KcGdyzwKk8Gp8e9hbzES6O+gkQZZvhzQjpHa4Eo1uI52UjnTjIKbDAZ7CUIZmFf76kRwQbyPHBQhtDajDo8GVVJVMszG+h2F75aAvJ7JVTGV94AIKmM8RsAYpx72w9vSg6ME6R2fNlCrDuSp3UR9GThRn5wuBJ/9Mdl+0Uqg/sc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=GdSve6VuHGWVnK3MQQYElS2mXJbrCj/FhY5R6lnGjwp7wTeHnR9ZUysKC9D1tfMRWiCxPlg2kTwgDzsFm+oeGPAZFnNoKQkVdDvrBEmVK6MDxJy4rH0kDZ8zoF9eLcx7CWGcoBOCgG5K0RySZuo6m39XjeKcPDTkFI9KJ71Yvtg= Received: by 10.115.74.1 with SMTP id b1mr4728203wal.93.1204733485933; Wed, 05 Mar 2008 08:11:25 -0800 (PST) Received: by 10.114.57.7 with HTTP; Wed, 5 Mar 2008 08:11:25 -0800 (PST) Message-ID: <101567640803050811r23c74a2fn58d899f758ad246c@mail.gmail.com> Date: Wed, 5 Mar 2008 16:11:25 +0000 From: "Simon Street" To: freebsd-questions@freebsd.org In-Reply-To: <200803051532.46736.fbsd.questions@rachie.is-a-geek.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <101567640802270431h69e443c9n63090e4b260f3a7b@mail.gmail.com> <101567640803050301m278c7423qaf6d55f77a52786e@mail.gmail.com> <200803051532.46736.fbsd.questions@rachie.is-a-geek.net> Subject: Re: FreeBSD 6.2+PHP+700 sites = DNS Issues? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Mar 2008 16:11:27 -0000 On Wed, Mar 5, 2008 at 2:32 PM, Mel wrote: > > On Wednesday 05 March 2008 12:01:11 Simon Street wrote: > > In addition i've attempted adding: > > > > kern.maxfilesperproc=65536 > > kern.ipc.somaxconn=1024 > > kern.ipc.maxsockbuf=2097152 > > kern.maxprocperuid=9000 > > to sysctl.conf > > > > kern.maxproc=10240 > > kern.maxfiles=65536 > > kern.ipc.nmbclusters=32768 > > kern.ipc.maxsockets=51200 > > to loader.conf > > > > I've also disabled ipv6 in the kernel (can't remember where I saw this > > suggestion) > > > > Post this I've recompiled apache with: > > [root@~]# export CFLAGS="-DFD_SETSIZE=12000" > > [root@~]# export CXX_FLAGS="-DFD_SETSIZE=12000" > > [root@~]# /scripts/easyapache (this is the cPanel script that auto > > regens apache/php/addons) > > > > I'm having a hard time believing that this issue only plagues FreeBSD > > and is unfixable! > > > > Anyone got any ideas on what else I can change? > > Well, you're probably not reaching any CPanel users, so how about posting the > offending script. Companies like to blame others, lawyers tell them to. > > What is this script doing anyway, that it needs 12000 open file descriptors? > > -- > Mel > > Problem with today's modular software: they start with the modules > and never get to the software part. > The problems php inside apache (700+ sites). Not sure if gmail replied to my original email properly or not! Basically, PHP refuses (instantly) to resolve dns with mod_php, but its fine connecting to an IP with the same piece of fsockopen code. And it will happily resolve the name if its run from the CLI. I've been told by cpanel that this is a FreeBSD bug but I'm having a hard time accepting that. cPanels third line support seem unable to fix it and are telling me to switch to CGI/suphp which the customer isn't happy with due to .htaccess stuff. I'm making an assumption that its a lack of FD's but my attempts to compile stuff with more seems to be failing, or my assumptions are wrong. Code that breaks: $fp = fsockopen("www.example.com", 80, $errno, $errstr, 30); // Fails inside apache2.2/mod_php5, works fine with php5cli on same server $fp = fsockopen("208.77.188.166", 80, $errno, $errstr, 30);// Works all round The code fails with: Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: hostname nor servname provided, or not known in test.php on line 2 But dns is fine on the server.