Import of certificate

To allow various applications to act as SSL/TLS clients in communication, a server certificate needs to be imported to the keystore to which the applications refer.
Import a certificate when you perform SSL/TLS communication between each component and destination or when you perform SSL/TLS communication between each application and DataSpiderServer.
The procedures are explained as follows.

Location of the executable file of keytool

Import Keystore

To import a certificate to the keystore to which various applications refer, perform the procedure shown below.
  1. Place the certificate on the OS on which the applications run.

  2. Stop the applications.

  3. Start Command project (shell in case of UNIX/Linux version), then start of registration certificate by running the following command.

    keytool -importcert -noprompt -trustcacerts -keystore "$DATASPIDER_HOME/jre/lib/security/cacerts" -alias <Alias name> -file <File path of certificate>

  4. Enter a password for the keystore.
    The initial password for the keystore is "changeit". If you do not change the password, please input the following: <password> is "changeit".

    Input the password of the key store:  <password>

  5. Once successfully registered, the following message is displayed.

    Certificate was added to keystore.

  6. Start the applications.

Notes