Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. crt.sh | example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is: 43aah.com
I ran this command: NA
It produced this output: NA
My web server is (include version): Apache/2.4.29
The operating system my web server runs on is (include version): Ubuntu 18.04
My hosting provider, if applicable, is: NA
I can login to a root shell on my machine (yes or no, or I don't know): yes
I'm using a control panel to manage my site (no, or provide the name and version of the control panel): no
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you're using Certbot): 1.16.0
I am having some problems with certbot on my server. It uses apache authenticator plugin, and every time renewal runs it is causing apache to respond very slowly because of the reloads. This did not happen when I was using certbot-auto, but now that I am using the binary via snap, this is happening every day when the renewal runs.
First off:
Is it possible to disable the cronjob/system timer that runs certbot renewals twice a day until I can get this figured out?
When I run systemctl list-timers --all I see one for certbot: snap.certbot.renew.timer
Secondly:
I would like to move my existing certificates that use apache authenticator to webroot authenticator. My issue is, I have over 230 certificates on this server that currently use apache authenticator. Here is an example renewal config file in /etc/letsencrypt/renewal:
renew_before_expiry = 30 days
version = 0.31.0
archive_dir = /etc/letsencrypt/archive/43aah.com
cert = /etc/letsencrypt/live/43aah.com/cert.pem
privkey = /etc/letsencrypt/live/43aah.com/privkey.pem
chain = /etc/letsencrypt/live/43aah.com/chain.pem
fullchain = /etc/letsencrypt/live/43aah.com/fullchain.pem
Options used in the renewal process
[renewalparams]
authenticator = apache
account = ACCOUNT NUMBER
server = https://acme-v02.api.letsencrypt.org/directory
installer = apache
Is there an easy way to transition all of my certificates to renew using webroot authenticator instead of apache so that I don't have this problem with apache when the auto renewal runs?