Hi !

Here is the configuration we have:

In our server.xml:
<Connector className="org.apache.coyote.tomcat5.CoyoteConnector"
  port="7547"
  maxSpareThreads="75"
  minSpareThreads="40"
  maxThreads="500"
  enableLookups="false"
  acceptCount="100"
  tomcatAuthentication="false"
  protocol="AJP/1.3"
/>

##############################

In our workers.properties:

#parametrage de mod_jk

workers.apache_log=/usr/local/apache/logs
workers.tomcat_home=/usr/local/tomcat
workers.java_home=/usr/local/java
ps=/

worker.list=ajp13

worker.ajp13.type=ajp13
worker.ajp13.host=81.91.65.146
worker.ajp13.port=7547
worker.ajp13.lbfactor=50
worker.ajp13.cachesize=350
worker.ajp13.cache_timeout=600
worker.ajp13.socket_keepalive=0
worker.ajp13.socket_timeout=600

################################

In our httpd.conf:

JkMount /serv/* ajp13

################################

I don't know which version of mod_jk we're using ... I'm looking into it.

Nicolas

lmelendez a écrit :
in mod_jk.conf for apache, we have the following lines:

  # define the channel
  JkSet channel.socket:localhost:8009.port 8009
  JkSet channel.socket:localhost:8009.host 127.0.0.1

  # define the worker
  JkSet ajp13:localhost:8009.channel channel.socket:localhost:8009

  <Location "/console">
     JkUriSet group ajp13:localhost:8009
  </Location>

I'll do some research on how to change the connector and test it to see if
there is a change.

Leo.



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to