{scrollbar}

You can change the status of an application in two different ways. You can use the Deployer tool or the Geronimo Administration Console.

As mentioned before, the Deployer tool has many commands. In Installing and removing applications section we have explored mainly deploy and undeploy and very briefly list-modules. This section is going to focus on the latter command to retrieve the name of the module we want to change the status and will introduce two new commands, start and stop. Later we will discuss the use of the Geronimo Administration Console as the alternative method.

The list-module command accepts the following tree parameters:

This is usefull to identify the status of a particular module and the module ID itself. We will use this command to identify the HelloWorld application and change it's status.

From a command line window run the following command from the <geronimo_home>\bin directory to list all the modules:

deploy --user system --password manager list-modules

You will receive a list of all the modules installed on the server. Note that the started modules are differenciated by a + sign on the left and are displayed first in the list.

#000000solid D:\geronimo-1.1-Tomcat\bin>deploy --user system --password manager list-modules Using GERONIMO_BASE: D:\geronimo-1.1-Tomcat Using GERONIMO_HOME: D:\geronimo-1.1-Tomcat Using GERONIMO_TMPDIR: D:\geronimo-1.1-Tomcat\var\temp Using JRE_HOME: C:\Java\jdk1.5.0_06\ Found 34 modules + console.dbpool/Derby_Test/1.0/rar + geronimo/activemq/1.1/car + geronimo/activemq-broker/1.1/car + geronimo/axis/1.1/car + geronimo/axis-deployer/1.1/car + geronimo/client-deployer/1.1/car + geronimo/geronimo-gbean-deployer/1.1/car + geronimo/hot-deployer/1.1/car + geronimo/j2ee-deployer/1.1/car + geronimo/j2ee-security/1.1/car + geronimo/j2ee-server/1.1/car + geronimo/j2ee-system/1.1/car + geronimo/openejb/1.1/car + geronimo/openejb-deployer/1.1/car + geronimo/remote-deploy-tomcat/1.1/car @ http://hc2t60p:8080/remote-deploy + geronimo/rmi-naming/1.1/car + geronimo/sharedlib/1.1/car + geronimo/system-database/1.1/car + geronimo/tomcat/1.1/car + geronimo/tomcat-deployer/1.1/car + geronimo/webconsole-tomcat/1.1/car `-> standard.war @ http://hc2t60p:8080/console-standard `-> framework.war @ http://hc2t60p:8080/console + geronimo/welcome-tomcat/1.1/car @ http://hc2t60p:8080/ + sample.applications/HelloWorldApp/1.1/war @ http://hc2t60p:8080/hello geronimo/client/1.1/car geronimo/client-corba/1.1/car geronimo/client-security/1.1/car geronimo/client-system/1.1/car geronimo/j2ee-corba/1.1/car geronimo/javamail/1.1/car geronimo/online-deployer/1.1/car geronimo/shutdown/1.1/car geronimo/uddi-tomcat/1.1/car geronimo/upgrade/1.1/car geronimo/upgrade-cli/1.1/car

Our taget now is " + sample.applications/HelloWorldApp/1.1/war @ http://hc2t60p:8080/hello " , this module's status is started since there is a + on the left. Alternatively, you can run the following command to list just the started modules:

deploy --user system --password manager list-modules --started

To stop the " sample.applications/HelloWorldApp/1.1/war module type the following command:

deploy --user system --password manager stop sample.applications/HelloWorldApp/1.1/war

You will receive a confirmation message similar to the one listed below indicating that the module has been stopped.

#000000solid D:\geronimo-1.1-Tomcat\bin>deploy --user system --password manager stop sample.applications/HelloWorldApp/1.1/war Using GERONIMO_BASE: D:\geronimo-1.1-Tomcat Using GERONIMO_HOME: D:\geronimo-1.1-Tomcat Using GERONIMO_TMPDIR: D:\geronimo-1.1-Tomcat\var\temp Using JRE_HOME: C:\Java\jdk1.5.0_06\ Stopped sample.applications/HelloWorldApp/1.1/war

When you list all the stopped modules you should now see added to the list the sample.applications/HelloWorldApp/1.1/war module. See the command and results in the following example.

#000000solid D:\geronimo-1.1-Tomcat\bin>deploy --user system --password manager list-modules --stopped Using GERONIMO_BASE: D:\geronimo-1.1-Tomcat Using GERONIMO_HOME: D:\geronimo-1.1-Tomcat Using GERONIMO_TMPDIR: D:\geronimo-1.1-Tomcat\var\temp Using JRE_HOME: C:\Java\jdk1.5.0_06\ Found 12 modules geronimo/client/1.1/car geronimo/client-corba/1.1/car geronimo/client-security/1.1/car geronimo/client-system/1.1/car geronimo/j2ee-corba/1.1/car geronimo/javamail/1.1/car geronimo/online-deployer/1.1/car geronimo/shutdown/1.1/car geronimo/uddi-tomcat/1.1/car geronimo/upgrade/1.1/car geronimo/upgrade-cli/1.1/car sample.applications/HelloWorldApp/1.1/war

To start the modules just use start instead of stop.

deploy --user system --password manager start sample.applications/HelloWorldApp/1.1/war

As an alternative to the command line option you can use the Geronimo Administration Console to change the status of the modules. Open the Geronimo Administration Console and navigate to Applications on the Console Navigation menu on the left hand side. There you will find Application EARs and Web App WARs, depending on the type of application you want to change the status, you will choose either Application EARs or Web App WARs. For this example we will continue to use HelloWorld.war as the sample application, hence we will select Web App WARs.

We used this portlet in the Installing and removing applications section to install and remove applications via the Geronimo Administration Console. From this same portlet you can also change the status of the applications. The avaialable commands within the portlet will change depending on the status for each application. If the application is in running status (started), only the command Stop will be displayed. If the application is stopped, only the command Start will be displayed. The Unninstall command will always be displayed independently of the status of the application. To change the status of the application just click on the command (Start or Stop).