Letsencrypt renew help. Intermedaite CA link bad?

Discuss your pilot or production implementation with other Zimbra admins or our engineers.
Post Reply
protelit
Posts: 15
Joined: Tue Sep 25, 2018 11:46 am

Letsencrypt renew help. Intermedaite CA link bad?

Post by protelit »

I need some help. I am trying to renew my Letsencrypt SSL. All is good until the step to get the IndenTrust root cert. The link seems to be wrong now.
https://www.identrust.com/certificates/ ... ad-x3.html
My notes (and all the google searches) say that link should give me the cert to cut and past to my chain.pen file.

Can anyone help with the correct link
User avatar
JDunphy
Outstanding Member
Outstanding Member
Posts: 889
Joined: Fri Sep 12, 2014 11:18 pm
Location: Victoria, BC
ZCS/ZD Version: 9.0.0_P39 NETWORK Edition

Re: Letsencrypt renew help. Intermedaite CA link bad?

Post by JDunphy »

Here is what I am doing.

Code: Select all

  # grab it if we don't have it
  if [ ! -f "$_IdentTrust" ]; then
     _debug No "$_IdentTrust"
     wget -q "https://ssl-tools.net/certificates/dac9024f54d8f6df94935fb1732638ca6ad77c13.pem" -O "$_IdentTrust" || return 1
  fi
Reference: https://wiki.zimbra.com/wiki/index.php? ... One_Method
protelit
Posts: 15
Joined: Tue Sep 25, 2018 11:46 am

Re: Letsencrypt renew help. Intermedaite CA link bad?

Post by protelit »

Great I ran wget -q "https://ssl-tools.net/certificates/dac9 ... d77c13.pem" -O and got the cert.

Am I using an old way of installing/updating LetsEncrypt? That was a code you gave. I have a number of manual steps I go over to renew
User avatar
JDunphy
Outstanding Member
Outstanding Member
Posts: 889
Joined: Fri Sep 12, 2014 11:18 pm
Location: Victoria, BC
ZCS/ZD Version: 9.0.0_P39 NETWORK Edition

Re: Letsencrypt renew help. Intermedaite CA link bad?

Post by JDunphy »

Use what works best for you. There are lots of great ways documented in the wiki's and forums.

FWIW, that snippet of code I provided is something that we are hoping to have included with the acme.sh project in their deploy sub directory. The wiki link above is not an official zimbra method but something that evolved from feedback through these forums.
Post Reply