Hi guys,
I'm stuck in a problem that I cannot solve. On a server that used to run without problems, I now get timeout errors. However, the challenge query is successful. I have checked this with Wireshark. Where is the connection problem that is causing the timeout? I am at a loss and would appreciate any help. Here are the details:
My domain is: admin.szut.de
I ran this command:
$ sudo certbot renew --dry-run
$ sudo certbot certonly --apache --dry-run -d admin.szut.de
I tried certbot renew and certonly with or without --dry-run. The error message is always the same.
It produced this output:
administrator@demosios:~$ sudo certbot certonly --apache --dry-run -d admin.szut.de
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 admin.szut.de
Waiting for verification...
Cleaning up challenges
Failed authorization procedure. admin.szut.de (http-01): urn:ietf:params:acme:error:connection :: The server could not connect to the client to verify the domain :: Fetching http://admin.szut.de/.well-known/acme-challenge/ILMBS9VxOtPXO7bfOzxTRtpK--x98RpQdTx5tJsQtAs: Timeout during connect (likely firewall problem)IMPORTANT NOTES:
The following errors were reported by the server:
Domain: admin.szut.de
Type: connection
Detail: Fetching
http://admin.szut.de/.well-known/acme-challenge/ILMBS9VxOtPXO7bfOzxTRtpK--x98RpQdTx5tJsQtAs:
Timeout during connect (likely firewall problem)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. Additionally, please check that
your computer has a publicly routable IP address and that no
firewalls are preventing the server from communicating with the
client. If you're using the webroot plugin, you should also verify
that you are serving files from the webroot path you provided.
My web server is (include version): apache 2.4.29
The operating system my web server runs on is (include version): Ubuntu 18.04.5 LTS
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.31.0
The Capture of HTTP challenge traffic is:
GET /.well-known/acme-challenge/ILMBS9VxOtPXO7bfOzxTRtpK--x98RpQdTx5tJsQtAs HTTP/1.1
Host: admin.szut.de
User-Agent: Mozilla/5.0 (compatible; Let's Encrypt validation server; +https://www.letsencrypt.org)
Accept: /
Accept-Encoding: gzip
Connection: closeHTTP/1.1 200 OK
Date: Thu, 10 Jun 2021 12:26:08 GMT
Server: Apache/2.4.29 (Ubuntu)
Last-Modified: Thu, 10 Jun 2021 12:26:04 GMT
ETag: "57-5c4687eb34f5b"
Accept-Ranges: bytes
Content-Length: 87
Connection: closeILMBS9VxOtPXO7bfOzxTRtpK--x98RpQdTx5tJsQtAs.FqSWek3yvVGFqNmCDKx6-zD95hCPtaFthOkyu3yQnno
Searching the web I only found hints that the server might not be reachable via HTTP, but the challenge query obviously works. Where can a timeout still occur? Thanks for any idea.
Best regards
Hananja