HomeDocumentation > Configuring and administering > Deploying and administering assets in Geronimo > Deploying and administering applications > Starting and stopping applications
{scrollbar}

INLINE

There are several alternatives available for starting and stopping applications

:

Via Geronimo Administration Console

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. 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 continue to use HelloWorld.war as the sample application, hence we will select Web App WARs.

We used this portlet in the Deploying and undeploying 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 available commands within the portlet will change depending on the status for each application. If the application is in running status (started), the commands Stop and Restart will be displayed. If the application is stopped, only the command Start will be displayed. The Uninstall 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).

Via Deployer tool

The Deployer tool has many commands. In Deploying and undeploying 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:

  • --all : is used by default when no other option is specified. It will list all the available modules.
  • --started : this option will list only the modules that are running.
  • --stopped : this option will list only the modules that are not running.

You can also specify a target at the end of the command. This option is rarely used since most of the time you will have only one configuration store defined on each server. If no targets are specified, then modules on all targets will be listed, otherwise only modules on the specified targets.

This is useful 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 its 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 differentiated by a + sign on the left and are displayed first in the list.

#000000solid D:\geronimo-tomcat6-jee5-2.0-M2\bin>deploy --user system --password manager list-modules Using GERONIMO_BASE: D:\geronimo-tomcat6-jee5-2.1 Using GERONIMO_HOME: D:\geronimo-tomcat6-jee5-2.1 Using GERONIMO_TMPDIR: D:\geronimo-tomcat6-jee5-2.1\var\temp Using JRE_HOME: C:\Java\jdk1.5.0_06\\jre Found 85 modules + org.apache.geronimo.configs/activemq-broker/2.1-SNAPSHOT/car + org.apache.geronimo.configs/activemq-ra/2.1-SNAPSHOT/car + org.apache.geronimo.configs/axis/2.1-SNAPSHOT/car + org.apache.geronimo.configs/axis-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/axis2/2.1-SNAPSHOT/car + org.apache.geronimo.configs/axis2-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/axis2-ejb/2.1-SNAPSHOT/car + org.apache.geronimo.configs/axis2-ejb-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/ca-helper-tomcat/2.1-SNAPSHOT/car + org.apache.geronimo.configs/client-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/clustering/2.1-SNAPSHOT/car + org.apache.geronimo.configs/connector-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/cxf/2.1-SNAPSHOT/car + org.apache.geronimo.configs/cxf-ejb/2.1-SNAPSHOT/car + org.apache.geronimo.configs/dojo-legacy-tomcat/2.1-SNAPSHOT/car + org.apache.geronimo.configs/dojo-tomcat/2.1-SNAPSHOT/car + org.apache.geronimo.configs/hot-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/j2ee-corba-yoko/2.1-SNAPSHOT/car + org.apache.geronimo.configs/j2ee-deployer/2.1-SNAPSHOT/car + org.apache.geronimo.configs/j2ee-server/2.1-SNAPSHOT/car

Our target now is " + sample.applications/HelloWorldApp/2.0/war @ http://hcunico: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/2.0/war module type the following command:

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

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

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

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

#000000solid D:\geronimo-tomcat6-jee5-2.0-M2\bin>deploy --user system --password manager list-modules --stopped Using GERONIMO_BASE: D:\geronimo-tomcat6-jee5-2.1 Using GERONIMO_HOME: D:\geronimo-tomcat6-jee5-2.1 Using GERONIMO_TMPDIR: D:\geronimo-tomcat6-jee5-2.1\var\temp Using JRE_HOME: C:\Java\jdk1.5.0_06\\jre Found 20 modules org.apache.geronimo.configs/client/2.1-SNAPSHOT/car org.apache.geronimo.configs/client-corba-yoko/2.1-SNAPSHOT/car org.apache.geronimo.configs/client-security/2.1-SNAPSHOT/car org.apache.geronimo.configs/client-transaction/2.1-SNAPSHOT/car org.apache.geronimo.configs/cxf-deployer/2.1-SNAPSHOT/car org.apache.geronimo.configs/cxf-ejb-deployer/2.1-SNAPSHOT/car org.apache.geronimo.configs/farming/2.1-SNAPSHOT/car org.apache.geronimo.configs/jsr88-ear-configurer/2.1-SNAPSHOT/car org.apache.geronimo.configs/jsr88-jar-configurer/2.1-SNAPSHOT/car org.apache.geronimo.configs/jsr88-war-configurer/2.1-SNAPSHOT/car org.apache.geronimo.configs/tomcat6-clustering-wadi/2.1-SNAPSHOT/car org.apache.geronimo.configs/wadi-clustering/2.1-SNAPSHOT/car org.apache.geronimo.framework/client-system/2.1-SNAPSHOT/car org.apache.geronimo.framework/jsr88-cli/2.1-SNAPSHOT/car org.apache.geronimo.framework/jsr88-deploymentfactory/2.1-SNAPSHOT/car org.apache.geronimo.framework/offline-deployer/2.1-SNAPSHOT/car org.apache.geronimo.framework/online-deployer/2.1-SNAPSHOT/car org.apache.geronimo.framework/shutdown/2.1-SNAPSHOT/car org.apache.geronimo.framework/upgrade-cli/2.1-SNAPSHOT/car sample.applications/HelloWorldApp/2.0/war

To start the modules just use start instead of stop.

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

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

#000000solid D:\geronimo-tomcat6-jee5-2.0-M2\bin>deploy --user system --password manager start sample.applications/HelloWorldApp/2.0/war Using GERONIMO_BASE: D:\geronimo-tomcat6-jee5-2.1 Using GERONIMO_HOME: D:\geronimo-tomcat6-jee5-2.1 Using GERONIMO_TMPDIR: D:\geronimo-tomcat6-jee5-2.1\var\temp Using JRE_HOME: C:\Java\jdk1.5.0_06\\jre Started sample.applications/HelloWorldApp/2.0/war @ http://hcunico:8080/hello

Via GShell

You can also use GShell deploy/start commands to manage the status of an application. Similarly, deploy/stop can be used to stop the running application, and deploy/restart is used to restart a started or stopped application. See Geronimo GShell Commands for more information about these commands and their options.