WTF is wrong with my apache server?

millhouse

Limp Gawd
Joined
Jul 19, 2004
Messages
173
"apachectl start" yields the following...

[warn] (2)No such file or directory: Failed to enable the 'httpready" Accept Filter

Logs dont help and neither is google. Website is up and active though and apache refuses to start automagically when the server is init 6'd.


Freebsd 6.0 nothing else fancy going on here...
 
what logs are you looking at? the access log, or the error log?

Also, have you gone through your httpd.conf (probably more /path/to/httpd.conf | grep httpready would work well) to look for this httpready thing? (I don't know what it is, but I am just trying to help you possibly figure out wtf it is)
 
Here is the answer that I found, works ok.

Just installed Apache2.2.0 on my FreeBSD 6.0 box. When trying to start apache, I got this warning:
# /usr/local/apache2/bin/apachectl start
[Mon Jan 16 16:44:51 2006] [warn] (2)No such file or directory: Failed to enable the 'httpready' Accept Filter

You should enable the kernel module: accf_http
You can do it runtime with this command:
kldload accf_http

To make it happen at boot time, also add this:
accf_http_load="YES" # Wait for full HTTP request accept filter

..to the file:
/boot/loader.conf


http://www.bitmand.net/handbook/httpready-accept-filter
 
Back
Top