Difference between revisions of "DLO Edgeserver ssl certificate renewal"
From Notes_Wiki
(Created page with "Home > Backup server > Veritas DLO > DLO Edgeserver ssl certificate renewal == Steps to Renew SBPL DLO Edgeserver SSL Certificate == === 1. Generate CSR === CSR was generated using the following URL: * https://www.ssl.com/how-to/generate-a-certificate-signing-request-csr-in-iis-10/ CSR files sent with the customer and got SSL Certificates from vendor in P7B format. === 2. Export Certificates from P7B to CRT === Use the command below to ext...") |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 15: | Line 15: | ||
<pre> | <pre> | ||
openssl pkcs7 -print_certs -in | openssl pkcs7 -print_certs -in domain.com.p7b -out edge.crt | ||
</pre> | </pre> | ||
| Line 27: | Line 27: | ||
<pre> | <pre> | ||
openssl pkcs12 -in | openssl pkcs12 -in domainprivatekey.txt.pfx -nocerts -out edge.key | ||
</pre> | </pre> | ||
| Line 34: | Line 34: | ||
<pre> | <pre> | ||
openssl rsa -in | openssl rsa -in edge.key -out newedge.key | ||
</pre> | </pre> | ||
=== 6. Update Certificate in DLO Admin Console === | === 6. Update Certificate in DLO Admin Console === | ||
Upload (push) the Edgeserver certificate in the DLO Admin Console. | Upload (push) the Edgeserver certificate in the DLO Admin Console. | ||
Latest revision as of 10:15, 17 November 2025
Home > Backup server > Veritas DLO > DLO Edgeserver ssl certificate renewal
Steps to Renew SBPL DLO Edgeserver SSL Certificate
1. Generate CSR
CSR was generated using the following URL:
CSR files sent with the customer and got SSL Certificates from vendor in P7B format.
2. Export Certificates from P7B to CRT
Use the command below to extract all certificates from a .p7b file:
openssl pkcs7 -print_certs -in domain.com.p7b -out edge.crt
3. Install Server Certificate and Export Private Key
Follow the steps in the below article to install the server certificate manually:
4. Export Private Key from PFX
Use the command below to export the private key:
openssl pkcs12 -in domainprivatekey.txt.pfx -nocerts -out edge.key
5. Remove Password from Private Key File
Use the following command to remove the passphrase:
openssl rsa -in edge.key -out newedge.key
6. Update Certificate in DLO Admin Console
Upload (push) the Edgeserver certificate in the DLO Admin Console.