@@ -31,19 +31,19 @@ The z/OSMF profile defines the options needed to connect to the z/OSMF server on
31
31
32
32
For example, to create a z/OSMF profile:
33
33
34
- ``` console
34
+ ``` text
35
35
zowe profiles create zosmf-profile myzos --host myzos.example.com --port 3000 --user myuserid --password mypassword --reject-unauthorized false --overwrite
36
36
```
37
37
38
38
For help on using the options:
39
39
40
- ``` console
40
+ ``` text
41
41
zowe profiles create zosmf-profile --help
42
42
```
43
43
44
44
To test the connection to the z/OSMF server using the profile:
45
45
46
- ``` console
46
+ ``` text
47
47
zowe zosmf check status
48
48
```
49
49
@@ -62,19 +62,19 @@ The SSH profile defines the options needed to connect to the SSH server on z/OS.
62
62
63
63
For example, to create an SSH profile:
64
64
65
- ``` console
65
+ ``` text
66
66
zowe profiles create ssh-profile myzos --host myzos.example.com --user myuserid --password mypassword --overwrite
67
67
```
68
68
69
69
For help on using the options:
70
70
71
- ``` console
71
+ ``` text
72
72
zowe profiles create ssh-profile --help
73
73
```
74
74
75
75
To test the connection to the SSH server using the profile:
76
76
77
- ``` console
77
+ ``` text
78
78
zowe zos-uss issue ssh 'uname -a'
79
79
```
80
80
@@ -94,13 +94,13 @@ The cics-deploy profile identifies the CICS environment for deployment. An examp
94
94
95
95
For example to create a cics-deploy profile:
96
96
97
- ``` console
97
+ ``` text
98
98
zowe profiles create cics-deploy-profile cics --cicsplex PLEX1 --cics-hlq CICSTS55.CICS720 --cpsm-hlq CICSTS55.CPSM550 --scope CICPY000 --csd-group BUNDGRP1 --target-directory /var/cicsts/bundles --overwrite
99
99
```
100
100
101
101
For help on using the options:
102
102
103
- ``` console
103
+ ``` text
104
104
zowe profiles create cics-deploy-profile --help
105
105
```
106
106
@@ -122,18 +122,26 @@ The CICS profile identifies the connection to the CICS Web User Interface (WUI)
122
122
123
123
For example, to create an SSH profile:
124
124
125
- ``` console
125
+ ``` text
126
126
zowe profiles create cics-profile cics --cics-plex PLEX1 --region-name CICPY000 --protocol https --host myzos.example.com --port 1490 --user myuserid --password mypassword --overwrite
127
127
```
128
128
129
129
For help on using the options:
130
130
131
- ``` console
131
+ ``` text
132
132
zowe profiles create cics-profile --help
133
133
```
134
134
135
135
To test the connection to the CICS WUI server using the profile:
136
136
137
- ``` console
138
- zowe cics get resource CICSRegion
137
+ ``` text
138
+ zowe cics get resource CICSRegion | grep -E "applid|cicsstatus|jobname|mvssysname|strttime|cputime"
139
139
```
140
+
141
+ <pre class =" messageText " >
142
+ applid: CICPY00V
143
+ cicsstatus: ACTIVE
144
+ cputime: 0000:02:29.2824
145
+ jobname: CICPY00V
146
+ mvssysname: MV2C
147
+ strttime: 2019-06-13T16:08:15.938572+00:00</pre >
0 commit comments