Guest User

Untitled

a guest
Feb 28th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. <plugins>
  2. <plugin>
  3. <groupId>org.apache.tomcat.maven</groupId>
  4. <artifactId>tomcat7-maven-plugin</artifactId>
  5. <version>2.0</version>
  6. <configuration>
  7. <url>http://localhost:8080/manager/text</url>
  8. <server>TomcatServer</server>
  9. <path>/helloworld</path>
  10. </configuration>
  11. </plugin>
  12. </plugins>
  13.  
  14. <server>
  15. <id>TomcatServer</id>
  16. <username>maven</username>
  17. <password>maven</password>
  18.  
  19. <role rolename="manager-gui"/>
  20. <role rolename="manager-script"/>
  21. <role rolename="admin"/>
  22. <user username="maven" password="maven" roles="admin,managerscript,manager-gui"/>
  23.  
  24. > Uploading: http://localhost:8080/manager/text/deploy?path=%2Fhelloworld
  25. 120/23235 KB
  26. Feb 28, 2018 1:11:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
  27. INFO: I/O exception (java.net.SocketException) caught when processing request: Connection reset
  28. Feb 28, 2018 1:11:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
  29. INFO: Retrying request
  30. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fhelloworld
  31. 2/23235 KB
  32. Feb 28, 2018 1:11:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
  33. INFO: I/O exception (java.net.SocketException) caught when processing request: Broken pipe (Write failed)
  34. Feb 28, 2018 1:11:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
  35. INFO: Retrying request
  36. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fhelloworld
  37. 2/23235 KB
  38. Feb 28, 2018 1:11:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
  39. INFO: I/O exception (java.net.SocketException) caught when processing request: Broken pipe (Write failed)
  40. Feb 28, 2018 1:11:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
  41. INFO: Retrying request
  42. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fhelloworld
  43. 2/23235 KB
  44. [INFO] ------------------------------------------------------------------------
  45. [INFO] BUILD FAILURE
  46. [INFO] ------------------------------------------------------------------------
  47. [INFO] Total time: 10.061 s
  48. [INFO] Finished at: 2018-02-28T13:11:42+05:00
  49. [INFO] Final Memory: 15M/60M
  50. [INFO] ------------------------------------------------------------------------
  51. [ERROR] Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.0:deploy (default-cli) on project springmvc-helloworld: Cannot invoke Tomcat manager: Broken pipe (Write failed) -> [Help 1]
  52. [ERROR]
  53. [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
  54. [ERROR] Re-run Maven using the -X switch to enable full debug logging.
  55. [ERROR]
  56. [ERROR] For more information about the errors and possible solutions, please read the following articles:
  57. [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
Add Comment
Please, Sign In to add comment