map_name_at is a function in jk_map.c in 
jakarta-tomcat-3.2.1-src/src/native/jk 

Obviously you did not compilie/link your mod_jk.so right. 

Since you are using nonstandard directories, and you do not tell us
how you compiled the thing, it is hard to help you.

You may try to go to the jakarta-tomcat-3.2.1-src/src/native/apache1.3 
directory which should contain a bunch of *.o object files and do:

gcc -shared -o mod_jk.so *.o

If this does not work, you probably need to repeat the compilation and
linking of the mod_jk.so .

You may try to create yourself a script along the lines
(make sure that the environment variables point where they should)
--------------------------- cut ----------------
#!/bin/bash

MODJKSRCDIR=/usr/local/src/jakarta-tomcat-3.2.1-src/src/native/apache1.3
APACHE_HOME=/usr/local/apache
APXS=${APACHE_HOME}/bin/apxs
TC_HOME=/usr/local/tomcat
JAVA_HOME=/usr/java

cd ${MODJKSRCDIR}
${APXS} -o mod_jk.so  -I../jk  -I${JAVA_HOME}/include \
  -I${JAVA_HOME}/include/linux  -c  *.c  ../jk/*.c

gcc -shared -o mod_jk.so *.o

cp mod_jk.so  ${APACHE_HOME}/libexec
--------------------------- cut --------------------

and see what happens...

On Sun, 29 Apr 2001, johnd wrote:

> Please help if you know how to get mod_jk working, I'm desperate.
> 
> I am really stuck...I have apache compiled to take DSOs, I am using redhat
> linux 6.2, on a x86 box.  The latest download of apache.  I built my own
> mod_jk.so from source.
> 
> I get this error message when I run apache.
> 
> -----------------------------------
> [johnd@board apache2080]$ bin/httpd &
> [1] 30230
> [johnd@board apache2080]$ Syntax error on line 9 of 
>/home/tomcat/conf/mod_jk.conf-auto:
> Cannot load /home/apache2080/libexec/mod_jk.so into server: 
>/home/apache2080/libexec/mod_jk.so: undefined symbol: map_name_at
> -----------------------------------
> 

Jan K. Labanowski            |    phone: 614-292-9279,  FAX: 614-292-7168
Ohio Supercomputer Center    |    Internet: [EMAIL PROTECTED] 
1224 Kinnear Rd,             |    http://www.ccl.net/chemistry.html
Columbus, OH 43212-1163      |    http://www.osc.edu/

Reply via email to