I have a problem when I'm trying to deploy Java-application.
Cannot invoke Tomcat manager: Connection reset by peer: socket write error
or
Cannot invoke Tomcat manager: Software caused connection abort: socket write error
In pom.xml I have this:
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<url>http://localhost:8085/manager/html</url>
<server>tomcat7</server>
<path>/java_web</path>
<username>admin</username>
<password>admin</password>
</configuration>
</plugin>
In tomcat-users.xml I have this:
<tomcat-users>
<role rolename="admin"/>
<role rolename="manager-script"/>
<role rolename="manager-gui"/>
<role rolename="manager-jmx"/>
<user username="admin" password="admin" roles="manager-gui,admin,manager-jmx,manager-script" />
</tomcat-users>
Also in Maven/conf/settings.xml I have:
<server>
<id>tomcat7</id>
<username>admin</username>
<password>admin</password>
</server>
When I'm trying to go to
http://localhost:8085/manager/html/deploy?path=%2Fjava_web&update=true
and input username and password (admin admin) I have error:
403 Access Denied
You are not authorized to view this page.
But I typed in tomcat-users.xml that user admin has manager-gui role. I'm using Tomcat 7.0.56 and Jenkins. Also use commands: clean and tomcat7-redeploy. Need help to understand what is wrong:C