1 - Yes it's seems the good binary.
 2 - sample part httpd.conf to add for support mod_jk in apache

# Load mod_jk module
LoadModule    jk_module    modules/mod_jk.so
JkWorkersFile /etc/apache2/jk-workers.properties
JkLogFile     /var/log/apache2/mod_jk.log
JkLogLevel    ERROR
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions     +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat     "%w %V %T"
JkMount /cluster-1.0-SNAPSHOT/app*  loadbalancer

Be carreful :
in the line LoadModule,   modules/mod_jk.so is the path to your module
in the line JkWorkersFile, /etc/apache2/jk-workers.properties is the path to
you workers.properties

for a sample of worker propertie

# workers.properties
ps=/

# List the workers name
worker.list=node01
# ----------------
# First worker
# ----------------
worker.node01.port=8009
worker.node01.host=agnes
worker.node01.type=ajp13

Be carefull when you configure your Tomcat's server.xml file
add jvmRoute="node01" in your engine.

Be think to read the documentation of tomcat 5.5
and the documentation of apache connector for better configuration

On 2/17/06, Brad O'Hearne <[EMAIL PROTECTED]> wrote:
>
> Bump. Does anyone have any idea on these? I need to get Tomcat
> configured with apache. Thanks!
>
> Brad
>
> On Feb 16, 2006, at 8:00 PM, Brad O'Hearne wrote:
>
> > I am trying to get the Tomcat connector configured to connect
> > tomcat and apache and I have two questions:
> >
> > 1) I downloaded the binary distribution for linux, and the filename
> > was: jakarta-tomcat-connectors-jk-1.2.14-linux-sles9-x86_64-
> > worker.so. Is this supposed to be mod_jk?
> >
> > 2) What kind of workers.properties should I have? There is no
> > sample in the http/conf or tomcat/conf directory.
> >
> > Thanks,
> >
> > Brad
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

Reply via email to