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.
Note:
I have cnames and have set VirtualHost for the two domains I am trying to expand with certbot. I am trying to expand the number of domains under letsencrypt from 7 to 9.
It produced this output:
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator apache, Installer apache
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for creekhouse.ingber.com
http-01 challenge for louise.ingber.com
Waiting for verification...
Challenge failed for domain creekhouse.ingber.com
Challenge failed for domain louise.ingber.com
http-01 challenge for creekhouse.ingber.com
http-01 challenge for louise.ingber.com
Cleaning up challenges
Some challenges have failed.
To fix these errors, please make sure that your domain name was
entered correctly and the DNS A/AAAA record(s) for that domain
contain(s) the right IP address.
My web server is (include version):
apache2 (Server version: Apache/2.4.41 (Ubuntu))
The operating system my web server runs on is (include version):
Distributor ID: Ubuntu
Description: Ubuntu 20.04.3 LTS
Release: 20.04
Codename: focal
My hosting provider, if applicable, is:
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):
certbot 0.40.0
Welcome Back to the Let's Encrypt Community, Lester
I tested both of the new domain names with Let's Debug, which did not receive the responses that you did from Let's Encrypt, so something will need to be resolved there.
First though:
--expand tells Certbot to update an existing certificate with a new certificate that contains all of the old domains and one or more additional new domains. With the --expand option, use the -d option to specify all existing domains and one or more new domains.
Typically using --cert-name is preferable to using --expand. To do this right, we need to first know the output of:
13:47:15 ingber@linode# ~: apachectl -t -D DUMP_VHOSTS
VirtualHost configuration:
173.255.212.226:80 is a NameVirtualHost
default server www.ingber.com (/etc/apache2/sites-enabled/000-default.conf:7)
port 80 namevhost www.ingber.com (/etc/apache2/sites-enabled/000-default.conf:7)
alias ingber.com
alias www.ingber.com
port 80 namevhost creekhouse.ingber.com (/etc/apache2/sites-enabled/000-default.conf:20)
port 80 namevhost louise.ingber.com (/etc/apache2/sites-enabled/000-default.conf:32)
port 80 namevhost blog.ingber.com (/etc/apache2/sites-enabled/000-default.conf:44)
port 80 namevhost lester.ingber.com (/etc/apache2/sites-enabled/000-default.conf:56)
port 80 namevhost lin.ingber.com (/etc/apache2/sites-enabled/000-default.conf:68)
port 80 namevhost lin6.ingber.com (/etc/apache2/sites-enabled/000-default.conf:80)
173.255.212.226:443 is a NameVirtualHost
default server www.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:12)
port 443 namevhost www.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:12)
alias ingber.com
alias www.ingber.com
port 443 namevhost louise.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:47)
port 443 namevhost creekhouse.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:81)
port 443 namevhost blog.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:115)
port 443 namevhost lester.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:149)
port 443 namevhost lin.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:183)
port 443 namevhost lin6.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:217)
[2600:3c01::f03c:91ff:fe93:e6f3]:80 is a NameVirtualHost
default server www.ingber.com (/etc/apache2/sites-enabled/000-default.conf:7)
port 80 namevhost www.ingber.com (/etc/apache2/sites-enabled/000-default.conf:7)
alias ingber.com
alias www.ingber.com
port 80 namevhost creekhouse.ingber.com (/etc/apache2/sites-enabled/000-default.conf:20)
port 80 namevhost louise.ingber.com (/etc/apache2/sites-enabled/000-default.conf:32)
port 80 namevhost blog.ingber.com (/etc/apache2/sites-enabled/000-default.conf:44)
port 80 namevhost lester.ingber.com (/etc/apache2/sites-enabled/000-default.conf:56)
port 80 namevhost lin.ingber.com (/etc/apache2/sites-enabled/000-default.conf:68)
port 80 namevhost lin6.ingber.com (/etc/apache2/sites-enabled/000-default.conf:80)
[2600:3c01::f03c:91ff:fe93:e6f3]:443 is a NameVirtualHost
default server www.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:12)
port 443 namevhost www.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:12)
alias ingber.com
alias www.ingber.com
port 443 namevhost louise.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:47)
port 443 namevhost creekhouse.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:81)
port 443 namevhost blog.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:115)
port 443 namevhost lester.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:149)
port 443 namevhost lin.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:183)
port 443 namevhost lin6.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:217)
*:80 default.ingber.com (/etc/apache2/sites-enabled/000-default.conf:1)
*:443 default.ingber.com (/etc/apache2/sites-enabled/default-ssl.conf:2)
Since I have provided a lot of information, I will wait until someone can make a definitive statement (I too can guess, but I'd rather not) about the proper way to fix this "expand" issue.