缺lessmod_deflate.so?

我试图build立与mod_deflate启用Apache。 当重新启动Apache时,出现以下错误:

httpd: Syntax error on line 36 of /usr/local/apache/conf/httpd.conf: Cannot load /usr/local/apache/modules/mod_deflate.so into server: /usr/local/apache/modules/mod_deflate.so: cannot open shared object file: No such file or directory

我怎样才能得到mod_deflate.so?

它看起来像你自己编译Apache,但你没有select使用mod_deflate模块。 你将需要重新编译它,这次启用mod_deflate 。

 ./configure --enable-deflate ...the rest of your options... 

我猜你编译apache的时候忘记了包含mod_deflate。 所以如果你决定重新编译所有东西,只需添加--enable-deflate

另一种select是将模块编译为当前apache中的dynamic共享对象(DSO)。 看看这个博客文章 。