Error when I try deploy application to tomcat7 server

后端 未结 11 1672
轻奢々
轻奢々 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:05

    In my case on my AWS amazon instance the reason was:

    The Disk Space Was FULL note 99% on my EC2 spot instance

    Am using jenkins using this command normally

     mvn clean tomcat7:redeploy -Ddeploy.password=xxxAG1
     -Ddeploy.username=admin -Ddeploy.context=/v1 -Ddeploy.url=http://localhost:8080/manager/text
    

    Just Free that space and it worked with me.

    The Error i had is

    [INFO] I/O exception (java.net.SocketException) caught when processing request: Connection reset
    [INFO] Retrying request
    
    
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 53.914 s
    [INFO] Finished at: 2018-01-10T08:38:28+00:00
    [INFO] Final Memory: 47M/371M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.apache.tomcat.maven:tomcat7-maven-plugin:2.2:redeploy (default-cli) on project XXXX-app: Cannot invoke Tomcat manager: Connection reset -> [Help 1]
    [ERROR] 
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    

    Hint use this command to track down what is eating your space from ( command is from stackoverflow ) sudo du -x -d1 -h /

提交回复
热议问题