This program and the accompanying materials are made available under the terms of the Eclipse Public License v2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html
SPDX-License-Identifier: EPL-2.0
Copyright Contributors to the Zowe Project.
The Zowe launcher is a part of the Zowe server architecture that was added as an optional program for HA/FT usage in v1.
In v2, the Zowe launcher became the sole way to start the Zowe servers.
The launcher's purpose is to start, restart, and stop each Zowe server component which has a start command,
and in doing so it watches over such components for health (restarting them if they crash) and log management.
- Stopping Zowe using the conventional
Poperator command - Ability to handle
MODIFYcommands - Stopping and starting specific Zowe components without restarting the entire Zowe
- Issuing WTOs indicating the start and termination of specific components (this should simplify the integration with z/OS automation)
- Passing
MODIFYcommands to Zowe components - Clean termination of the components in case if the launcher gets cancelled
The Zowe launcher is build with a version defined in manifest.yaml. This version is used in ZWEL0021I message.
cd zowe-launcher/build
./build.shFor development purposes, it is possible to specify custom defined version, which must be compound from three numeric values and dots: for example 1.2.3. Invalid version will be used as 0.0.0.
cd zowe-launcher/build
export LAUNCHER_VERSION=1.2.3 && ./build.shThe launcher binary will be saved into the bin directory.
See details in test directory.
- Zowe 2.4.0
- Find the JCL used to start your Zowe instance (ZWESLSTC)
- Stop that Zowe instance
- Find the dataset used by that STC
- Copy the binary from the bin directory into that dataset with whatever name you want
- If necessary, update the PGM name to match the name of the resulting copy you just did
- Restart that Zowe instance
- To start the launcher use the
Soperator command:
S ZWESLSTC
- To stop use the
Poperator command:
P ZWESLSTC
- To stop a specific component use the following
MODIFYcommand:
F ZWESLSTC,APPL=STOP(component_name)
- To start a specific component use the following
MODIFYcommand:
F ZWESLSTC,APPL=START(component_name)
- To list the components use the following
MODIFYcommand:
F ZWESLSTC,APPL=DISP
This part of Zowe is currently developed by the zOS squad, which you can find on Slack at #zowe-zos-interface.
The launcher is a z/OS program which utilizes configmgr to read the Zowe config in order to determine which components to start, and then prepares Zowe to run, starts the components, and manages their unix processes.
It's behavior is summarized in this flow chart diagram.