Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| cloudappliance/createcsr [2018_05_17 00:19] – doug | cloudappliance:createcsr [2024_03_18 19:54] (current) – removed steven | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Creating a CSR (Certificate Signing Request) ====== | ||
| - | |||
| - | 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 "/ | ||
| - | |||
| - | This will generate 2 files: | ||
| - | |||
| - | my_fqdn.com.key | ||
| - | my_fqdn.com.csr | ||
| - | |||
| - | Copy the file my_fqdn.com.key to the private certs folder | ||
| - | |||
| - | cp my_fqdn.com.key / | ||
| - | |||
| - | Ensure the file is in the proper location before deleting it: | ||
| - | |||
| - | cat / | ||
| - | |||
| - | rm my_fqdn.com.key | ||
| - | |||
| - | Send the CSR to the Certificate Authority of choice | ||
| - | |||
| - | cat my_fqdn.com.csr | ||
| - | |||
| - | The certificate authority will reply with a signed public key and intermediary certs. | ||
| - | These can be uploaded to the File Fabric when configuring via [[cloudappliance: | ||
| - | |||