You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Mike Braden <mb...@utenzi.com> on 2001/02/01 16:58:42 UTC

RE: TOMCAT/Apache & jk

Nadia,

I'm not sure about Digital Unix, but the first line should be the library
file, which is usually a shared object library (Sun=.so, HPUX=.sl) i.e.
LoadModule   jk_module   libexec/mod_jk.so

> LoadModule   jk_module   libexec/mod_jk.c
> AddModule    mod_jk.c


Also, make sure that mod_jk is built for your system.  Did you compile
mod_jk or get the binary from somewhere?

Check /usr/local/libexec to make sure the object file is there and that it
is the correct type.

# file /usr/local/libexec/mod_status.so
/usr/local/libexec/mod_status.so:       ELF 32-bit LSB dynamic lib 80386
Version 1, dynamically linked, not stripped

Make sure the file type reported back matches other libraries on your system
(the architecture is the same).  If it is wrong, then the file is not being
built correctly.

Thanks,

Mike.