Can connect to httpd but not to tomcat
by mfoley from LinuxQuestions.org on (#6P90H)
I've moved a webapp from one host to another. The only substantial thing changed (I believe) is the FDQN of the host. I can run httpd and from a remote computer the browser can display DOCUMENT_ROOT/index.html, so that part is working. However, I cannot get to the .jsp pages served by Tomcat. The URL should be newdom.org/office. But nothing. There are no messages in /var/log/httpd/access_log, error_log, /var/log/messages, /var/log/syslog, /srv/tomcat/log/catalina.out.
The <Host> section of server.xml is:
Code: <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log" suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>There are no aliases or explict FDQN references in server.xml.
The new host is an image backup/restore of the original so all modules, etc should be there.
Tomcat is running.
I'm sure this is something simple, but I'm out of ideas.
Any suggestions?
The <Host> section of server.xml is:
Code: <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log" suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>There are no aliases or explict FDQN references in server.xml.
The new host is an image backup/restore of the original so all modules, etc should be there.
Tomcat is running.
I'm sure this is something simple, but I'm out of ideas.
Any suggestions?