Skip to content

Commit 3540454

Browse files
committed
Add CICS profile to doc
1 parent c4b623c commit 3540454

File tree

3 files changed

+42
-9
lines changed

3 files changed

+42
-9
lines changed

docs/pages/cdp/cdp-Creating-Zowe-CLI-profiles.md

Lines changed: 38 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ permalink: cdp-Creating-Zowe-CLI-profiles.html
88
folder: cdp
99
---
1010

11-
### Step 1: Create a z/OSMF profile
11+
### Create a z/OSMF profile
1212

13-
This profile defines the parameters needed to connect to the z/OSMF server on z/OS. You need to know the following from your z/OS system administrator:
13+
The z/OSMF profile defines the parameters needed to connect to the z/OSMF server on z/OS. You need to know the following from your z/OS system administrator:
1414

1515
| Option | Description |
1616
| --- | --- |
@@ -39,9 +39,9 @@ To test the connection to the z/OSMF server using the profile:
3939
zowe zosmf check status
4040
```
4141

42-
### Step 2: Create an SSH profile
42+
### Create an SSH profile
4343

44-
This profile defines the parameters needed to connect to the SSH server on z/OS. You need to know the following from your z/OS system administrator:
44+
The SSH profile defines the parameters needed to connect to the SSH server on z/OS. You need to know the following from your z/OS system administrator:
4545

4646
| Option | Description |
4747
| --- | --- |
@@ -70,9 +70,9 @@ To test the connection to the SSH server using the profile:
7070
zowe zos-uss issue ssh 'uname -a'
7171
```
7272

73-
### Step 3: Create a cics-deploy profile
73+
### Create a cics-deploy profile
7474

75-
This profile identifies the CICS environment for deployment. You need to know the following from your CICS system administrator:
75+
The cics-deploy profile identifies the CICS environment for deployment. You need to know the following from your CICS system administrator:
7676

7777
| Option | Description |
7878
| --- | --- |
@@ -96,4 +96,35 @@ For help on using the options:
9696
zowe profiles create cics-deploy-profile --help
9797
```
9898

99-
To test the cics-deploy profile, follow the steps in [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app).
99+
To test the cics-deploy profile, follow the steps in [Deploying your first Node.js app](cdp-Deploying-your-first-nodejs-app).
100+
101+
### Create a CICS profile
102+
103+
The CICS profile identifies the connection to the CICS Web User Interface (WUI) server to query application resources. You need to know the following from your CICS system administrator:
104+
105+
| Option | Description |
106+
| --- | --- |
107+
| cics-plex | CPSM CICSplex name. This will typically be set to the same as cicsplex in the cics-deploy profile. |
108+
| protocol | HTTP or HTTPS to use to connect to the CICS WUI server. |
109+
| host | Host name of the CICS WUI server. |
110+
| port | Port number of the CICS WUI server. |
111+
| user | User ID to identify yourself to the CICS WUI server . |
112+
| password | Password to identify yourself to the CICS WUI server. |
113+
114+
For example, to create an SSH profile:
115+
116+
```console
117+
zowe profiles create cics-profile cics --cics-plex PLEX1 --protocol https --host myzos.example.com --port 1490 --user myuserid --password mypassword --overwrite
118+
```
119+
120+
For help on using the options:
121+
122+
```console
123+
zowe profiles create cics-profile --help
124+
```
125+
126+
To test the connection to the CICS WUI server using the profile:
127+
128+
```console
129+
zowe cics get resource CICSRegion
130+
```

docs/pages/cdp/cdp-Deploying-your-first-nodejs-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ CICS TS V5.5 introduced support to run Node.js applications and is required by t
1717

1818
1. Install the Zowe CLI and cics-deploy plugin by following the steps in [Installing](cdp-Installing).
1919

20-
2. Create Zowe CLI profiles for z/OSMF, SSH, and cics-deploy by following the steps in [Creating Zowe CLI profiles](cdp-Creating-Zowe-CLI-profiles).
20+
2. Create Zowe CLI profiles for z/OSMF, SSH, cics-deploy and CICS by following the steps in [Creating Zowe CLI profiles](cdp-Creating-Zowe-CLI-profiles).
2121

2222
3. Create a Node.js application using the [Express Application Generator](https://expressjs.com/en/starter/generator.html):
2323

docs/pages/cdp/cdp-Requirements.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ The [z/OS Secure SHell daemon (sshd)](https://www.ibm.com/support/knowledgecente
2323

2424
The [DFHDPLOY](https://www.ibm.com/support/knowledgecenter/SSGMCP_5.5.0/applications/deploying/dfhdploy_overview.html) utility is provided with IBM CICS Transaction Server (CICS) and is required to run the [`zowe cics-deploy push bundle`](cdp-CLIReadMe#push--p), [`zowe cics-deploy deploy bundle`](cdp-CLIReadMe#deploy--d--dep), and [`zowe cics-deploy undeploy bundle`](cdp-CLIReadMe#undeploy--u--udep) commands. These commands start DFHDPLOY with a script to perform deploy and undeploy operations.
2525

26-
CICSPlex System Manager \(CPSM\) is provided with CICS and is required to run the DFHDPLOY utility. CPSM should be connected to the CICS regions into which the application is being installed.
26+
### CICSPlex System Manager
27+
28+
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) to query application resources. CPSM should be connected to the CICS regions into which the application is being installed.

0 commit comments

Comments
 (0)