I am using tcServer (Tomcat 7 wrapper) to deploy a war file. I have successfully deployed the war file on machine A. Machine A runs on an older version of centOS and java, and the war is deployed fine. When I try to deploy the war (exact same dist. of tcserver/tomcat) on Machine B, which runs a newer jdk and CentOS version, the war does get exploded by tomcat, and the catalina.out file shows that the server started up fine, however after that nothing happens. I use logback for logging and none of the logs are showing up.
Catalina.out:
Jun 29, 2015 6:02:33 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 1755 ms
I am unable to make any http requests to the server either. I am using the exact same server.xml/context.xml files on both Machines, and the resources on Machine B are invalid (Machine B does not have access to them). Could this behavior be caused by this? What else could the issue be?