请教:APACHE服务器在FC6上的安装出错,怎么解决?

请教:APACHE服务器在FC6上的安装出错,怎么解决?

请教:APACHE服务器在FC6上的安装出错,怎么解决?出错信息如下:
[root@linux ~]# httpd
httpd: Syntax error on line 182 of /etc/httpd/conf/httpd.conf: Cannot load /etc/httpd/modules/mod_access.so into server: /etc/httpd/modules/mod_access.so: cannot open shared object file: No such file or directory
/etc/httpd/modules/mod_access.so

这个模块找不到。

find / -name "mod_access.so"
看看是否存在》
HonestQiao大哥!
mod_access.so这个文件是什么东西?我怎么找不到呢?去哪里能找到?你这里有安装APACHE服务器的详细步骤文档吗?


QUOTE:
原帖由 chenyanzheng 于 2007-3-8 17:15 发表
HonestQiao大哥!
mod_access.so这个文件是什么东西?我怎么找不到呢?去哪里能找到?你这里有安装APACHE服务器的详细步骤文档吗?

不知道你是怎么安装的
如果英文可以请查看源代码下的INSATLL


QUOTE:
原帖由 chenyanzheng 于 2007-3-8 17:15 发表
HonestQiao大哥!
mod_access.so这个文件是什么东西?我怎么找不到呢?去哪里能找到?你这里有安装APACHE服务器的详细步骤文档吗?

呵呵,我的安装步骤也基本上是看这个:
http://man.chinaunix.net/newsoft ... 2.2new/install.html

如果你对这些不是很清楚,那么直接:
make clean
./configure --prefix=/usr/local/apache2 --enable-module=all
make
make install
/usr/local/apache2表示我们要把它安装在什么地方
编译参数可以看:
http://man.chinaunix.net/newsoft ... rams/configure.html