Создать сертификат pem linux

How to create a .pem file for SSL Certificate Installations

This document (7013103) is provided subject to the disclaimer at the end of this document.

Environment

Situation

Resolution

Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations when multiple certificates that form a complete chain are being imported as a single file. They are a defined standard in RFCs 1421 through 1424. They can be thought of as a layered container of chained certificates. A .pem file is a container format that may just include the public certificate or the entire certificate chain (private key, public key, root certificates):

  • Private Key
  • Server Certificate (crt, puplic key)
  • (optional) Intermediate CA and/or bundles if signed by a 3rd party

How to create a self-signed PEM file

openssl req -newkey rsa:2048 -new -nodes -x509 -days 3650 -keyout key.pem -out cert.pem

How to create a PEM file from existing certificate files that form a chain

openssl rsa -in server.key -out nopassword.key
cat nopassword.key > server.pem cat server.crt >> server.pem
cat intermediate.crt >> server.pem

Additional Information

Оцените статью
Adblock
detector