mirror of
https://github.com/acme-dns/acme-dns-client.git
synced 2026-04-25 13:25:59 +03:00
[GH-ISSUE #8] certbot renew --dry-run fails #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jcoker85 on GitHub (Mar 30, 2021).
Original GitHub issue: https://github.com/acme-dns/acme-dns-client/issues/8
After performing the steps on the readme, and running
acme-dns-client check -d DOMAINI get the following output
I attempted to do a dry run of the renewal using
certbot renew --dry-runBut always receive the message
My CAA record is as follows:
Am I missing a step in the renewal process?
@joohoi commented on GitHub (Apr 3, 2021):
Hi, there are multiple things that can be at play here, but I would assume that a certificate for
DOMAINwas initially using some other validation method (http-01 most likely).certbot renew, even with--dry-runwill just reuse the initial certbot configuration and tries to renew the certificate using those.Now you have added a
CAArecord that only allows DNS validation, that causes the renewal to fail.@jcoker85 commented on GitHub (Apr 9, 2021):
Hi @joohoi,
Thanks so much for your response, and apologies in the delay in mine.
I did get this working by performing:
sudo apt purge certbotfollowed bysudo apt autoremove(not sure second step is entirely necessary)and rerunning all of the steps listed in the README. So, it looks like your assumption was correct that old Certbot configuration was causing some confusion during the renewal process.
Thanks again!