Skip to content

Commit 625538e

Browse files
Merge latest from dev
Signed-off-by: Matthew Wilson <[email protected]>
2 parents dcab05c + 1f8d331 commit 625538e

File tree

8 files changed

+26
-326
lines changed

8 files changed

+26
-326
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,7 @@ This project provides a plug-in for [Zowe CLI](https://github.com/zowe/zowe-cli)
44

55
## Installing
66

7-
To use the cics-deploy plug-in, you'll first need Zowe CLI.
8-
9-
Then you can install the plug-in from the public npm registry by running the command
10-
```
11-
zowe plugins install zowe-cli-cics-deploy-plugin
12-
```
7+
Install the plug-in by following the steps in [installing](https://ibm.github.io/zowe-cli-cics-deploy-plugin/installing.html).
138

149
## Documentation
1510

docs-internal/README.md

Lines changed: 0 additions & 238 deletions
This file was deleted.

docs-internal/tutorials/Setup.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

docs-internal/tutorials/cics-deploy/CICSDeployPlugin.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

docs/pages/cdp/cdp-Common-Errors.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,26 @@ details:
7272
*Suggested action*:
7373
Check that your `--cicshlq` profile setting matches the value configured for CICS high-level qualifiers in your CICS region.
7474

75-
### BUNDLE ... cannot be deployed
75+
### BUNDLE ... cannot be deployed (1)
76+
77+
*Possible cause*: CICS does not have permission to read the bundle directory.
78+
79+
*Representative output*:
80+
<pre class="messageText">
81+
11:46:15.916293 : DFHRL2300E BUNDLE(CICSJS02) cannot be deployed. The reason for the failure could not be determined.
82+
11:46:15.922147 : DFHRL2055I Errors have occurred, processing terminated.
83+
11:46:15.927066 : DFHRL2014I Disconnecting from CICSPLEX(CAPLEX).
84+
</pre>
85+
86+
*Suggested action*:
87+
Check the MSGUSR file for more specific diagnostics and if relevant, change the permissions on the offending directory.
88+
89+
<pre class="messageText">
90+
DFHRL0106 E 04/24/2019 11:46:13 CALMAS1 COIE The CICS resource lifecycle manager failed to create the BUNDLE resource CICSJS02 because CICS is not authorized to read the manifest /u/&lt;username>/CICSJSON_1.0.0/META-INF/cics.xml in the root directory of the bundle.
91+
DFHRL0110 E 04/24/2019 11:46:13 CALMAS1 COIE The CICS resource lifecycle manager has failed to create the BUNDLE resource CICSJS02.
92+
</pre>
93+
94+
### BUNDLE ... cannot be deployed (2)
7695

7796
*Possible cause*: The `cics.xml` file is malformed.
7897

docs/pages/cdp/cdp-Deploying-a-nodejs-application.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ CICS TS V5.5 introduced support to run Node.js applications and is required by t
5353
create : META-INF/cics.xml
5454
CICS Bundle generated with bundleid "myexpressapp"</pre>
5555

56-
5. Confirm that the Node.js SDK is installed on z/OS
56+
5. Confirm that the Node.js version installed on z/OS is suitable for your application.
5757

5858
```text
59-
zowe zos-uss issue ssh "node --version" --user <my z/OS userid> --password <my z/OS password>
59+
zowe zos-uss issue ssh "node --version"
6060
```
6161
The output should indicate the installed version of Node.js.
6262

docs/pages/cdp/cdp-Installing.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ toc: false
2121
2. Install [Zowe CLI](https://zowe.github.io/docs-site/latest/user-guide/cli-installcli.html). For example, to install using npm:
2222

2323
```console
24-
npm install -g @brightside/core
24+
npm config set @brightside:registry https://api.bintray.com/npm/ca/brightside
25+
npm install -g @brightside/core@lts-incremental
2526
```
2627

2728
3. Install the cics plugin:

docs/pages/cdp/cdp-Requirements-on-zOS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ CICSPlex System Manager \(CPSM\) is provided with CICS and is required to run th
2929

3030
### Node.js SDK
3131

32-
If you intend to run Node.js applications on z/OS, you must install the Node.js SDK. See [Installing and configuring IBM SDK for Node.js - z/OS](https://www.ibm.com/support/knowledgecenter/en/SSTRRS_8.0.0/com.ibm.nodejs.zos.v8.doc/install.htm) for full details.
32+
If you intend to run Node.js applications on z/OS, you must install the IBM SDK for Node.js - z/OS. See [Installing and configuring IBM SDK for Node.js - z/OS](https://www.ibm.com/support/knowledgecenter/en/SSTRRS_8.0.0/com.ibm.nodejs.zos.v8.doc/install.htm) for full details.

0 commit comments

Comments
 (0)