...
Obtain Certificate Files:
Acquire an SSL certificate (
.crt
file) and its corresponding private key (.key
file) for your DNS domain name from a trusted Certificate Authority (CA) or generate self-signed certificates for testing.
Info |
---|
If you only have a PFX or CER format certificate, please follow this guide. Once the necessary files are generated, you can proceed with the steps below. |
Copy Certificate Files to the Services VM:
Use WinSCP or the
scp
command to transfer the.crt
and.key
files to the services VM.Example Command:
scp -P 12222 -o StrictHostKeyChecking=no /path/to/your/cert.crt /path/to/your/key.key ubuntu@<services-OVA-IP>:/home/ubuntu
...