Guest User

Untitled

a guest
Jul 14th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. --- tomcat7-maven-plugin:2.2:redeploy (default-cli) @ web-customer-tracker ---
  2. [INFO] Deploying war to http://localhost:8080/web-customer-tracker
  3. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fweb-customer-tracker&update=true
  4. 2692/20011 KB
  5. [INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error
  6. [INFO] Retrying request
  7. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fweb-customer-tracker&update=true
  8. 2692/20011 KB
  9. [INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error
  10. [INFO] Retrying request
  11. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fweb-customer-tracker&update=true
  12. 2884/20011 KB
  13. [INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset by peer: socket write error
  14. [INFO] Retrying request
  15. Uploading: http://localhost:8080/manager/text/deploy?path=%2Fweb-customer-tracker&update=true
  16. 2884/20011 KB
  17. [INFO] ------------------------------------------------------------------------
  18. [INFO] BUILD FAILURE
  19. [INFO] ------------------------------------------------------------------------
  20. [INFO] Total time: 9.686 s
  21. [INFO] Finished at: 2018-07-14T21:19:25+05:30
  22. [INFO] ------------------------------------------------------------------------
  23. [ERROR] Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:redeploy (default-cli) on project web-customer-tracker: Cannot invoke Tomcat manager: Connection reset by peer: socket write error -> [Help 1]
  24.  
  25. <build>
  26. <plugins>
  27. <plugin>
  28. <groupId>org.apache.tomcat.maven</groupId>
  29. <artifactId>tomcat7-maven-plugin</artifactId>
  30. <version>2.2</version>
  31. <configuration>
  32. <url>http://localhost:8080/manager/text</url>
  33. <server>TomcatServer</server>
  34. <path>/web-customer-tracker</path>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. <finalName>web-customer-tracker</finalName>
  39. </build>
  40.  
  41. <server>
  42. <id>TomcatServer</id>
  43. <username>admin</username>
  44. <password>password</password>
  45. </server>
  46.  
  47. <tomcat-users xmlns="http://tomcat.apache.org/xml"
  48. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  49. xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
  50. version="1.0">
  51. <role rolename="manager-gui"/>
  52. <role rolename="manager-script"/>
  53. <user username="admin" password="password" roles="manager-gui,manager-script"/>
  54. </tomcat-users>
Add Comment
Please, Sign In to add comment