I am struggling to get my Netbeans IDE to deploy my Java Web Project to a tomcat server (I normally use Eclipse). I have setup the tomcat server (7.0.55) within Netbeans (8.0.1) and can start and stop the server. Unfortunately, when I attempt to deploy any applications I receive this error:
Starting Tomcat process...
Waiting for Tomcat...
Tomcat server started.
In-place deployment at C:\Users\kevin.bowersox\Documents\NetBeansProjects\WebApplication1\build\web
Deployment is in progress...
deploy?config=file%3A%2FC%3A%2FUsers%2FKEVIN%7E1.BOW%2FAppData%2FLocal%2FTemp%2F1%2Fcontext882537679043940070.xml&path=/WebApplication1
Connection timed out: connect
C:\Users\kevin.bowersox\Documents\NetBeansProjects\WebApplication1\nbproject\build-impl.xml:1070: The module has not been deployed.
See the server log for details.
BUILD FAILED (total time: 6 minutes 0 seconds)
I have checked all of the tomcat logs (catalina.out, localhost, etc), but they do not reveal what is causing this error. I can see that the server startup occurs in the logs, but the deployment fails. At the moment I am only deploying a very simple Java web application (basically what gets created initially).
Can anyone point me in the right direction or tell me where to find more debugging output? I have googled this issue for the past few hours with no luck. Thanks.