D.Hajer
D.Hajer

Reputation: 131

Unable to deploy a war file in tomcat 8

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

Answers (1)

Vishwa Ratna
Vishwa Ratna

Reputation: 6390

Check your Proxy setting:

  1. Open internet option in IE.
  2. Goto LAN setting in Connection option.
  3. In LAN Setting there is advance setting tab, click it.
  4. You will see a Exception box at the bottom.
  5. Type the IP Address form which you want access. eg. 10.200;*.xyz.com
  6. This setting is to be done on system from where you want to access your web application.

Secondly you can do this:

add this to virtualhost

<Proxy *>
     AddDefaultCharset Off
     Order deny,allow
     Allow from all
   </Proxy>

Upvotes: 1

Related Questions