As a part of IT security assessment, our DBA has replaced the old self-signed certificate with new certificates for our DB2 servers. The DBA has shared the certificate files with us in the .cer1 format. Please suggest how to convert and import the files to a truststore, which can be used by Fast Data Masker
All supported release of TDM Portal and FDM
If you were only given the certificate file, then you can use the Java Keytool command-line utility to generate a TrustStore file and import the certificate into the TrustStore.
Where:
For example:
keytool -import -file "C:/Users/user1/Downloads/new_ca_cert.ce" -alias DB2ServerName -keystore "C:/Program Files/CA/CA Test Data Manager Portal\conf\.truststore" -storetype PKCS12 -storepass Password1234!
If you create the TrustStore file with a password, you will need to record what you made the password, in case you need to import additional certificates in the future. If you have more than one certificate to import, you will need to run the import file for each certificate, changing the -file and -alias for each of the certificates.
To configure the TDM Portal connection profile, and the FDM connection file to use a secure DB2 connections, see How to configure a secure DB2 Connection in TDM Portal and FDM
.