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:
idm.ipoac.ch
I ran this command:
certonly --dry-run -d idm.ipoac.ch --agree-tos -m email@example.com --authenticator dns-infomaniak -v -n
It produced this output:
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='acme-v02.api.letsencrypt.org', port=443): Max retries exceeded with url: /directory (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x70f58be393d0>: Failed to establish a new connection: [Errno -3] Try again'))
My web server is (include version):
none
The operating system my web server runs on is (include version):
Proxmox 8.2.2 running an Alpine Linux 3.19 LXC Container which in turn runs a modified Docker Image running Alpine Linux 3.18 which is based on the official Docker Image
My hosting provider, if applicable, is:
myself
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):
2.11.0
Issue while running container
Hi,
my setup might be a bit convoluted and the issue may not be directly related to LetsEncrypt / Certbot, but I am still hoping someone can offer some ideas for solving my problem.
When I run the container on my server, I do that via rootless podman kube play, I get the following error:
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='acme-v02.api.letsencrypt.org', port=443): Max retries exceeded with url: /directory (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x70f58be393d0>: Failed to establish a new connection: [Errno -3] Try again'))
BUT
- When running the exact same image with the same parameters on WSL openSUSE Tumbleweed the certificate is issued without problem.
- When running the exact same image on the exact same host, but interactively and execute the certbot certonly command, the certificate is issued without any issues as well.
podman command:lxc: ~$ podman run --rm -it --entrypoint ash ghcr.io/fipoac/certbot-dns-infomaniak:latest /opt/certbot # certbot certonly --dry-run -d idm.ipoac.ch --agree-tos -m email@example.com --authenticator dns-infomaniak -v -n Saving debug log to /var/log/letsencrypt/letsencrypt.log Plugins selected: Authenticator dns-infomaniak, Installer None Simulating a certificate request for idm.ipoac.ch Performing the following challenges: dns-01 challenge for idm.ipoac.ch Waiting 120 seconds for DNS changes to propagate Waiting for verification... Cleaning up challenges The dry run was successful.
I'm thankful for any solution approaches