SSL Certificate only renews for 7 days Using ACME-PS

We have a automated task that runs every few weeks to make sure that certificates are up to date if they are not we use ACME-PS (PowerShell Gallery | ACME-PS 1.5.2) to update them

Recently the certificates have only been renewing for 7 days
I have tried running the script from other windows VM's and am getting the same issue the response that is coming back is only for 7 days


<# -- Script -- #>
Import-Module 'ACME-PS';

$acmeServiceName = "LetsEncrypt-Staging";

#Your email addresses, where acme services will send informations.
$contactMailAddresses = @($email);

# This directory is used to store your account key and service directory urls as well as orders and related data
$acmeStateDir = "C:\Temp\AcmeState";

# Create the state object - will be saved to disk
New-ACMEState -Path $acmeStateDir;

# Load URLs from service directory
Get-ACMEServiceDirectory -State $acmeStateDir -ServiceName $acmeServiceName;

# Retrieve the first anti-replay nonce
New-ACMENonce -State $acmeStateDir;

# Create an account key and store it to the state
New-ACMEAccountKey -State $acmeStateDir;

# Register account key with acme service
New-ACMEAccount -State $acmeStateDir -EmailAddresses $contactMailAddresses -AcceptTOS;

# This dns names will be used as identifier
$dnsIdentifiers = New-ACMEIdentifier $domain; 

# Create a new order 
$order = New-ACMEOrder -State $acmeStateDir -Identifiers $dnsIdentifiers;

For the same domain name i have tried setting up a Linux server with nginx and issues a certificate for that (not using the ACME-PS) and it issues it for the full 90 days

I don't quite understand. What do you mean 'is only for 7 days'? The validity of the certificate?

Also, please fill out the questionnaire which should have been presented to you when you opened this thread in the #help section:


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:

I ran this command:

It produced this output:

My web server is (include version):

The operating system my web server runs on is (include version):

My hosting provider, if applicable, is:

I can login to a root shell on my machine (yes or no, or I don't know):

I'm using a control panel to manage my site (no, or provide the name and version of the control panel):

The version of my client is (e.g. output of certbot --version or certbot-auto --version if you're using Certbot):

3 Likes

when the certificate is requested it expires after 7 days

Example below i created the request for a certificate this morning and below is the expiry of it

Expires : 2023-02-24T10:29:28Z

This is not possible with Let's Encrypt, but without your domain name (which you've now been asked twice to provide, but haven't) it isn't possible to track down what's going on.

3 Likes

Sorry domain is :jmtest.devopscloud.co.uk
Order is https://acme-staging-v02.api.letsencrypt.org/acme/order/88731814/7269826444

And when you request that same cert tomorrow it will expire in 6 days.
You are not even showing the good from date - only the expiration [which seems to be unchanging].
So, renewing the cert is not the problem.
You need to check on why the service is not using the renewed cert.

2 Likes

The above is the first time i have requested a certificate for that domain
based of the other i have tried it with if i was to request it again tomorrow it would expire again in another 7 days

The service is using the new cert but my question is why is it only 7 days and not the normal 90

I seruously doubt that.

Please show the from date too on that cert - not just the expiration date.
We will see if that cert was issued for 7 days OR not.

3 Likes

Could be some self signed cert is currently in situ and there actually is a problem with issuance. But the order linked above is still pending, so perhaps some issue with the ACME client.

That said, we're severely lacking in proper information here. The script in OP seems to be truncated.

4 Likes

Seems that the script is just saying that its got 7 days maybe this is for it to be authorized ? either way the certificate its self seems to be find once its finalized

Thanks for you time and help

1 Like

Without seeing the actual output of the script without any human interpretation, we just have to take your word for it :wink:

My advice for any next time is to provide AS MUCH details as possible preferably copy/paste from outputs, including any log file with also as much details as possible instead of as little as in this thread which also seem to be tainted by human interpretation.

4 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.