Exporting the Talend Administration Center SSL certificate - 7.3

Talend Administration Center User Guide

Version
7.3
Language
English
Product
Talend Big Data
Talend Big Data Platform
Talend Data Fabric
Talend Data Integration
Talend Data Management Platform
Talend Data Services Platform
Talend ESB
Talend MDM Platform
Talend Real-Time Big Data Platform
Module
Talend Administration Center
Content
Administration and Monitoring
Last publication date
2024-02-20
If Talend Administration Center is configured with HTTPS, the continuous deployment Jenkins Job should be configured to include a truststore with the Talend Administration Center certificate imported into it.

Procedure

  1. Run the following command to export the Talend Administration Center certificate/Public Key from the keystore.
    keytool -export \
    -keystore $KEYSTORE_FILE \
    -keypass $KEY_PWD \
    -storepass $STORE_PWD \
    -alias $ALIAS \
    -file $TAC_CERTIFICATE \
    -v

    If Talend Administration Center is configured with HTTPS, the continuous deployment Jenkins Job should be configured to include a truststore with the Talend Administration Center certificate imported into it.

    Here, $KEYSTORE_FILE is the path of the keystore where the private key and certificate/public key are stored. $TAC_CERTIFICATE is the file name of the exported certificate.

  2. Copy the certificate to the Jenkins Server.
  3. Execute the following command to create a truststore with the Talend Administration Center certificate.
    keytool -import \
    -trustcacerts \
    -alias $ALIAS \
    -file $TAC_CERTIFICATE \
    -keystore $TRUSTSTORE_FILE

    $TAC_CERTIFICATE is the certificate copied from the Talend Administration Center server, $TRUSTSTORE_FILE.