Hi, I'm on OS X 10.8.4. I'm trying to configure mod_jk with httpd-2.4.4 and getting the below error when starting 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 How can I fix this? I compiled httpd and mod_jk from the source and both the build went fine. Here's how I built and the conf info.: # 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 I tried googling and found the above build instructions but still I get the error. Thanks in advance for the help! -- Regards, Thiyag