Starting a z/OS Component via Universal Control
Starting a z/OS Component via Universal Control
This example - located in the Universal Control SUNVSAMP library - starts 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 * -start uems -cmdid "UEM-dallas" -host dallas -userid joe -pwd akkSdiq /*
SYSIN Options
The SYSIN options used in this example are:
Option | Description |
---|---|
Name of the component to start on the remote system. | |
Assigns a command identifier of "UEM-dallas" to the started component. | |
Directs the command to a computer with a host name of dallas. | |
Remote user ID with which to execute the Universal Control Server process. The started component, in fact, will execute with the Universal Broker's security context. | |
Password for the user ID. |