Certbot - Could not find a suitable TLS CA certificate bundle [Archlinux]

12,819

Solution 1

Maybe /etc/ssl/certs/ca-certificates.crt is not exist.

Try running sudo update-ca-certificates to create it.

Solution 2

I ended up doing cd /etc/ssl/certs followed by cat *.pem >> ca-certificates.crt

Not the most elegant solution and you'll have to delete the file and redo it every time the ca-certificates package (or its dependents) update...

Share:
12,819
user9443103
Author by

user9443103

Updated on June 04, 2022

Comments

  • user9443103
    user9443103 almost 2 years

    I'am trying to generate certificate from Let's Encrypt It over certbot (package ver. 0.21.1.-1), but i'am getting error. I'am using webroot module.

    OSError: Could not find a suitable TLS CA certificate bundle, invalid path: /etc/ssl/certs/ca-certificates.crt
    

    I don't have there file with this filename. Should i generate it, download?

  • user9443103
    user9443103 about 6 years
    Package ca-certificates is in certbot dependencies. I tried to reinstall it, but it don't helped.