Stopping a z/OS Component via Universal Control
Stopping a zOS Component via Universal Control
This example - located in the Universal Control SUNVSAMP library - stops a component on a remote system.
It assumes that Universal Control Server is installed on a remote system named dallas. The user ID and password used in the example must be changed to a valid user ID and password for the remote system.
//jobname JOB CLASS=A,MSGCLASS=X //STEP1 EXEC UCTLPRC //SYSIN DD * -stop 999234133 -host dallas -userid joe -pwd akkSdiq /*
The sample JCL is located in member UCTSAM1.
The JCL procedure UCTLPRC is used to execute the stop request.
The stop request is sent to a remote system named dallas for execution.
SYSIN Options
The SYSIN options used in this example are:
Option | Description |
---|---|
Component to stop. | |
Directs the command to a computer with a host name of dallas. | |
Remote user ID with which to execute the stop request. | |
Password for the user ID. |
Components