Skip to main content
Skip table of contents

How to Generate a CSR for AWS Services

For Amazon Web Services, we recommend generating your CSR via OpenSSL, which is a widely used software for SSL services.

1. Log In

Log in to your server’s terminal via Secure Shell (SSH).

2. Run CSR Generation Command

Generate a private key and CSR by running the following command:

Here is the plain text version to copy and paste into your terminal:

CODE
openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr

Replace “server” with the domain name you intend to secure.

3. Enter Your Information

Enter the following CSR details when prompted:

  1. Common Name: The FQDN (fully-qualified domain name) you want to secure with the certificate such as www.domain.com, secure.website.org, *.domain.net, etc.

  2. Organization: The full legal name of your organization including the corporate identifier.

  3. Organization Unit (OU): Your department such as ‘Information Technology’ or ‘Website Security.’

  4. City or Locality: The locality or city where your organization is legally incorporated. Do not abbreviate.

  5. State or Province: The state or province where your organization is legally incorporated. Do not abbreviate.

  6. Country: The official two-letter country code (i.e. US, CH) where your organization is legally incorporated.

You are not required to enter a password or passphrase. This optional field is for applying additional security to your key pair.

4. Copy the CSR Text from the File

Locate and open the newly created CSR in a text editor such as Notepad and copy all the text including:

CODE
-----BEGIN CERTIFICATE REQUEST-----
And
-----END CERTIFICATE REQUEST-----

Your CSR should be saved in the same user directory that you SSH into unless otherwise specified by you.

We recommend saving or backing up your newly generate “.key” file as this will be required later during the installation process.


5. Upload Your CSR

After you have received your CSR, return to your 101domain account and upload your CSR or paste in your CSR code.

Reference Amazon's Documentation 

Because Amazon Web Services involves a variety of web hosting services, we recommend consulting Amazon’s documentation to fully understand generating/uploading/configuring SSL on their various platforms. Because every AWS user takes advantage of different services and configurations, there will be no one-size-fits-all solution.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.