Maven远程部署

第一步:修改 {tomcat}/webapps/manager/META-INF/context.xml文件

# 原来的内容
<Context antiResourceLocking="false" privileged="true" >
    <Valve className="org.apache.catalina.valves.RemoteAddrValve"
         allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" />
</Context>
# 修改为
<Context antiResourceLocking="false" privileged="true" >
    <!--
        <Valve className="org.apache.catalina.valves.RemoteAddrValve"
             allow="127\.\d+\.\d+\.\d+|::1|0:0:0:0:0:0:0:1" />
     -->   
</Context>

第二步:修改{tomcat_home}/conf/tomcat-users.xml文件,在节点tomcat-users中添加两个角色和一个用户(注意要修改用户名和密码,防止有人恶意进入)。

<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<user username="xiaoming" password="xiaoming_123456" roles="manager-script,manager-gui"/>

下面是tomcat文档中对于各个角色的权限说明:

- manager-gui — Access to the HTML interface.
- manager-status — Access to the "Server Status" page only.
- manager-script — Access to the tools-friendly plain text interface that is described in this document, and to the "Server Status" page.
- manager-jmx — Access to JMX proxy interface and to the "Server Status" page.

第三步:在项目中的pom.xml文件的 build > plugins节点中添加远程部署插件:

OK,现在可以部署了:

参考

Access Tomcat Manager App from different host

Last updated