Renova o certificado Letsencrypt

2

Estou tentando renovar meu certificado letsencrypt pelo próximo comando:

./letsencrype-auto renew 

mas recebo esta mensagem de erro:

configuration file /etc/letsencrypt/renewal/domain.conf produced an unexpected error: Namespace object has no attribute 'standalone_supported_challenges'. 

Se eu tentar usar o comando que criei meu certificado:

./letsencrypt-auto certonly --standalone-supported-challenges tls-sni-01 -d domain

Eu recebo este erro:

unrecognized arguments:  --standalone-supported-challenges tls-sni-01

Se eu tentar isso:

./letsencrypt-auto certonly --standalone -d domain

Diz:

The requested standalone plugin does not appear to be installed.

Não sei como renovar meu certificado agora.

    
por Alvaro Arjona 03.05.2016 / 09:34

2 respostas

0

de acordo com a documentação, o recurso de renovação automática foi introduzido na versão 0.4.0 e não usa a sintaxe acima. por favor consulte:

link

As of version 0.4.0, the letsencrypt python client supports a high-level renew subcommand that attempts to renew all of your certs using the same settings that you originally used to obtain them. You can test it out by running:

letsencrypt renew --dry-run

which will obtain test certs, and shouldn’t leave any persistent changes on your system. If you like the results, you can run:

letsencrypt renew

If you want to renew specific certificates (rather than all of them) or tweak the exact parameters used for renewal, you can use the letsencrypt certonly command to perform renewal of a single certificate with more specific control of settings. When using letsencrypt certonly, you can obtain renewal of a single certificate at a time. Specify -d flags for each and every domain covered by the domain that you wish to renew.

    
por 03.05.2016 / 12:01
0

./letsencrype-auto renew isso já deve funcionar e deve renovar todos certificados

.

Tente renovar um único domínio.

./letsencrypt-auto --apache -d example.com
    
por 03.05.2016 / 17:20