>mod_jserv.so is the old connector and is being replaced by mod_jk.so,
>which you can find here:
>
>http://jakarta.apache.org/builds/jakarta-tomcat/release/v3.2.3/bin/linux/
Thanks John.
I have downloaded and installed it.
I changed the config to read:
----------[config snippet]--------------------------
LoadModule jk_module /usr/lib/apache/mod_jk.so
<IfModule mod_jk.c>
ApJServManual on
ApJServSecretKey DISABLED
ApJServMountCopy on
ApJServLogLevel notice
ApJServDefaultProtocol ajpv12
ApJServDefaultHost localhost
ApJServDefaultPort 8007
ApJServMount /examples /root
ApJServMount /examples ajpv12://localhost:8007/root
</IfModule>
----------[config snippet]--------------------------
Now that I'm not using the mod_jserv.so the error I
get is:
Invalid command 'ApJServManual', perhaps mis-spelled or
defined by a module not included in the server configuration
I'm assuming that the ApJServ prefix here is not valid with
this module. How should I define the Tomcat server with
mod_jk.so?
iod