Obtain SSL/TLS Certificates

You can obtain the SSL/TLS certificate in the following two ways:

  1. Self-signed certificate: It means using a certificate that is issued by yourself. However, self-signed certificates have many security risks and are only recommended for testing and verification environments.
  2. Apply or purchase a certificate: You can apply for a free certificate from Let’s EncryptObtain SSL/TLS Certificates - 图1 (opens new window) or cloud vendors such as Huawei Cloud and Tencent Cloud, or purchase a paid certificate from organizations such as DigiCertObtain SSL/TLS Certificates - 图2 (opens new window). For enterprise users, it is generally recommended to apply for paid OV or above certificates to obtain a higher level of security protection.

Create Self-Signed Certificate

Prerequisite

OpenSSLObtain SSL/TLS Certificates - 图3 (opens new window) is installed.

  1. Run the following command to generate a key pair. The command will prompt you to enter a password to protect the key, which will be required for generating, issuing, and verifying the certificate. Keep the key and password secure.

    1. openssl genrsa -des3 -out rootCA.key 2048
  2. Run the following command to generate a CA certificate using the private key from the key pair. The command will prompt you to set the certificate’s Distinguished Name (DN).

    1. openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 3650 -out rootCA.crt
  3. Use the CA certificate from step 2 to issue a server certificate, which is used to verify the identity of the server owner. The server certificate is usually issued to the hostname, server name, or domain name (such as www.emqx.comObtain SSL/TLS Certificates - 图4 (opens new window)). We need to use the CA key (rootCA.key), CA certificate (rootCA.crt), and server CSR (server.csr) to generate the server certificate.

    • Run the following command to generate a key pair for the server certificate:

      1. openssl genrsa -out server.key 2048
    • Run the following command to create a CSR using the server key pair. After the CSR is signed by the CA root certificate private key, a certificate public key file can be generated and issued to the user. This command will also prompt you to set the Distinguished Name (DN) for the certificate.

      1. openssl req -new -key server.key -out server.csr
    • The system will prompt the following information, with corresponding meanings explained as below:

      1. You are about to be asked to enter information that will be incorporated
      2. into your certificate request.
      3. What you are about to enter is what is called a Distinguished Name or a DN.
      4. There are quite a few fields but you can leave some blank
      5. For some fields there will be a default value,
      6. If you enter '.', the field will be left blank.
      7. -----
      8. Country Name (2 letter code) [AU]: # country/region
      9. State or Province Name (full name) [Some-State]: # state/province
      10. Locality Name (eg, city) []: # The city or locality
      11. Organization Name (eg, company) [Internet Widgits Pty Ltd]: # The full name of the organization (or company name), e.g. EMQ
      12. Organizational Unit Name (eg, section) []: # The name of the department or division within the organization,e.g. EMQX
      13. Common Name (e.g. server FQDN or YOUR name) []: # The fully-qualified domain name (FQDN) of the server that will use the certificate, e.g. mqtt.emqx.com
      14. ...
    • Generate the server certificate and specify the validity period of the certificate, which is set to 365 days in this case:

      1. openssl x509 -req -in server.csr -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out server.crt -days 365

    You now have a set of certificates.

    1. .
    2. ├── rootCA.crt
    3. ├── rootCA.key
    4. ├── rootCA.srl
    5. ├── server.crt
    6. ├── server.csr
    7. └── server.key