Reputation: 131
I'm trying to deploy a WAR in tomcat server. I've successfully built a WAR file using
mvn package
When I try to deploy it using tomcat 8.5.31 through Manager App, I get this error:
Network Error (tcp_error)
- 503 error - A communication error occurred: ""
The Web Server may be down, too busy, or experiencing other problems
preventing it from responding to requests. You may wish to try again at a
later time.
What are the reasons of the non-deployment of the WAR? any help ! Thanks.
Upvotes: 1
Views: 475
Reputation: 6390
Check your Proxy setting:
Secondly you can do this:
add this to virtualhost
<Proxy *>
AddDefaultCharset Off
Order deny,allow
Allow from all
</Proxy>
Upvotes: 1