This task exports the CA certificate created earlier from RACF and saves it to an MVS data set. Remote clients (users of the Application Performance Analyzer GUI) require this certificate to establish a secure connection with the Application Performance Analyzer for z/OS through the Application Performance Analyzer Listener.
The following example will export the CA certificate created earlier, and save it to an MVS data set. Replace CA-label-name with the label assigned to the CA certificate created earlier. Replace other values shown in italics with values appropriate for your installation.
//RACDCERT EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSUADS DD DSN=SYS1.UADS,DISP=SHR
//SYSLBC DD DSN=SYS1.BRODCAST,DISP=SHR
//SYSTSIN DD *
RACDCERT EXPORT(LABEL('CA-label-name')) -
CERTAUTH -
DSN('output-data-set-name') FORMAT(CERTB64)
/*
//
[ Top of Page | Previous Page | Next Page | Contents | Index ]