Thank you, really appreciate it!
My ipv6 is already disabled:
$ ping6 acme-v01.api.letsencrypt.org
connect: Network is unreachable
I’m trying to run something like this (although I’ve tried all sorts of variations, e.g. renew --dry-run, etc.)
$ ./letsencrypt-auto --apache -d …
Logs are:
2016-10-08 21:28:49,387:DEBUG:certbot.reverter:Creating backup of /etc/apache2/apache2.conf
2016-10-08 21:28:52,553:INFO:certbot.auth_handler:Waiting for verification…
2016-10-08 21:28:52,570:DEBUG:acme.client:Serialized JSON: {“keyAuthorization”: "aTkNsb7OKIRlNhwIOE5ATJS7ke8jzA8Oh0s9L-O
2016-10-08 21:28:52,571:DEBUG:acme.jose.json_util:Omitted empty fields: x5c=(), crit=(), typ=None, jwk=None, x5u=None, k
2016-10-08 21:28:52,583:DEBUG:acme.jose.json_util:Omitted empty fields: x5c=(), crit=(), nonce=None, typ=None, x5u=None,
2016-10-08 21:28:52,584:DEBUG:root:Sending POST request to https://acme-v01.api.letsencrypt.org/acme/challenge/s47X-6x4g
2016-10-08 21:28:52,870:DEBUG:requests.packages.urllib3.connectionpool:“POST /acme/challenge/s47X-6x4gqKGAOUhqwBdzCFWjxA
2016-10-08 21:28:52,872:DEBUG:root:Received <Response [202]>. Headers: {‘Content-Length’: ‘225’, ‘Boulder-Request-Id’: '
2016-10-08 21:28:52,873:DEBUG:acme.client:Storing nonce: '\x8e\x1c\x0c\x1e\xfe\x9a\xc1\xf3\xdb\xe2\x19\x13\xe5\x95\xa0\x
2016-10-08 21:28:52,873:DEBUG:acme.client:Received response <Response [202]> (headers: {‘Content-Length’: ‘225’, ‘Boulde
2016-10-08 21:28:55,877:DEBUG:root:Sending GET request to https://acme-v01.api.letsencrypt.org/acme/authz/s47X-6x4gqKGAO
2016-10-08 21:28:56,165:DEBUG:requests.packages.urllib3.connectionpool:"GET /acme/authz/s47X-6x4gqKGAOUhqwBdzCFWjxAq3-5t
2016-10-08 21:28:56,166:DEBUG:root:Received <Response [200]>. Headers: {‘Content-Length’: ‘1454’, ‘Expires’: ‘Sat, 08 Oc
2016-10-08 21:28:56,167:DEBUG:acme.client:Received response <Response [200]> (headers: {‘Content-Length’: ‘1454’, ‘Expir
2016-10-08 21:28:56,169:INFO:certbot.auth_handler:Cleaning up challenges
2016-10-08 21:28:56,876:INFO:certbot.crypto_util:Generating key (2048 bits): /etc/letsencrypt/keys/0047_key-certbot.pem
2016-10-08 21:28:56,900:INFO:certbot.crypto_util:Creating CSR: /etc/letsencrypt/csr/0047_csr-certbot.pem
2016-10-08 21:28:56,910:DEBUG:certbot.client:CSR: CSR(file=’/etc/letsencrypt/csr/0047_csr-certbot.pem’, data=‘0\x82\x02
2016-10-08 21:28:56,911:DEBUG:acme.client:Requesting issuance…
2016-10-08 21:28:56,911:DEBUG:acme.client:Serialized JSON: {“resource”: “new-cert”, “csr”: “MIICjDCCAXQCAQIwGjEYMBYGA1UE
2016-10-08 21:28:56,913:DEBUG:acme.jose.json_util:Omitted empty fields: x5c=(), crit=(), typ=None, jwk=None, x5u=None, k
2016-10-08 21:28:56,925:DEBUG:acme.jose.json_util:Omitted empty fields: x5c=(), crit=(), nonce=None, typ=None, x5u=None,
2016-10-08 21:28:56,926:DEBUG:root:Sending POST request to https://acme-v01.api.letsencrypt.org/acme/new-cert. args: (),
2016-10-08 21:33:56,444:DEBUG:certbot.main:Exiting abnormally:
Traceback (most recent call last):
File “/home/xxxxx/.local/share/letsencrypt/bin/letsencrypt”, line 11, in
sys.exit(main())
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/certbot/main.py”, line 776, in main
return config.func(config, plugins)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/certbot/main.py”, line 511, in run
action, lineage = _auth_from_domains(le_client, config, domains)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/certbot/main.py”, line 96, in _auth_fro
renewal.renew_cert(config, domains, le_client, lineage)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/certbot/renewal.py”, line 238, in renew
new_certr, new_chain, new_key, _ = le_client.obtain_certificate(domains)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/certbot/client.py”, line 263, in obtain
return (self.obtain_certificate_from_csr(domains, csr, authzr=authzr)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/certbot/client.py”, line 234, in obtain
authzr)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/acme/client.py”, line 312, in request_i
headers={‘Accept’: content_type})
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/acme/client.py”, line 647, in post
response = self._send_request(‘POST’, url, data=data, **kwargs)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/acme/client.py”, line 606, in _send_req
response = self.session.request(method, url, *args, **kwargs)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/requests/sessions.py”, line 468, in req
resp = self.send(prep, **send_kwargs)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/requests/sessions.py”, line 576, in sen
r = adapter.send(request, **kwargs)
File “/home/xxxxx/.local/share/letsencrypt/local/lib/python2.7/site-packages/requests/adapters.py”, line 426, in sen
raise ConnectionError(err, request=request)
ConnectionError: (‘Connection aborted.’, BadStatusLine(”’’”,))