LetsEncrypt - ACMESharp client pending for more than an hour

Decided to try the Letsencrypt service recently. I am using the Windows Powershell client found here - https://github.com/ebekker/ACMESharp

Following the quickstart instructions here https://github.com/ebekker/ACMESharp/wiki/Quick-Start - I managed to go to step 6b of the HTTP authentication procedure manually, but when I check the status of the request with the Update-ACMEIdentifier dns1 -ChallengeType http-01 request request is pending:

 IdentifierPart : ACMESharp.Messages.IdentifierPart IdentifierType : dns Identifier : www.example.com Uri : https://acme-v01.api.letsencrypt.org/acme/authz/#myhash Status : pending Expires : 16/02/2016 00:00:00 Challenges : {manual, , } Combinations : {1, 0, 2} 

I check the status every 10 minutes for the last hour, but it is still waiting. The quickstart instructions assume that the process should take several seconds and several minutes.

Is this an ACME server problem or an uninformative error response?

+5
source share
1 answer

The task you requested is probably not waiting, but the first one. You will see that there are three possible problems (dns, tns and http). If you issue individual issues, you will probably see that the http check has been confirmed. Try:

(Update-ACMEIdentifier dns1 -ChallengeType http-01) .Challenges

List details of all three tasks, including individual statuses.

+7
source

Source: https://habr.com/ru/post/1242654/


All Articles