yahelmalkin
IS-IT--Management
Hello,
I'm really hoping someone can come to my rescue here, I had been browsing the web for hours trying to solve my problem.
I'm running Apache (Apache/1.3.27 ) and Tomcat (version 4) on two separate Linux machine.
I configured Apache to load the mod_jk module and configured the worker.properties with the Tomcat ip address as follow:
ps=/
worker.list=app-01
worker.app-01.port=8009
worker.app-01.host=10.1.201.21
worker.app-01.type=ajp13
worker.app-01.cachesize=10
worker.app-01.cache_timeout=600
worker.app-01.socket_keepalive=1
worker.app-01.socket_timeout=300
However when starting tomcat and Apache I can see from a netstat command on the tomcat machine that the port 8009 is not activated (I copied below my server.xml).
Could you please help me figuring out what it going on. I had been in this issue for a week and start to really be discouraged.
Any input will be very valuable to me.
THANK YOU.
Yahel
server.xml
<Server port="8005" shutdown="SHUTDOWN" debug="0">
<Service name="Tomcat-Lemo-Coaxial-Service">
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8080"
minProcessors="5"
maxProcessors="75"
enableLookups="true"
redirectPort="8443"
acceptCount="100"
debug="0"
connectionTimeout="20000"
useURIValidationHack="false"
disableUploadTimeout="true"/>
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8009"
minProcessors="5"
maxProcessors="75"
enableLookups="true"
redirectPort="8443"
acceptCount="10"
debug="0"
connectionTimeout="0"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
<Engine name="Standalone" defaultHost="localhost" debug="0">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="catalina_log."
suffix=".txt"
timestamp="true"/>
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true">
<DefaultContext debug="0" reloadable="true" crossContext="true" cookies="true" />
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="lemo_coaxial_log."
suffix=".log"
timestamp="true"/>
</Host>
</Engine>
</Service>
</Server>
I'm really hoping someone can come to my rescue here, I had been browsing the web for hours trying to solve my problem.
I'm running Apache (Apache/1.3.27 ) and Tomcat (version 4) on two separate Linux machine.
I configured Apache to load the mod_jk module and configured the worker.properties with the Tomcat ip address as follow:
ps=/
worker.list=app-01
worker.app-01.port=8009
worker.app-01.host=10.1.201.21
worker.app-01.type=ajp13
worker.app-01.cachesize=10
worker.app-01.cache_timeout=600
worker.app-01.socket_keepalive=1
worker.app-01.socket_timeout=300
However when starting tomcat and Apache I can see from a netstat command on the tomcat machine that the port 8009 is not activated (I copied below my server.xml).
Could you please help me figuring out what it going on. I had been in this issue for a week and start to really be discouraged.
Any input will be very valuable to me.
THANK YOU.
Yahel
server.xml
<Server port="8005" shutdown="SHUTDOWN" debug="0">
<Service name="Tomcat-Lemo-Coaxial-Service">
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8080"
minProcessors="5"
maxProcessors="75"
enableLookups="true"
redirectPort="8443"
acceptCount="100"
debug="0"
connectionTimeout="20000"
useURIValidationHack="false"
disableUploadTimeout="true"/>
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8009"
minProcessors="5"
maxProcessors="75"
enableLookups="true"
redirectPort="8443"
acceptCount="10"
debug="0"
connectionTimeout="0"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>
<Engine name="Standalone" defaultHost="localhost" debug="0">
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="catalina_log."
suffix=".txt"
timestamp="true"/>
<Host name="localhost" debug="0" appBase="webapps" unpackWARs="true" autoDeploy="true">
<DefaultContext debug="0" reloadable="true" crossContext="true" cookies="true" />
<Logger className="org.apache.catalina.logger.FileLogger"
prefix="lemo_coaxial_log."
suffix=".log"
timestamp="true"/>
</Host>
</Engine>
</Service>
</Server>