The following
z/OS command starts the spawner
on the
z/OS server.
START SPAWNER
This
command activates the started task procedure. SPAWNER is the name
of the service that is defined in the started task procedure.
//SPAWNER PROC PROG=SASTCPD,
// SERVICE='spawner',
// PARMFILE='SAS.SPAWNER.PARMS'
//*
//SPAWNER EXEC PGM&PROG,REGION=40M,
// PARM='-service &SERVICE =<//DDN:PARMS'
//*
//STEPLIB DD
//PARMS DD DISP=SHR,DSN=<customer.high.level.pfx>.LIBRARY
// DD
// DISP=SHR,DSN=<customer.high.level.pfx>.LIBE
// DISP=SHR,DSN=&PARMFILE,FREE=CLOSE
//SYSPRINT DD SYSOUT=*
//SYSTERM DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
PARMFILE contains the
options that start a spawner. For example:
-netencryptalgorithm rc2
-sascmd "/usr/local/bin/spawnsas.sh nosasuser -dmr -noterminal -comamid tcp"
The -NETENCRYPTALGORITHM
option specifies that the spawner is started using the RC2 encryption
algorithm. The -SASCMD option specifies a UNIX System Services shell
script that starts SAS. This command assumes that a shell script named
spawnsas.sh
is
installed in
/usr/local/bin
. The command
specifies the SAS CLIST option NOSASUSER, which specifies that a user's
SASUSER file should not be allocated. NOSASUSER allows a client to
sign on to a server multiple times using the same user ID and password.
The parentheses enclose the SAS system options DMR and COMAMID=TCP.
NOTERMINAL prevents the display of dialog boxes in the server session.