Error al iniciar apache httpd-2.4.4 configurado con mod_jk

2

Estoy intentando configurar mod_jk con httpd-2.4.4 y obtengo el siguiente error al iniciar apache.

httpd: Syntax error on line 500 of /usr/local/apache/conf/httpd.conf:
Syntax error on line 2 of /usr/local/apache/conf/other/httpd-mine.conf:
    Cannot load /usr/libexec/apache2/mod_jk.so into server:
        dlopen(/usr/libexec/apache2/mod_jk.so, 10):
    Symbol not found:
        _ap_log_error\n  Referenced from: /usr/libexec/apache2/mod_jk.so
        Expected in: flat namespace\n in /usr/libexec/apache2/mod_jk.so

¿Cómo puedo solucionar esto?

Estoy en OS X 10.8.4 (12E55)

Compilé httpd y mod_jk desde la fuente y tanto la compilación salió bien.

Así es como construí y la información conf .:

# compile instructions for httpd
# apr, apr-util in srclib/
httpd-2.4.4$ ./configure --prefix=/usr/local/apache --with-included-apr --with-  pcre=/usr/local
httpd-2.4.4$ make
httpd-2.4.4$ sudo make install

# compile instructions for mod_jk
tomcat-connectors-1.2.37-src$ cd native
native$ ./configure CFLAGS='-arch x86_64' APXSLDFLAGS='-arch x86_64' --with-apxs=/usr/sbin/apxs
native$ make
native$ sudo make install

#Content of /usr/local/apache/conf/other/httpd-mine.conf 
NameVirtualHost *:80
LoadModule jk_module /usr/libexec/apache2/mod_jk.so
    
pregunta thiyag 06.07.2013 - 11:55

1 respuesta

1

Encontré el problema. Estaba apuntando a la versión incorrecta de apxs (httpd-2.2) al configurar la construcción mod_jk .

native$ ./configure CFLAGS='-arch x86_64' APXSLDFLAGS='-arch x86_64' --with-apxs=/usr/sbin/apxs

Después de compilar mod_jk con el archivo apxs correcto, httpd se inició sin problemas.

native$ ./configure CFLAGS='-arch x86_64' APXSLDFLAGS='-arch x86_64' --with-apxs=/usr/local/apache/bin/apxs
    
respondido por el thiyag 08.07.2013 - 06:51

Lea otras preguntas en las etiquetas