我们开始使用 let's encrypt 时用作管理员电子邮件的电子邮件地址需要修改(一名前雇员使用他的个人电子邮件地址作为管理员电子邮件,他不再在公司任职)。需要采取哪些步骤来修改该地址(我们可以让前雇员确认这一点)。我们需要删除他的个人电子邮件地址并将其替换为新电子邮件地址。这将用于密钥恢复操作。无论哪种情况,我都希望删除前雇员的个人电子邮件地址。我需要采取哪些步骤来实现此目的(如果我对该过程的理解不正确,请为我指明正确的方向)。提前致谢。
答案1
因为 Let's Encrypt 是一个证书颁发机构,所以我猜您想要更新证书中的数据(电子邮件)。
如果证书已签名,则无法更新。需要生成新证书。
答案2
使用:
certbot-auto register --update-registration --email [email protected]
或者
certbot register --update-registration --email [email protected]
或者
certbot update_account --email [email protected]
certbot-auto
如果您在 下有可执行文件,则或certbot
将起作用/usr/sbin
。如果您无法全局调用 certbot-auto,请使用 certbot-auto 文件的路径。
答案3
更新基于https://letsencrypt.org/docs/expiration-emails/
certbot update_account --email [email protected]
前这只是n3rve的回答是,因为certbot-自动对我来说不起作用:
certbot register --update-registration --email [email protected]
答案4
根据https://letsencrypt.org/docs/expiration-emails/
certbot update_account --email [email protected]
我想它一直在变化