Top
ServerView Resource Orchestrator Cloud Edition V3.1.0 Setup Guide

3.1.2 Registering Certificates used in SSL Communication

Obtain the site certificate that was issued by the CA, and the CA certificate of the issuer of that certificate, and register them using the certificate/CRL registration command (from now on, this is referred to as the "scsenter command").

Information

Depending on the CA, it might be necessary to register an intermediate CA certificate. Refer to "Registering Certificates and CRL" in Chapter 9, "Setting and Use of the Interstage Certificate Environment" in the "Interstage Application Server Security System Guide" for details.
This work is unnecessary if you created a test site certificate.

Creation procedure

  1. Set the JDK or JRE installation path in the JAVA_HOME environment variable.

  2. Register the CA certificate using the scsenter command.

    scsenter -n <CA certificate nickname> -f <CA certificate>

    Information

    Refer to Chapter 16, "SSL Environment Setting Commands" in the "Interstage Application Server Reference Manual (Command Edition)" for information on the scsenter command.

  3. Enter a password to access the Interstage certificate environment.

    Enter the password that was specified in the scsmakeenv command to access the Interstage certificate environment.

  4. Register the site certificate using the scsenter command.

    scsenter -n <Site certificate nickname> -f <Site certificate> -o

    To register the site certificate that was obtained from the CA, specify the nickname that was specified in the private key in the scsmakeenv command. Note that the -o option must be specified to register the site certificate.

  5. Enter a password to access the Interstage certificate environment.

    Enter the password that was specified in the scsmakeenv command to access the Interstage certificate environment.

Execution example [Windows Manager]

The command execution examples shown below use the following values:

- CA certificate: C:\temp\ca-cert.cer
- CA certificate nickname: CACERT
- Site certificate: C:\temp\server-cert.cer
- Site certificate nickname: SERVERCERT

Change the file names of the CA and site certificates that were obtained if necessary.

C:\>scsenter -n CACERT -f C:\temp\ca-cert.cer
Password:
SCS: INFO: scs0104: Certificate was imported.
C:\>scsenter -n SERVERCERT -f C:\temp\server-cert.cer -o
Password:
SCS: INFO: scs0104: Certificate was imported.
C:\>

Execution example [Linux Manager]

The command execution examples shown below use the following values:

- CA certificate: /tmp/ca-cert.cer
- CA certificate nickname: CACERT
- Site certificate: /tmp/server-cert.cer
- Site certificate nickname: SERVERCERT

Change the file names of the CA and site certificates that were obtained if necessary.
The Bourne shell has been used in the execution example.

# JAVA_HOME=/opt/FJSVawjbk/jdk5;export JAVA_HOME
# scsenter -n CACERT -f /tmp/ca-cert.cer
Password:
UX:SCS: INFO: scs0104: Certificate was imported.
# scsenter -n SERVERCERT -f /tmp/server-cert.cer -o
Password:
UX:SCS: INFO: scs0104: Certificate was imported.
#