Software ssl certificate issues

From MEG Core
Revision as of 09:39, 14 June 2022 by Jstout (talk | contribs) (Created page with "SystemWide certificates: UBUNTU: https://ubuntu.com/server/docs/security-trust-store Pip and conda SSL certificates: https://stackoverflow.com/questions/39356413/how-to-ad...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

SystemWide certificates:

 UBUNTU:  https://ubuntu.com/server/docs/security-trust-store

Pip and conda SSL certificates: https://stackoverflow.com/questions/39356413/how-to-add-a-custom-ca-root-certificate-to-the-ca-store-used-by-pip-in-windows

 #From the Website above
 pip config set global.cert path/to/ca-bundle.crt
 pip config list
 conda config --set ssl_verify path/to/ca-bundle.crt
 conda config --show ssl_verify
 
 # Bonus while we are here...
 git config --global http.sslVerify true
 git config --global http.sslCAInfo path/to/ca-bundle.crt


Single use:

 pip --cert ${certificate path} pip_command