Error when I try deploy application to tomcat7 server

后端 未结 11 1677
轻奢々
轻奢々 2020-12-15 05:59

I am trying deploy a web application to tomcat7 via eclipse luna, but I am getting this error:

Uploading: http://localhost:8080/manager/text/deploy?path=%2Fl         


        
11条回答
  •  一个人的身影
    2020-12-15 06:13

    (Re-)deploy with the Maven tomcat plugin failed for me too with a connection reset on the client and 403 status code in the localhost_access.log on Tomcat 8.5.30.

    This Tomcat version's manager app has a RemoteAddrValve configured by default, restricting access to the /manager/* path to localhost. See $TOMCAT_HOME/webapps/manager/META-INF/context.xml.

    It helped to turn on the logging to find the solution to this.

提交回复
热议问题