You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Jonathan White <jo...@mtclimber.net> on 2005/12/19 06:08:00 UTC

[users@httpd] http 2.2.0 install issues

I am trying to get http 2.2.0 running on debian and have the  
following error after installing (I am using the apache 2.2.0 source  
dist):

 >/usr/local/apache2.2/bin/apachectl start

[Sun Dec 18 22:08:17 2005] [warn] (92)Protocol not available: Failed  
to enable APR_TCP_DEFER_ACCEPT

My configure set up is (it was more complex but I simplified to see  
if the problem still existed in the simple case -- it does.):

./configure --prefix=/usr/local/apache2.2 --enable-so --enable- 
modules=so

any help is appreciated.

Jonathan

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] http 2.2.0 install issues

Posted by Joshua Slive <jo...@slive.ca>.
On 12/19/05, Jonathan White <jo...@mtclimber.net> wrote:
> I am trying to get http 2.2.0 running on debian and have the
> following error after installing (I am using the apache 2.2.0 source
> dist):
>
>  >/usr/local/apache2.2/bin/apachectl start
>
> [Sun Dec 18 22:08:17 2005] [warn] (92)Protocol not available: Failed
> to enable APR_TCP_DEFER_ACCEPT

Just a warning; nothing serious.  I believe it means that your kernel
does not support a certain option that apache tries to use, but apache
will fall back to another method.  You can probably get rid of the
warning by using
AcceptFilter http none
See:
http://httpd.apache.org/docs/2.2/mod/core.html#acceptfilter

Joshua.