Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tomcat-maven-plugin 403 error

When I use mvn tomcat:deploy of tomcat-maven-plugin there is a 403 error:

Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.0:deploy (default-cli) on project my-webapp: Cannot invoke Tomcat manager: Server returned HTTP response code: 403 for URL: http://localhost:8080/manager/text/deploy?path=%2Fdms&war=

I think it because of null war parameter. But why is it null???

In pom.xml there is:

<plugin>   <groupId>org.codehaus.mojo</groupId>   <artifactId>tomcat-maven-plugin</artifactId>    <configuration>     <warFile>target\my-webapp.war</warFile>     <server>myserver</server>     <url>http://localhost:8080/manager/text</url>     <path>/dms</path>   </configuration> </plugin> 
like image 235
Ярик Харченко Avatar asked Mar 23 '11 19:03

Ярик Харченко


1 Answers

you should use /text:

http://localhost:8080/manager/text

and also add to user role manager-script

like image 159
Ivan Avatar answered Sep 28 '22 16:09

Ivan