Full Chain PFX File Creation Guide
Offers a guide for creating PFX files, which are used for secure communications within the platform.
1. CSR (Certificate Signing Request)
First, you need to create a CSR file. You can use OpenSSL for this process. The following command creates the CSR and private key using a 2048-bit RSA key:
Linux Bash Code
Windows CMD Code
OpenSSLInstall (For example, Win64 OpenSSL).
Open Command Prompt and run the following command:
Cmd Code
After running the command, you will be asked to enter your certificate information as follows:
PlainText
Once these steps are completed, `privatekey.keyA private key file named ` and `myrequest.csrA CSR file named ` will be created.
2. Submitting the CSR File to the GlobalSign Certificate Authority (CA)
Send the CSR file you created to GlobalSign. GlobalSign will provide you with a certificate using your CSR file. After completing the GlobalSign checking processes, it will provide you with the necessary certificates.
3. Get Certificates
GlobalSign will provide you with the following files:
Your own certificate (example.com.crt)
Intermediate certificates (intermediate1.crt, intermediate2.crt)
Root certificate (root.crt)
4. Merge Certificates
You need to combine all certificates into a single file. This can be done using the `cat` command:
Linux Bash Code
This command returns all certificates to `fullchain.crt Combines into a file named `.
Windows
Open Notepad and follow these steps:
example.com.crt copy and paste its contents.
intermediate1.crt, intermediate2.crt ve root.crt copy and paste its contents sequentially.
Combine all content fullchain.crt Save as.
Alternatively, WindowsPowerShell You can combine files using:
Powershell
5. Creating the PFX File
Using OpenSSL, create the PFX file using the private key and the merged certificate file:
Linux Bash Code
Windows
Open Command Prompt and run the following command:
Cmd
This command is `fullchain.pfx Creates a PFX file named `. You will be asked to enter a password when creating the PFX file. This password is used to secure the PFX file.
6. Verifying the PFX File
You can use the following command to verify that the PFX file you created was created correctly:
Linux Bash Code
Windows Cmd Code
Open Command Prompt and run the following command:
Cmd
This command displays the contents and information of the PFX file.
Last updated