Hi All,
I am using tomcat-7.0.82 and httpd-2.4.25.
Following are my configuration :
in server.xml
<!-- Define an AJP 1.3 Connector on port 8009 -->
<Connector port="5644" enableLookups="false" redirectPort="8443"
protocol="AJP/1.3" URIEncoding="UTF-8" />
in httpd.conf
Listen 5643
Loaded mod_proxy_ajp and mod_proxy
Include /home/ananya/apache-2.4.25/other/ajp.conf
in ajp.conf
ProxyRequests Off
<Proxy *>
Require all granted
</Proxy>
ProxyPass / ajp://15.213.91.33:5644/
ProxyPassReverse / ajp://15.213.91.33:5644/
I started both tomcat and apache server. Apache is listening on port 5643
and tomcat on 5644.
>From browser I am sending request ajp://15.213.91.33:5644, but getting
"this page is not working".
I checked in catalina.log ,
Oct 26, 2017 12:51:24 PM org.apache.coyote.ajp.AjpMessage processHeader
SEVERE: Invalid message received with signature 18245
Where am I going wrong ?
how to send request from browser.
Apache location is = /home/ananya/apache-2.4.25/conf
Tomcat location is = /home/ananya/apache-tomcat-7.0.82/conf
Thanks
Hemant