PSF for z/OS: Security Guide
Previous topic | Next topic | Contents | Index | Contact z/OS | Library | PDF


Updating Initialization Parameters

PSF for z/OS: Security Guide
S550-0434-03

Updating Initialization Parameters

Before starting a PSF functional subsystem (FSS), you must have a cataloged PSF startup procedure in SYS1.PROCLIB or in a procedure library concatenated to the JES startup procedure. The PSF startup procedure specifies PSF initialization parameters that tell PSF where security resources and security definitions are located. Figure 16 lists a sample PSF startup procedure that includes parameters modified for print labeling.

Figure 16. Sample PSF Startup Procedure with Security-Related Parameters Highlighted. A sample startup procedure is provided in SYS1.PROCLIB.
//J2PSF00   PROC
//STEP01    EXEC PGM=APSPPIEP,REGION=4M,PARM=(,FULL)
//SYSABEND  DD SYSOUT=A
//SYSUDUMP  DD SYSOUT=A
//JOBHDR    OUTPUT PAGEDEF=A06462,
//          FORMDEF=A10110
//JOBTLR    OUTPUT PAGEDEF=A06462,
//          FORMDEF=A10110
//DSHDR     OUTPUT PAGEDEF=A06462,
//          FORMDEF=A10110
//MSGDS     OUTPUT PAGEDEF=A06462,
//          FORMDEF=A10110
//FONT01    DD DSN=TEST.FONTLIBB,DISP=SHR
//          DD DSN=SYS1.FONTLIBB,DISP=SHR
//PSEG01    DD DSN=TEST.SEGMENT,DISP=SHR
//          DD DSN=SYS1.SEGMENT,DISP=SHR
//OLAY01    DD DSN=TEST.OVERLAY,DISP=SHR
//          DD DSN=SYS1.OVERLAY,DISP=SHR
//FDEF01    DD DSN=TEST.FORMDEF,DISP=SHR
//          DD DSN=SYS1.FORMDEF,DISP=SHR
//PDEF01    DD DSN=TEST.PAGEDEF,DISP=SHR
//          DD DSN=SYS1.PAGEDEF.DISP=SHR

//SFONT1    DD DSN=SECURE.FONTLIBB,DISP=SHR   The statements in bold (including bold italics)
//SFONT2    DD DSN=SECURE.FONTL240,DISP=SHR   are DD statements used for print labeling.
//SFONT3    DD DSN=SECURE.FONTL300,DISP=SHR
//SOLAY1    DD DSN=SECURE.OVERLAY,DISP=SHR
//SPSEG1    DD DSN=SECURE.SEGMENT,DISP=SHR
//SPSEG2    DD DSN=SECURE.SEGMT240,DISP=SHR
//SPSEG3    DD DSN=SECURE.SEGMT300,DISP=SHR

//SDEF1     DD DSN=SECURE.SECDEFS,DISP=SHR    A member in one of the libraries in the
//SDEF2     DD DSN=SECURE.SECDF240,DISP=SHR   statements in bold italics matches the
//SDEF3     DD DSN=SECURE.SECDF300,DISP=SHR   
SECLABEL on the job card.
//PRT10     CNTL
//PRT10     PRINTDEV FONTDD=*.FONT01,
//          OVLYDD=*.OLAY01,
//          PSEGDD=*.PSEG01,
//          PDEFDD=*.PDEF01,
//          FDEFDD=*.FDEF01,
//          JOBHDR=*.JOBHDR,
//          JOBTRLR=*.JOBTLR,
//          DSHDR=*.DSHDR,
//          MESSAGE=*.MSGDS,

//          SFONTDD=*.SFONT1,                 The bold PRINTDEV statements correspond to
//          SFONT240=*.SFONT2,                the bold DD statements.
//          SFONT300=*.SFONT3,
//          SOVLY=*.SOLAY1,
//          SPSEGDD=*.SPSEG1,
//          SPSEG240=*.SPSEG2,
//          SPSEG300=*.SPSEG3,

//          SDEFDD=*.SDEF1,
//          SDEF240=*SDEF2,
//          SDEF300=*.SDEF3,

//          PAGEDEF=A06462,
//          FORMDEF=A10110,
//          CHARS=(60DB),
//          TRACE=YES,
//          DATACK=BLOCK,
//          BUFNO=5,

//          SPAGELBL=YES,                     The three bold parameters enable print
//          DPAGELBL=YES,                     labeling if PSFMPL is not active.
//          SYSAREA=YES,
//          PIMSG=YES
//PRT10     ENDCNTL

For more information about PSF initialization parameters, see PSF for z/OS: Customization.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014