Generating a Certificate Signing Request (CSR): Difference between revisions
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
# Open up your servers SSH terminal. For information on how to access your account via SSH, please click [http://wiki.bravenet.com/SSH here]. | # Open up your servers SSH terminal. For information on how to access your account via SSH, please click [http://wiki.bravenet.com/SSH here]. | ||
# Once you have a terminal window/prompt open; please type in the following command: | # Once you have a terminal window/prompt open; please type in the following command: | ||
<code> | <code> | ||
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr | openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr | ||
</code> | </code> | ||
<code style="background: #cce6ff;"> | <code style="background: #cce6ff;"> | ||
Replace yourdomain with the domain name you're securing. For example, if your domain name is myawesomesite.com, you would type myawesomesite.key and myawesomesite.csr. | Replace yourdomain with the domain name you're securing. For example, if your domain name is myawesomesite.com, you would type myawesomesite.key and myawesomesite.csr. | ||
</code> | </code> | ||
#Enter the requested information: | #Enter the requested information: | ||
# Common Name: The fully-qualified domain name, or URL, you're securing. | # Common Name: The fully-qualified domain name, or URL, you're securing. <br> If you are requesting a Wildcard certificate, add an asterisk (*) to the left of the common name where you want the wildcard, for example *.coolexample.com. | ||
If you are requesting a Wildcard certificate, add an asterisk (*) to the left of the common name where you want the wildcard, for example *.coolexample.com. | # Organization: The legally-registered name for your business. If you are enrolling as an individual, enter the certificate requestor's name. | ||
# Organization: The legally-registered name for your business. If you are enrolling as an individual, enter the certificate requestor's name. | # Organization Unit: If applicable, enter the DBA (doing business as) name. | ||
# Organization Unit: If applicable, enter the DBA (doing business as) name. | # City or Locality: Name of the city where your organization is registered/located. Do not abbreviate. | ||
# City or Locality: Name of the city where your organization is registered/located. Do not abbreviate. | # State or Province: Name of the state or province where your organization is located. Do not abbreviate. | ||
# State or Province: Name of the state or province where your organization is located. Do not abbreviate. | # Country: The two-letter International Organization for Standardization (ISO) format country code for where your organization is legally registered. | ||
# Country: The two-letter International Organization for Standardization (ISO) format country code for where your organization is legally registered. | |||
[[Category:SSL]] | [[Category:SSL]] | ||
[[Category:Websites]] | [[Category:Websites]] |
Revision as of 09:05, 11 July 2017
Please follow these instructions to generate a certificate signing request (CSR) for your domain within Bravenet.
- Open up your servers SSH terminal. For information on how to access your account via SSH, please click here.
- Once you have a terminal window/prompt open; please type in the following command:
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr
Replace yourdomain with the domain name you're securing. For example, if your domain name is myawesomesite.com, you would type myawesomesite.key and myawesomesite.csr.
- Enter the requested information:
# Common Name: The fully-qualified domain name, or URL, you're securing.
If you are requesting a Wildcard certificate, add an asterisk (*) to the left of the common name where you want the wildcard, for example *.coolexample.com. # Organization: The legally-registered name for your business. If you are enrolling as an individual, enter the certificate requestor's name. # Organization Unit: If applicable, enter the DBA (doing business as) name. # City or Locality: Name of the city where your organization is registered/located. Do not abbreviate. # State or Province: Name of the state or province where your organization is located. Do not abbreviate. # Country: The two-letter International Organization for Standardization (ISO) format country code for where your organization is legally registered.