All Downloads are FREE. Search and download functionalities are using the official Maven repository.

help.deploy.txt Maven / Gradle / Ivy

The newest version!
SYNOPSIS

    deploy ((file_path | --url=deployment_url)
               [--script=script_name] [--name=deployment_name]
               [--runtime-name=deployment_runtime_name]
               [--force] [--disabled] [--unmanaged])
           | --name=deployment_name
           [--server-groups=group_name (,group_name)* | --all-server-groups]
           [--headers={operation_header (;operation_header)*}]

DESCRIPTION

  Deploys the application designated by the file_path or enables an already
  existing but disabled in the repository deployment designated by the name
  argument. '*' can be used to identify all existing but disabled deployments.
  NB: '*' is not a pattern but identifies "all disabled deployments".
  If executed w/o arguments, will list all the existing deployments.

ARGUMENTS

 file_path         - filesystem path to the application to deploy.
                     If the deployment has to be added or replaced in the
                     repository, either the file_path or the --url argument
                     is required.
                     The path can be either absolute or relative to the current
                     directory.

 --url             - URL at which the deployment content is available for
                     upload to the deployment content repository. Note that the
                     URL must be accessible from the target of the operation
                     (i.e. the Domain Controller or standalone server).
                     If the deployment has to be added or replaced in the
                     repository, either the file_path or the --url argument
                     is required.
                     The path can be either absolute or relative to the current
                     directory.

 --name            - the unique name of the deployment. If the file path
                     argument is specified the name argument is optional with
                     the file name been the default value. If the file path
                     argument isn't specified then the command is supposed to
                     enable an already existing but disabled deployment, and in
                     this case the name argument is required.
                     In order to identify all disabled deployments, '*'
                     can be used as name value. '*' can be used both in standalone 
                     and domain mode.

 --runtime-name    - optional, the runtime name for the deployment. This will
                     form the basis for such things as default Java EE
                     application and module names. This would typically be the
                     same as --name, and if not specified the value used for
                     --name will be used. In some cases users may wish to have
                     two deployments with the same 'runtime-name' (e.g. two
                     versions of "example.war") both available in the management
                     configuration, in which case the deployments would need to
                     have distinct 'name' values but would have the same
                     'runtime-name'. Within an individual server, only one
                     deployment with a given 'runtime-name' can deployed.
                     However, multiple deployments with the same 'runtime-name'
                     can exist in the configuration, so long as only one is
                     enabled.

 --force           - if the deployment with the specified name already exists,
                     by default, deploy will be aborted and the corresponding
                     message will printed. Switch --force (or -f) will force the
                     replacement of the existing deployment with the one
                     specified in the command arguments.

 --disabled        - indicates that the deployment has to be added to the
                     repository disabled. Not supported in a managed domain.
                     If used in combination with the '--force' or '-f' argument
                     and the existing deployment is not disabled, the existing
                     deployment will be undeployed.

 --enabled        - indicates that the deployment has to be added to the
                    repository enabled. Not supported in a managed domain.
                    If used in combination with the '--force' or '-f' argument
                    and the existing deployment is not enabled, the existing
                    deployment will be deployed.

 --unmanaged      - if this argument is not specified, the deployment content
                    will be copied (i.e. uploaded) to the server's deployment
                    repository before it is deployed. If the argument is
                    present, the deployment content will remain at and be
                    deployed directly from its original location specified with
                    the file_path.
                    NOTE: exploded deployments are supported only as unmanaged.

 --server-groups  - comma separated list of server group names the deploy
                    command should apply to. Either server-groups or
                    all-server-groups is required in the domain mode. This
                    argument is not applicable in the standalone mode.

                    NOTE: In non-interactive mode, the list must be surrounded
                    by square brackets e.g. [group1, group2].

 --all-server-groups  - indicates that deploy should apply to all the available
                        server groups. Either server-groups or all-server-groups
                        is required in domain mode. This argument is not
                        applicable in the standalone mode.

 -l               - in case none of the required arguments is specified the
                    command will print all of the existing deployments in the
                    repository. The presence of the -l switch will make the
                    existing deployments printed one deployment per line,
                    instead of in columns (the default).

 --headers        - a list of operation headers separated by a semicolon. For
                    the list of supported headers, please, refer to the domain
                    management documentation or use tab-completion.

 --script         - optional, can appear only if the file_path points a cli
                    archive. The value is the name of the script contained in a
                    cli archive to execute. If not specified, defaults to
                    'deploy.scr'. A cli archive is a zip archive containing
                    script(s) as well as artifacts or applications to deploy.
                    To be recognized as a cli archive, the extension of the
                    archive file should be '.cli'. The deploy command will
                    execute the script given by the --script argument. All paths
                    in the scripts are relative to the root directory in the cli
                    archive. The script is executed as a batch.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy