Step 2 - Import Lookout Private CA Root and lookoutforwardproxy Certs
Install both certs into the Java Certificate Store for each applicable tool or framework.
Tool/framework | Windows | MacOS |
---|---|---|
Java |
Run these commands to add both certs to Java cacerts. keytool -import -trustcacerts -cacerts -storepass changeit -noprompt -alias lktPrivateCertRoot -file D:\LookoutPrivateCARoot.crt keytool -import -trustcacerts -cacerts -storepass changeit -noprompt -alias lktFwdProxy -file D:\lookoutforwardproxy.crt |
N/A |
Intellij | Access | MacOS requires no command line changes. |
Git |
Import the Root cert to the Git CLI by adding the LookoutPrivateCARoot.crt content to the end of the ca-bundle.crt file in the Git installation:
w64\etc\ssl\certs\ca-bundle.crt |
|
AWS |
Import the Root cert to Aws CLI. Add the LookoutPrivateCARoot.crt file content to the end of the cacert.pem file in the AWS CLI installation location. C:\Program Files\Amazon\AWSCLIV2\awscli\b otocore\cacert.pem. |
sudo keytool -import -keystore cacerts -trustcacerts -alias your-alias-here -file path/to/certificate.cer Example:
|
Python |
Find the location of the truststore.
C:\Python311\Lib\site-packages\certifi \cacert.pem Add the content of LookoutPrivateCARoot.crt at the end of the cacert.pem file. If you are using PIP, run this command:
|
Example:
|
Google Cloud Platform | N/A |
Export certs as described in Step 1: to
Combine the certs:
Configure the GCP custom ca certs: gcloud config set core/custom_ca_certs_file ~/lookoutcombined.pem |