...
toptop Anchor
The deployer application is a Java application that manages J2EE artifacts and GBean components in the Geronimo server. If Geronimo is running, it will connect to the server and perform its action through the server's deployment service. If it cannot find a running server, it will throw an error stating it could not connect to the server or the server is unavailable.
...
java -jar deployer.jar help <commands>
Deploy Anchor deploy deploy
Use the deploy command to add and start a new module. The deploy command has the following syntax:
...
java -jar deployer.jar <general_options> --offline deploy --inPlace <app_home>
Login Anchor loginlogin
Use the login command to save the username and password for the current connection to the file .geronimo-deployer
in the current user's home directory. Future connections to the same server will try to use this saved authentication information instead of prompting where possible.
...
deploy list-modules
...
Even when the login information is not saved in clear text, it is not secure either. If you want to save the authentication securely, you should change the .geronimo-deployer
file in your home directory so that nobody else can read or write it.
...
Redeploy Anchor redeployredeploy
Use the redeploy command to stop, replace and restart a module that has been deployed before. The redeploy command has the following syntax:
...
Typically, both a module and a plan are specified. If the module contains a plan or if a default plan can be used, the plan can be omitted. However, if a plan is specified in this case, it overrides the other plans. If the plan references a server component already deployed in the server's environment, the module is omitted.
Start Anchor startstart
Use the start command to start a previously deployed module. The start command has the following syntax:
...
Where <moduleIDs> is a list of one or more modules (configID) separated by blank space. The module identification (or ConfigID) is defined at deployment time in the respective deployment plan for each module previously deployed.
Stop Anchor stop stop
Use the stop command to stop a running module. The stop command has the following syntax:
...
Where <moduleIDs> is a list of one or more modules (configID) separated by blank space. The module identification (or ConfigID) is defined at deployment time in the respective deployment plan for each module previously deployed.
Undeploy Anchor undeploy undeploy
Use the undeploy command to stop and remove a module (running or not) and its deployment information from the server. The undeploy command has the following syntax:
...
java -jar deployer.jar <general_options> --offline undeploy <moduleID>
Distribute Anchor distributedistribute
Use the distribute command to add a new module to the server. This command does not start the module nor mark it to be started in the future. The distribute command has the following syntax:
...
- J2EE Enterprise Application Archive (EAR) file
- J2EE Web Application Archive (WAR) file
- J2EE Enterprise JavaBean Archive (JAR) file
- J2EE Java Resource Archive (RAR) file
List-modules Anchor list-moduleslist-modules
Use the list-modules command to list all available modules on the server, note that for running this command the server must be running. The list-modules command has the following syntax:
...
- --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.
List-targets Anchor list-targets list-targets
Use the list-targets command to lists the targets known to the server you have connected to. The list-targets command has the following syntax:
...
Install-plugin Anchor install-plugininstall-plugin
Use the install-plugin command to install a Geronimo plugin previously exported from a Geronimo server or downloaded from a repository. A Geronimo plugin can be an application, a configuration such data sources and drivers or a combination. The install-plugin command has the following syntax:
...
Search-plugins Anchor search-plugins search-plugins
Use the search-plugins command to list all the Geronimo plugins available in a Maven repository. The search-plugins command has the following syntax:
...