[Contents] [Prev] [Next] [Index] [Report an Error] [No Frames]


Configuring Secure Connections for SAE Web Admin

You can protect communications between SAE Web Admin and a client browser by configuring Secure HyperText Transfer Protocol (https) for the Web application. The SDX software uses secure sockets layer (SSL) for https connections. To use SSL, you must obtain an authorized site certificate. The SDX software provides a dummy security certificate that you must replace with a real one. You can obtain a signed certificate from a certificate authority (CA).

To remove the dummy certificate and create a site certificate:

  1. Access the SAE installation directory.
  2. cd /opt/UMC/sae
    
    
    
  3. Remove the dummy certificate.
  4. rm -f lib/jetty/saeKeystore
    
    
    
  5. Generate a new self-signed certificate by using keytool; for example:
  6. /opt/UMC/jre/bin/keytool -genkey -keyalg RSA -keystore
    lib/jetty/saeKeystore -keypass saejetty -storepass saejetty -alias sae -dname
    <DN> -validity 365
    
    
    
  1. Create a certificate signing request (CSR).
  2. /opt/UMC/jre/bin/keytool -certreq -alias sae -file server.csr -keypass saejetty
    -keystore lib/jetty/saeKeystore -storepass saejetty
    
    
    

The command creates a CSR and places it in the server.csr file.

  1. Send the CSR from the file /opt/UMC/sae/server.csr for signing to a certificate authority (CA), such as one of the following commonly used authorities:

See http://www.entrust.net.

See http://www.verisign.com.

The CA authenticates you and returns a certificate, signed by them, that authenticates your public key.

  1. Import the signed certificate into the keystore.
  2. /opt/UMC/jre/bin/keytool -import -alias sae -file server.crt -keypass saejetty
    -noprompt -trustcacerts -keystore lib/jetty/saeKeystore -storepass saejetty
    

[Contents] [Prev] [Next] [Index] [Report an Error] [No Frames]