Let's encrypt SSL server error on all domains

Justinas

Verified User
Joined
Dec 27, 2016
Messages
9
Hello,
when I try to generate Lets Encrypt certificate on all domains DA throws an error:

Cannot Execute Your Request
Details
2021/10/08 14:16:19 Could not create client: get directory at 'https://acme-v02.api.letsencrypt.org/directory': Get "https://acme-v02.api.letsencrypt.org/directory": x509: certificate signed by unknown authority
Certificate generation failed.

I ran commands:

./build update
./build letsencrypt
./build lego
./build apache

But an error stays the same.
 
Hi,

I don’t know if this is the solution for your problem, but we’ve had problems last week after the updated root certificate of LetsEncrypt. I’ve managed to fix this problem by running these commands (CentOS):

Install the ca-certificates package:
yum install ca-certificates

Enable the dynamic CA configuration feature:
update-ca-trust

Hope it will help you
 
Solved me the problem such a commands:

apt install ca-certificates -y
cd /usr/local/directadmin/scripts/
./letsencrypt.sh request_single my.server.com 2222
 
Back
Top