Hi There,
I am using FC5 and when I try to start httpd, I got the following error message:
Code:
[root@sulfer ~]# service httpd start
Starting httpd: httpd: Syntax error on line 170 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
[FAILED]
[root@sulfer ~]#
In fact, inspecting a little more, I realize several files are missing:
Code:
LoadModule access_module modules/mod_access.so
LoadModule auth_module modules/mod_auth.so
LoadModule auth_anon_module modules/mod_auth_anon.so
LoadModule auth_dbm_module modules/mod_auth_dbm.so
LoadModule auth_ldap_module modules/mod_auth_ldap.so
LoadModule imap_module modules/mod_imap.so
But my system has several http modules installed:
Code:
[root@sulfer ~]# ll -d /etc/httpd/modules
lrwxrwxrwx 1 root root 27 Mar 24 09:11 /etc/httpd/modules -> ../../usr/lib/httpd/modules
[root@sulfer ~]# rpm -qf /usr/lib/httpd/modules
httpd-2.2.0-5.1.2
[root@sulfer ~]# ll /usr/lib/httpd/modules
total 4652
-rwxr-xr-x 1 root root 3206744 Feb 28 08:23 libphp5.so
-rwxr-xr-x 1 root root 6136 Feb 11 21:12 mod_actions.so
-rwxr-xr-x 1 root root 10228 Feb 11 21:12 mod_alias.so
-rwxr-xr-x 1 root root 5728 Feb 11 21:12 mod_asis.so
...
-rwxr-xr-x 1 root root 9432 Feb 11 21:12 mod_usertrack.so
-rwxr-xr-x 1 root root 5848 Feb 11 21:12 mod_version.so
-rwxr-xr-x 1 root root 8444 Feb 11 21:12 mod_vhost_alias.so
[root@sulfer ~]#
So, the question is: What package the file /usr/lib/httpd/modules/mod_access.so belongs to ?
Somebody with the mod_access.so installed in FC5 could run "rpm -qf /usr/lib/httpd/modules/mod_access.so", please ?
I was unable to figure out the package name by using the search feature of yum.
thanks in advance