如何使用 certbot 更新所有证书?

如何使用 certbot 更新所有证书?

我不想只更新即将到期的证书。(不管“即将”是什么意思)。我想更新所有证书,以确保它们将来的到期时间相同。

我找不到使用 certbot 执行此操作的方法。有什么建议吗?

答案1

嗯,certbot -h renew建议:

renew:

  --force-renewal, --renew-by-default
                        If a certificate already exists for the requested
                        domains, renew it now, regardless of whether it is
                        near expiry.

答案2

那天 letsencrypt 到我主机的路由不知怎么地不太稳定,我需要一个额外的技巧。只有一些证书在第一次尝试时成功了,我不想立即重新请求它们。

如果您只想更新特定证书但确实要更新,您可以使用:

certbot renew --cert-name example.com --force-renewal

如果该证书中包含多个域名,这可以节省您重新输入所有域名的时间。

相关内容