Skip to main content Skip to complementary content
Close announcements banner

Exporting the Talend Administration Center SSL certificate

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.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!