Convert .cer to .pemsudo openssl x509 -inform PEM -in <file>.cer -out <file>.pem Convert .pem to .crtsudo openssl x509 -inform PEM -in <file>.pem -out <file>.crt Change privileged file access.sudo chmod 755 <file>.crt Copy to ca-certification foldersudo cp <file>.crt /etc/ssl/certs/ OR sudo cp <file>.crt /usr/local/share/ca-certificates/ Update system ca-certificationsudo update-ca-certificatesBy EmOne
sudo openssl x509 -inform PEM -in <file>.cer -out <file>.pem
sudo openssl x509 -inform PEM -in <file>.pem -out <file>.crt
sudo chmod 755 <file>.crt
sudo cp <file>.crt /etc/ssl/certs/
sudo cp <file>.crt /usr/local/share/ca-certificates/
sudo update-ca-certificates
You must be logged in to post a comment.
You must be logged in to post a comment.