Errore durante l'avvio di apache httpd-2.4.4 configurato con mod_jk

2

Sto provando a configurare mod_jk con httpd-2.4.4 e ottenere l'errore di sotto all'avvio di 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

Come posso risolvere questo problema?

Sono attivo OS X 10.8.4 (12E55)

Ho compilato httpd e mod_jk dal sorgente ed entrambi i build sono andati bene.

Ecco come ho creato e le informazioni 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
    
posta thiyag 06.07.2013 - 11:55
fonte

1 risposta

1

Trovato il problema. Stavo indicando la versione apxs sbagliata (httpd-2.2) durante la configurazione della build mod_jk .

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

Dopo aver compilato mod_jk con il file apx di destra, httpd è stato avviato senza problemi.

native$ ./configure CFLAGS='-arch x86_64' APXSLDFLAGS='-arch x86_64' --with-apxs=/usr/local/apache/bin/apxs
    
risposta data 08.07.2013 - 06:51
fonte

Leggi altre domande sui tag