This document explains how to configure Cargo remote deployment support on a Jetty container.
By default, Jetty does not come with possibilities for remote deployment. In order to add such a support to Jetty, Cargo uses a "Jetty remote deployer" Web application.
This application is a simple servlet-based application which exposes methods such as deploy or undeploy on standard HTTP POST URLs. When thse HTTP methods are called, the servlet implementing these methods connects to the Jetty Server implementation and does deployment related actions on the server; this Web application can therefore be seen as a kind of remote administration proxy.
Being a standard Web application, the Cargo Jetty remote deployer application can be secured using Jetty users and roles.
Two versions of the Jetty remote deployer WAR are available on the Cargo downloads page (scroll down to the Tools section):
cargo-jetty-7-and-onwards-deployer: The Deployer Web application for the Jetty remote containers, which must have been deployed to Jetty before using the CARGO remote deployer. Designed to work with Jetty 7.x and later (Jetty from Eclipse.org)cargo-jetty-6-and-earlier-deployer: The Deployer Web application for the Jetty remote containers, which must have been deployed to Jetty before using the CARGO remote deployer. Designed to work with Jetty 6.x and earlier (Jetty from Mortbay.org)Please make sure to download and install the correct flavour for your Jetty version.
By default, the Cargo Jetty remote deployer comes with no security.
In order to activate security, follow these steps:
WEB-INF/web.xml file of the Cargo Jetty remote deployer WARUncomment in order to activate security. By default, that configuration is as follows:login-config set to BASIC.security-constraint has a auth-constraint with role-name.manager:realm.properties fileAdd, for example, the following definition
someusername: somepassword,manager |
To try the security settings, you can try to visit the /cargo-jetty-deployer context on your server, for example http://production27:8080/cargo-jetty-deployer, using any Web browser. If security is configured well, it should:
Command / is unknownNote: Jetty's website has documentation on hashing the password. |
Here is an example Maven2 plugin configuration that:
production17, port 8080managersomeusername with password somepassword is defined as manager<dependencies>
<dependency>
<groupId>test.somegroup</groupId>
<artifactId>somewar</artifactId>
<version>1.0.0</version>
<type>war</type>
</dependency>
</dependencies>
...
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>${cargo.plugin.version}</version>
<configuration>
<container>
<containerId>jetty6x</containerId>
<type>remote</type>
</container>
<configuration>
<type>runtime</type>
<properties>
<cargo.hostname>production17</cargo.hostname>
<cargo.servlet.port>8080</cargo.servlet.port>
<cargo.remote.username>someusername</cargo.remote.username>
<cargo.remote.password>somepassword</cargo.remote.password>
</properties>
</configuration>
<deployer>
<type>remote</type>
</deployer>
<deployables>
<deployable>
<groupId>test.somegroup</groupId>
<artifactId>somewar</artifactId>
<type>war</type>
<properties>
<context>/myAppContext</context>
</properties>
</deployable>
</deployables>
</configuration>
</plugin>
</plugins>
|
To run the given Maven2 plugin configuration on a simple Maven2 WAR project, simply execute:
mvn war:war mvn cargo:deploy |
By default, Jetty sets theĀ
In this case, open the target Jetty container's
|