Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Joe winchester/issue/3281 #3282

Merged
merged 3 commits into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion docs/troubleshoot/launcher/launcher-error-codes.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,27 @@ The following error message codes may appear on Zowe Launcher SYSPRINT. Use the

**Action:**

Validate the format of Zowe configuration file. It should be a valid YAML file following specifications defined in https://yaml.org/.
Validate the format of Zowe configuration file. It should be a valid YAML file following specifications defined in https://yaml.org/.

### ZWEL0073E

Launcher Could not load schemas, status=5

**Reason:**

The Zowe Launcher was able to locate the runtime directory, but unable to find the /schemas directory.

**Action:**

Locate the runtimeDirectory from the `zowe.yaml` variable `runtimeDirectory: "<PATH_TO_RUNTIME>"`.

Check that there is a `<PATH_TO_RUNTIME>/schemas` directory. This should contain four `.json` files shown below.

```
manifest-schema.json
server-common-json
trivial-component-schema.json
zowe-yaml-schema.json
```

On ocassion the error occurs because the `runtimeDirectory` is pointing to a valid directory, but one which doesn't contain a valid Zowe runtime environment is one of the first failures during a Zowe launch.
Loading