-
Notifications
You must be signed in to change notification settings - Fork 147
Add CeaTso request failed troubleshooting tip for V3 docs #4989
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -12,6 +12,43 @@ Check the z/OSMF settings of REST API of file. You must define `RESTAPI_FILE` in | |||||||||||||||||||
| `RESTAPI_FILE ACCT(IZUACCT) REGION(32768) PROC(IZUFPROC)` | ||||||||||||||||||||
| The default `IZUFPROC` can be found in `SYS1.PPROCLIB`. And the proper authorization is needed to get `IZUFPROC` to work successfully. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ## ISSUE: CeaTso request failed with HTTP 500 error | ||||||||||||||||||||
|
|
||||||||||||||||||||
| **Symptom** | ||||||||||||||||||||
|
|
||||||||||||||||||||
| When you use Zowe CLI or Zowe Explorer to access USS files or data sets, you receive the following error: | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ``` | ||||||||||||||||||||
| Rest API failure with HTTP(S) status 500 | ||||||||||||||||||||
| rc: 12 | ||||||||||||||||||||
| reason: 2 | ||||||||||||||||||||
| category: 3 | ||||||||||||||||||||
| message: CeaTso request failed | ||||||||||||||||||||
| ``` | ||||||||||||||||||||
|
|
||||||||||||||||||||
| **Solution** | ||||||||||||||||||||
|
|
||||||||||||||||||||
| This error is caused by a buildup of IPC message queues on z/OS. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| 1. Run the following command to check IPC resource usage: | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ``` | ||||||||||||||||||||
| ipcs -x | ||||||||||||||||||||
| ``` | ||||||||||||||||||||
|
Comment on lines
+33
to
+37
|
||||||||||||||||||||
|
|
||||||||||||||||||||
| If a long list of entries is returned, the queues need to be cleared. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| 2. **Immediate fix:** Recycle the Zowe `ZWESLSTC` started task. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| 3. **Permanent fix:** Add the following to your `zowe.yaml` configuration: | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ```yaml | ||||||||||||||||||||
| zowe: | ||||||||||||||||||||
| environments: | ||||||||||||||||||||
| ZWE_PRIVATE_CLEANUP_IPC_MQ: true | ||||||||||||||||||||
| ``` | ||||||||||||||||||||
|
Comment on lines
+45
to
+49
|
||||||||||||||||||||
| ```yaml | |
| zowe: | |
| environments: | |
| ZWE_PRIVATE_CLEANUP_IPC_MQ: true | |
| ``` | |
| ```yaml | |
| zowe: | |
| environments: | |
| ZWE_PRIVATE_CLEANUP_IPC_MQ: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new section uses a different heading level/style than the rest of the page ("## ISSUE" vs existing "### ISSUE"), and the bold labels are missing the trailing colons ("Symptom"/"Solution" vs "Symptom:"/"Solution:"). For consistency (and to avoid TOC/structure oddities), align the heading level and label punctuation with the other ISSUE sections in this file.