On configuring nio/ajp I am  getting and error  org.apache.common.MsgApj  p=
rocessHeader " SEVER:  BAD packet singnature 18245"

We are using jdk 1.5.0_14/ apache-tomcat-6.0.18 / redhat linux 2.6.9 .
I have tried configuring the following one at a time and it is working fine= 
. In order to have a high performance proxy we want to configure both nio/=
ajp and http/ajp together in tomcat and make it listen to apache http serve=
r  on 8080.


Tomcat server.xml

<Connector port=3D"8080" address=3D"serdev41" connectionTimeout=3D"5000" mi=
nProcessors=3D"5" maxProcessors=3D"100" protocol=3D"HTTP/1.1" redirectPort=
=3D"8443" /> <Connector port=3D"8081" maxThreads=3D"150" 
protocol=3D"org.apache.coyote.= http11.Http11NioProtocol"
connectionTimeout=3D"20000"  redirectPort=3D"8343= " /> <!--<Connector
port=3D"8082" protocol=3D"org.apache.coyote.http11. Http11Ap= rProtocol"
enableLookups=3D"false" redirectPort=3D"8543" connectionTimeout=
=3D"20000"/>--> <Connector port=3D"8083" protocol=3D"AJP/1.3"
redirectPort=3D"8943" /> <Connector address=3D"serdev41 "
redirectPort=3D"8643" channelNioSocket.soT= imeout=3D"600000"
protocol=3D"AJP/1.3" port=3D"0" channelNioSocket.port=3D"= 8084"
channelNioSocket.maxThreads=3D"150" channelNioSocket.maxSpareThreads=
=3D"50" channelNioSocket.minSpareThreads=3D"25" channelNioSocket.bufferSize=
=3D"16384"/>

worker.properties

worker.list=3Dworker1,worker2,worker3
workers.tomcat_home=3D/opt/www/tomcat-6.0/apache-tomcat-6.0.18
workers.java_home=3D/root/softwares/jdk1.5.0_14
ps=3D/
# Define Node1
# modifies the host as your host IP or DNS name.

worker.worker1.port=3D8083
worker.worker1.host=3Dserdev41
worker.worker1.type=3Dajp13
worker.worker1.lbfactor=3D1
worker.worker1.connection_pool_size=3D150
worker.worker1.connection_pool_timeout=3D600
worker.worker1.socket_keepalive=3D1

worker.worker2.port=3D8080
worker.worker2.host=3Dserdev41
worker.worker2.type=3Dajp13
worker.worker2.lbfactor=3D2
worker.worker2.connection_pool_size=3D150
worker.worker2.connection_pool_timeout=3D600
worker.worker2.socket_keepalive=3D1

worker.worker3.port=3D8084
worker.worker3.host=3Dserdev41
worker.worker3.type=3Dajp13
worker.worker3.lbfactor=3D3
worker.worker3.connection_pool_size=3D150
worker.worker3.connection_pool_timeout=3D600
worker.worker3.socket_keepalive=3D1

mod_jk.conf

LoadModule jk_module modules/mod_jk.so
JkWorkersFile conf/workers.properties
JkLogFile logs/mod_jk.log
JkLogLevel info
JkLogStampFormat "[%a %b %d %H: %M: %S %Y]"
JkRequestLogFormat "%w %V %T"
JkMount /* worker3


Httpd.conf
<IfModule mod_proxy.c>
        ProxyRequests off
        <Proxy *>
                Order deny,allow
                Allow from all
        </Proxy>
        ProxyPreserveHost On
        ProxyPass        /proxy ajp://serdev41:8084
        ProxyPassReverse /proxy ajp://serdev41:8084 </IfModule>

Include conf/mod_jk.conf
LoadModule  proxy_module         modules/mod_proxy.so
LoadModule  proxy_http_module    modules/mod_proxy_http.so


On making a request I am  getting we are getting the above mentioned error =
,what could be the problem for this

Thanks in advance

-- 
View this message in context: 
http://www.nabble.com/SEVERE%3A--BAD-packet-singnature-18245-tp22656151p22656151.html
Sent from the Tomcat - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to