Step 1: Installing the FTP agent
Read this topic for a procedure of installing the FTP agent.
Procedure
-
Using Sterling Connect:Direct® or a similar
tool, copy the installation file (CSDDIST.CCFTP530. MVS.DIST.FILE, located in the zOS directory on
the DVD or the IBM® Sterling Control Center
Monitor folder
downloaded from IBM Passport
Advantage) to the z/OS computer as $SCC.DIST.FILE, where $SCC is the high-level qualifier of
the z/OS system where you are installing the IBM Sterling Control Center
Monitor FTP agent. Transfer the file as
binary.
The following sample FTP session uploads the installation file to the z/OS computer. Modify as necessary for your site:
ftp 10.20.129.2 binary put d:\zOS\CSDDIST.CCFTP530.MVS.DIST.FILE $SCC.DIST.FILE
Note: The target file ($SCC.DIST.FILE) on the z/OS computer must be pre-defined as LRECL=80, BLKSIZE=3120, RECFM=FB.You can also use the PC’s file transfer capability (IND$FILE) to upload the installation file to the z/OS computer. See your computer’s documentation for instructions on using this feature.
- Create and submit the following job to unpack the flat
file uploaded to z/OS into $SCC.TXLIB and $SCC.LKLIB files. Replace
$SCC with your high-level qualifier.
//SCCRECV JOB (SCCFTP),'SCC FTP AGENT RECV', //SYSTSIN DD * // CLASS=O,MSGCLASS=X,REGION=4096K,TIME=1440 //*MAIN CLASS=PROD,SYSTEM=SYZ //*************************************************** //* CHANGE '$SCC' TO YOUR HIGH LEVEL QUALIFIER //*************************************************** //DELETES EXEC PGM=IEFBR14 //DISTTX DD DISP=(MOD,DELETE),DSN=$SCC.TXLIB, // UNIT=SYSDA,SPACE=(TRK,1) //DISTLK DD DISP=(MOD,DELETE),DSN=$SCC.LKLIB, // UNIT=SYSDA,SPACE=(TRK,1) //RECVPDS EXEC PGM=IKJEFT01,REGION=4M,COND=(0,NE) //SYSTSIN DD * RECEIVE INDSNAME('$SCC.DIST.FILE') NONAMES DSNAME('$SCC.DIST') RELEASE //SYSTSPRT DD SYSOUT=* //* //RECVLK EXEC PGM=IKJEFT01,REGION=4M,COND=(0,NE) //SYSTSIN DD * RECEIVE INDSNAME('$SCC.DIST(LKLIB)') NONAMES DSNAME('$SCC.LKLIB') RELEASE //SYSTSPRT DD SYSOUT=* //* //RECVTX EXEC PGM=IKJEFT01,REGION=4M,COND=(0,NE) //SYSTSIN DD * RECEIVE INDSNAME('$SCC.DIST(TXLIB)') NONAMES SYSTSIN DD * DSNAME('$SCC.TXLIB') RELEASE //SYSTSPRT DD SYSOUT=* //* // //CLEANUP EXEC PGM=IEFBR14 //DISTFILE DD DISP=(MOD,DELETE),DSN=$SCC.DIST.FILE, // UNIT=SYSDA,SPACE=(TRK,1) //DIST DD DISP=(MOD,DELETE),DSN=$SCC.DIST, // UNIT=SYSDA,SPACE=(TRK,1) //SYSTSIN DD *
- After the $SCC.TXLIB and $SCC.LKLIB PDS files have been created, continue with Step 2: Generate the Installation JCL.