使用 Certbot 申请 Let's Encrypt SSL 证书,并定时续期

Posted 杰克伦敦尘的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 Certbot 申请 Let's Encrypt SSL 证书,并定时续期相关的知识,希望对你有一定的参考价值。

网站有个 SSL 证书,可以提高安全性、及提高搜索引擎的排名。 Let\'s Encrypt SSL 证书是免费的,可以用命令行申请,也可以用命令行续期。 Let\'s Encrypt 网站推荐用 cerbot 工具。

网站有个 SSL 证书,可以提高安全性、及提高搜索引擎的排名。
Let’s Encrypt SSL 证书是免费的,可以用命令行申请,也可以用命令行续期。

Let’s Encrypt 网站推荐用 cerbot 工具。这个工具软件在不同的年份,有不同的用法(可能是不同软件版本的命令行,参数与之前版本改动较大),网上查到的往往行不通。这篇文章介绍当前版本可用的命令行参数使用方法。

 

参考网站:
https://letsencrypt.org/zh-cn/
https://certbot.eff.org/instructions

a. 申请有通配符的域名 SSL 证书:

certbot certonly -d *.somedomain.com --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory

 


根据提示,输入对应的信息。生成证书后,可更改 nginx/apache 对应的配置文件。

 

b. 定时运行命令,续期 SSL 证书:

certbot certonly -d *.somedomain.com --manual --preferred-challenges dns --server https://acme-v02.api.letsencrypt.org/directory

 


命令与前一步一样。得到的提示不同,如下:

What would you like to do?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: Keep the existing certificate for now
2: Renew & replace the certificate (may be subject to CA rate limits)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate number [1-2] then [enter] (press \'c\' to cancel): 2

选择 2,进行 SSL 证书续期。续期后的证书,是覆盖原有的。

 

-------此博客同时发表于 https://my.oschina.net/jacklondon,https://www.cnblogs.com/jacklondon,https://www.zheguisoft.com/staff_blogs/jacklondon_chen/2022 ,欢迎转载。

转载请注明出处: http://www.cnblogs.com/jacklondon ; 欢迎访问 http://www.zheguisoft.com/ 并提建议。

以上是关于使用 Certbot 申请 Let's Encrypt SSL 证书,并定时续期的主要内容,如果未能解决你的问题,请参考以下文章

Let's Encrypt 通配符证书申请

免费 Https 证书(Let's Encrypt)申请与配置

Let's Encrypt免费通配符 SSL 证书申请教程

申请Let's Encrypt免费SSL证书

Nginx使用Certbot配置Let's Encrypt域名https解决方案

为Nginx申请和使用Let‘s Encrypt的SSL免费证书