EXPORT Certificate - EXPORT Certificate - Call-Level Interface Version 2

Teradata® Call-Level Interface Version 2 Reference for Workstation-Attached Systems - 20.00

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
Lake
VMware
Product
Call-Level Interface Version 2
Release Number
20.00
Published
January 2024
ft:locale
en-US
ft:lastEdition
2024-11-15
dita:mapPath
bmn1691484839905.ditamap
dita:ditavalPath
obe1474387269547.ditaval
dita:id
fvz1470444150352
lifecycle
latest
Product Category
Teradata Tools and Utilities

The certificate’s public key is needed on the Teradata Vantage servers to complete the setup. If you generated your certificate, you may want to export the certificate and its keys so you may attain the public key. An example job is provided in member STEP4 to export the certificate and its keys. Following is a similar example code I:

//*                                                        
//*  The JOBCARD must be in place before JOB is submitted. 
//*                                                        
//* -------------------------------------------------------
//*        Export Certificate                              
//* -------------------------------------------------------
//*                                                        
//STEP02   EXEC  PGM=IKJEFT01,DYNAMNBR=20                  
//SYSTSPRT DD    SYSOUT=*                                  
//SYSTSIN  DD    *                                         
 RACDCERT EXPORT(LABEL('TdgssUserAuth')) +   <= Do not change                
 ID(GRB) + <= Userid in previous steps.                                      
 DSN('dsname') +                                         
 FORMAT(PKCS12B64) +                                     
 PASSWORD('ppppp')                                       
//