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


Creating a Certificate Signing Request for the SAE Server Certificate

To create a certificate signing request (CSR):

  1. Access the SAE installation directory.
  2. cd /opt/UMC/sae
    
    
    
  3. Generate a private key for the SAE server certificate.
  4. openssl genrsa -out sae.key 
    
    
    
  5. Create a CSR for the SAE server certificate.
  6. openssl req -new -key sae.key -out sae.csr -subj <DN> 
    
    
    

Replace <DN> with the distinguished name that identifies your HTTPS server. Do not use the "#" character in DNs.

For example, if XYM Corp in Canada has an HTTPS server with a hostname of ssp1.domain.org, then the DN might be:

/CN=ssp1.domain.org/O=XYM/C=CA 


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