Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
cloudappliance/createcsr [2018_05_17 00:04] – created stevencloudappliance/createcsr [2018_05_17 00:19] doug
Line 1: Line 1:
-Log in as smeconfiguser than become root+====== Creating a CSR (Certificate Signing Request) ======
  
-    openssl req -new -newkey rsa:2048 -nodes -out tuamdocs_directroute_ie.csr -keyout tuamdocs_directroute_ie.key -subj "/C=US/ST=Munster/L=Limerick/O=Directroute/OU=IT/CN=tuamdocs.directroute.ie"+Log in as smeconfiguser then become root 
 + 
 +    openssl req -new -newkey rsa:2048 -nodes -out my_fqdn.com.csr -keyout my_fqdn.com.key -subj "/C=US/ST=MyState/L=MyCity/O=MyOrganization/OU=MyOrganizationalUnit/CN=my.fqdn.com"
  
 This will generate 2 files: This will generate 2 files:
    
-    tuamdocs_directroute_ie.key +    my_fqdn.com.key 
-    tuamdocs_directroute_ie.csr+    my_fqdn.com.csr
  
-Copy the file tuamdocs_directroute_ie.key to the private certs folder+Copy the file my_fqdn.com.key to the private certs folder
  
-    cp tuamdocs_directroute_ie.key /etc/pki/tls/private/+    cp my_fqdn.com.key /etc/pki/tls/private/
  
 Ensure the file is in the proper location before deleting it: Ensure the file is in the proper location before deleting it:
  
-    cat /etc/pki/tls/private/tuamdocs_directroute_ie.key+    cat /etc/pki/tls/private/my_fqdn.com.key
  
-    rm tuamdocs_directroute_ie.key+    rm my_fqdn.com.key
  
 Send the CSR to the Certificate Authority of choice Send the CSR to the Certificate Authority of choice
  
-    cat tuamdocs_directroute_ie.csr+    cat my_fqdn.com.csr
  
 The certificate authority will reply with a signed public key and intermediary certs. The certificate authority will reply with a signed public key and intermediary certs.
-These can be uploaded to the File Fabric.+These can be uploaded to the File Fabric when configuring via [[cloudappliance:applinstallv1705|smeconfigserver]]. 
 +