If you obtained a certificate and its private key in PEM or another format, you must convert it to PKCS#12 (PFX) format before you can import the certificate into a Windows certificate store on a Horizon 8 server. PKCS#12 (PFX) format is required if you use the Certificate Import wizard in the Windows certificate store.
You might obtain certificate files in one of these ways:
- You obtain a certificate keystore file from a CA.
- You download a certificate and its private key from an intermediate server that is set up in your Horizon 8 deployment.
- Your organization provides you with certificate files.
Certificate files come in various formats. For example, PEM format is often used in a Linux environment. Your files might have a certificate file, key file, and CSR file with the following extensions:
server.crt
server.csr
server.key
The CRT file contains the SSL certificate that was returned by the CA. The CSR file is the original certificate signing request file and is not needed. The KEY file contains the private key.
Prerequisites
- Verify that OpenSSL is installed on the system. Windows users can download pre-compiled OpenSSL binaries from a trusted source such as Shining Light Productions. For more information, visit http://www.openssl.org.
- Verify that the root certificate of the SSL certificate that was returned by the CA is also available on the system.
Procedure
-
Open a Windows command prompt and navigate to the directory where your CRT, KEY, and root certificate files are located.
For example:
cd c:\OpenSSL-Win32\binNote: You do not need to copy your certificate files to the OpenSSL installation directory. You can run OpenSSL commands from any directory by specifying the full path to OpenSSL (for example,
"C:\Program Files\OpenSSL-Win64\bin\openssl.exe") or by adding the OpenSSL bin directory to your system PATH. -
Generate a PKCS#12 (PFX) keystore file from the certificate file and your private key.
For example:
openssl pkcs12 -export -out server.p12 -inkey server.key -in server.crt -certfile CACert.crtIn this example,
CACert.crtis the name of the root certificate that was returned by the certificate authority.Note (OpenSSL 3.x users): OpenSSL 3.x uses updated default encryption algorithms that may not be compatible with older systems or some certificate import tools. If you encounter import errors, add the
-legacyflag:openssl pkcs12 -export -legacy -out server.p12 -inkey server.key -in server.crt -certfile CACert.crtThe Windows certificate store also accepts a keystore that is generated with a PFX extension. For example:
-out server.pfx -
Type an export password to protect the PKCS#12 (PFX) file.
Was this page helpful?