Warum habe ich 2 httpd-Modulordner? /usr/lib64/httpd/modules und /etc/httpd/modules

Warum habe ich 2 httpd-Modulordner? /usr/lib64/httpd/modules und /etc/httpd/modules

Ich versuche, mod_wsgi für meine virtuelle Umgebung auf Python 2.7 (was nicht die Standardeinstellung meines Servers ist) zu kompilieren.

Ich mache so etwas:

wget -q "https://github.com/GrahamDumpleton/mod_wsgi/archive/4.2.8.tar.gz"
tar -xzf '4.2.8.tar.gz'
cd ./mod_wsgi-4.2.8
./configure --with-python=python2.7 --with-apxs=/usr/sbin/apxs LDFLAGS="-R/usr/local/lib" --prefix=/usr/local
make
make install

Ich habe mod_wsgi.so bei beiden /usr/lib64/httpd/modules/mod_wsgi.sound/etc/httpd/modules/mod_wsgi.so

In httpd.conf habe ich beides versucht:

LoadModule wsgi_module /usr/lib64/httpd/modules/mod_wsgi.so
LoadModule wsgi_module modules/mod_wsgi.so

Antwort1

Wie @ikrabbe vermutet, handelt es sich um symbolische Links.

# ls -las /etc/httpd
total 16
4 drwxr-xr-x  4 root root 4096 Jun 19 12:43 .
4 drwxr-xr-x 50 root root 4096 Jun 19 12:43 ..
4 drwxr-xr-x  2 root root 4096 Jun 19 12:43 conf
4 drwxr-xr-x  2 root root 4096 Jun 19 12:43 conf.d
0 lrwxrwxrwx  1 root root   19 Jun 19 12:43 logs -> ../../var/log/httpd
0 lrwxrwxrwx  1 root root   29 Jun 19 12:43 modules -> ../../usr/lib64/httpd/modules
0 lrwxrwxrwx  1 root root   19 Jun 19 12:43 run -> ../../var/run/httpd

Antwort2

Ich vermute nur: /etc/httpd/modules verlinkt auf /usr/lib64/httpd/modules, es handelt sich also um dieselben Dateien.

verwandte Informationen