Cannot invoke Tomcat manager: Error writing to server
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cannot invoke Tomcat manager: Error writing to server相关的知识,希望对你有一定的参考价值。
Failed to execute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:redeploy (default-cli) on project pop-webs-server: Cannot invoke Tomcat manager: Error writing to server -> [Help 1]
我遇到过跟你一样的提示,myeclipse10+tomcat7+maven3,我的原因还是在pom文件上,使用tomcat6的时候,配置如下:<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<server>tomcat</server>
<url>http://localhost/manager/html</url>
<path>/</path>
</configuration>
</plugin>
如果是tomcat7的话,url必须改成这样
<url>http://localhost/manager/text</url>
才行
希望我的回答对你有帮助,我也是刚开始使用maven 参考技术A 第一步:
在 tomcat/conf/tomcat-users.xml 配置权限和用户,把代码copy到你的配置文件中.
<role rolename="admin-gui"/>
<role rolename="admin-script"/>
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-jmx"/>
<role rolename="manager-status"/>
<user username="tomcat" password="tomcat" roles="manager-gui,manager- script,manager-jmx,manager-status,admin-script,admin-gui"/>
第二步 :
在pom.xml 文件中加入
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<url>http://localhost:8080/manager/text</url>
<!--
如果是tomcat7,tomcat8 的话,url必须改成这样
<url>http://localhost:8080/manager/text
2、deploy:eg http://localhost:8080/manager/deploy?path=/phoenix&war=&update=true
but the deploy url does not find.
the warning is as follows:
The page you tried to access (/manager/deploy) does not exist.
The Manager application has been re-structured for Tomcat 7 onwards and some of URLs have changed. All URLs used to access the Manager application should now start with one of the following options:
/manager/html for the HTML GUI
/manager/text for the text interface
/manager/jmxproxy for the JMX proxy
/manager/status for the status pages
-->
<username>tomcat</username>
<password>tomcat</password>
<path>/SpingMvc2</path>
</configuration>
</plugin> 参考技术B 先启动tomcat,再run。 参考技术C 看具体的LOG信息。。。。
部署Tomcat服务时,解决Cannot invoke Tomcat Manager 异常
最近,在使用Jenkins对工程一键部署的时候,出现调用Tomcat Manager 异常,对其解决方案特记于次。
异常信息
可能存在的异常:(1)Cannot invoke Tomcat manager: Error writing to server ;(2)Cannot invoke Tomcat manager: Connection refused: connect -> [Help 1]。
异常原因
经查询资料,安装Tomcat时,默认带着manager工程,其负责WAR包的部署等功能。由于使用manager需要账户与密码进行验证,所以如果没有配置账户与密码,就会报这样的异常。
但还存在这种情况,下边该配置的都配置了,但还会报这个异常,这时候需要你重启一下Tomcat,然后再部署。(原因是由于Tomcat的远程地址拦截器造成的结果,需要在/conf/Catalina/localhost/manager.xml中添加RemoteAddrValve属性,参考文献3)
解决方案
1. web工程的pom文件中添加的tomcat-maven-plugin插件,该插件用于将由maven构建的war包部署到指定的远程Tomcat容器,并配置账号与密码等信息,该账户密码需要与对应Tomcat的conf/tomcat-user.xml配置一致。
1 <plugin> 2 <groupId>org.codehaus.mojo</groupId> 3 <artifactId>tomcat-maven-plugin</artifactId> 4 <version>1.1</version> 5 <configuration> 6 <url>http://ip/manager/text</url> 7 <username>tomcat</username> 8 <password>tomcat</password> 9 <update>true</update> 10 <path>/xxxx</path> 11 </configuration> 12 </plugin>
其中,url指定远程Tomcat,path对应webapps中的具体路径。
2. 在conf/tomcat-user.xml中添加如下角色信息,以及具有这些角色的用户
1 <role rolename="manager-gui" /> 2 <role rolename="manager-script" /> 3 <role rolename="admin-gui" /> 4 <role rolename="admin-script" /> 5 <user username="tomcat" password="tomcat" roles="manager-gui,manager-script,admin-gui,admin-script" />
3. 有人说还需要修改Maven用户仓库路径下的配置文件(USER_HOME/.m2/settings.xml),本人没有改,也成功了(也写在这做参考)。该配置是本地maven仓库访问远程仓库时,需要配置的用户名和密码。
1 <settings> 2 ... 3 <servers> 4 ... 5 <server> 6 <id>my-tomcat</id> 7 <username>manager</username> 8 <password>managerPwd</password> 9 </server> 10 </servers> 11 12 </settings>
参考:
- https://stackoverflow.com/questions/16230666/failed-to-execute-goal-org-codehaus-mojotomcat-maven-plugin1-1deploy-default
- http://tomcat.apache.org/tomcat-7.0-doc/manager-howto.html
- http://www.cnblogs.com/xyb930826/p/5725340.html
以上是关于Cannot invoke Tomcat manager: Error writing to server的主要内容,如果未能解决你的问题,请参考以下文章
Jenkins 失败: Cannot invoke method tokenize() on null object
lit element: Class constructor h cannot be invoked without 'new'
java.lang.NullPointerException: Cannot invoke "Object.hashCode()" because "key"
解决关于:TypeError: Class constructor Model cannot be invoked without 'new'
转-Cannot refer to an instance field arg while explicitly invoking a constructor
jsp提示错误: Cannot invoke equals(int) on the primitive type int