Supporting Commands / Configurations
To Obtain and Install Host certificate in Ubuntu;
Open the host in web client
Click on the “Not secure” in the address bar
Navigate to Certificate à Details à Copy to file
In Certificate export wizard, Click Next à Base 64 encoding, Click Next à Save the file in Cer format
Copy the file into the ubuntu server
Convert cer format to crt with the following command (sudo openssl x509 -inform PEM -in certificate.cer -out certificate.crt)
Move the certificate to ca-certificates folder (sudo mv certificate.crt /usr/share/ca-certificate/)
Run the following command to install the certificate (sudo update-ca-certificates)
Last updated