I cloned a server to a second server setup.
I then changed the httpd domain configurations on the second server, not realizing there were certbot configurations I had migrated over. When I ran “certbot renew” on the new server, it renewed some certificates that were no longer pointing to that server, which now seems to have invalidated my original server’s certbot configuation.
Unfortunately this seems to have broken the original server’s authorization?
After realizing this, I went to the directory: /etc/letsencrypt/renewal and removed all the domain.conf files for domains that were no longer pointing to the new server. (I assume perhaps I should have used the certbot delete command but this does the same thing?)
How can I make sure both servers can successfully renew their certificates?
What I tried to do was run the command:
certbot update_account
On one of the servers. This may have made both of them unique to the cert authority? But when I tried to renew the certs on the original server, I got this message:
Processing /etc/letsencrypt/renewal/www.xx.com.conf
Cert is due for renewal, auto-renewing…
Plugins selected: Authenticator apache, Installer apache
Starting new HTTPS connection (1): acme-v02.api.letsencrypt.org
Renewing an existing certificate
Attempting to renew cert (www.xx.com) from /etc/letsencrypt/renewal/www.xx.com.conf produced an unexpected error: urn:ietf:params:acme:error:rateLimited :: There were too many requests of a given type :: Error creating new order :: too many failed authorizations recently: see https://letsencrypt.org/docs/rate-limits/. Skipping.
All renewal attempts failed. The following certs could not be renewed:
/etc/letsencrypt/live/xx.com/fullchain.pem (failure)
/etc/letsencrypt/live/xx.com/fullchain.pem (failure)
Do I just need to wait a little while before trying again? Or have I broken one or both certbot installations?
When I type “certbox certificates” - I get a list of different certs on each of the two servers now, so that is ok. I just want to make sure that since I accidentally renewed a few certs on the new/wrong box, it won’t cause the old/original renewal for those domains to fail.
Any help would be appreciated!