From time to time you may need to renew your web site's SSL certificate. Usually this is done for you automatically by your web hosting company. However, if you host website(s) on your own web server(s), then chances are you will need to do this yourself.
This blog post describes the steps you will need to take to renew your SSL certificate with Certbot (assuming you used Certbot to configure and install your SSL).
Perform the following steps to have Certbot renew all of the installed SSL certificates on a server:
certbot renew
If you want to force certbot to renew all certificates even before their expiration dates are near, then you can type the following into the Command Prompt certbot renew --force-renewal
However, if you only want to renew a specific certificate instead of all of them, you can type the following into the Command Prompt certbot certonly --force-renew
(instead of certbot rewnew) and specify each of the associated domain names with -d, such as:
certbot certonly --force-renew -d example.com -d www.examble.com
If you don't know the name's used in the certificate then you can type the following into the Command Prompt:
certbot certificates
and then specify the certificate's name with --cert-name, as in:
certbot certonly --force-renew --cert-name example.com
Thank you for reading, I hope you found this blog post educational and helpful.
About | Contact Us | Privacy | Terms & Conditions | © 2024 - T&J Divisions, LLC, All Rights Reserved |