Skip to content

Commit 81f79bb

Browse files
committed
Small changes for issue 92
Signed-off-by: Clive Harris <[email protected]>
1 parent d3814e0 commit 81f79bb

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

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

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,14 @@ 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. Deploy the CICS bundle into CICS.
56+
5. Confirm that the Node.js SDK is installed on z/OS
57+
58+
```text
59+
zowe zos-uss issue ssh "node --version" --user <my z/OS userid> --password <my z/OS password>
60+
```
61+
The output should indicate the installed version of Node.js.
62+
63+
6. Deploy the CICS bundle into CICS.
5764

5865
```text
5966
zowe cics-deploy push bundle --name Express --overwrite
@@ -73,13 +80,13 @@ CICS TS V5.5 introduced support to run Node.js applications and is required by t
7380

7481
This results in a CICS BUNDLE resource named `Express` being defined, installed, and enabled in CICS. If the BUNDLE `Express` was already defined or installed in CICS, it is undeployed first. As the BUNDLE is enabled, the application is started. If there are errors, retry with the `--verbose` option for more detailed output, or refer to [Troubleshooting](cdp-Log-and-trace-files).
7582

76-
6. Test the application.
83+
7. Test the application.
7784

7885
You can call the application from a browser by using URL [http://myzos:3000/](http://myzos:3000/), replacing _myzos_ with the host name of the z/OS system, and _3000_ with the port specified in step 4.
7986

8087
If you make changes to the application, you can redeploy it by repeating step 5.
8188

82-
7. View the application output files.
89+
8. View the application output files.
8390

8491
Use the [Zowe](https://marketplace.visualstudio.com/items?itemName=Zowe.vscode-extension-for-zowe) extension for Visual Studio Code or Zowe CLI commands to view the application output files. For example:
8592

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,7 @@ The [DFHDPLOY](https://www.ibm.com/support/knowledgecenter/SSGMCP_5.5.0/applicat
2626
### CICSPlex System Manager
2727

2828
CICSPlex System Manager \(CPSM\) is provided with CICS and is required to run the DFHDPLOY utility, and for the [`zowe cics-deploy push bundle`](cdp-CLIReadMe#push--p) command to query application resources via the CICS Management Client Interface (CMCI). CPSM should be connected to the CICS regions into which the application is being installed.
29+
30+
### Node.js SDK
31+
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.

0 commit comments

Comments
 (0)