Bangla Phone Secure CA
Login
Register
বাংলা
English
Call for Pricing
Home
Certificate
SSL
Digital Certificate
Solutions
PKI Token
Signing Tool
Repository
CCA Certificate
CA Certificate
Search Certificate
CRL
Acts & Policy
CA License
Support
FAQ
Root Certificate Installer
SSL Support
Digital Certificate Help
Token Manager
Token Driver
About Us
Contact Us
News
CSR Creation using OpenSSL for Apache
Login to your server via your terminal client. At the prompt, type:
openssl req -new -newkey rsa:2048 -nodes -keyout servername.key -out servername.csr
where 'servername' is the name of your server.
This begins the process of generating two files using apache openssl
Private-Key file
Certificate Signing Request (CSR) file (used to apply for your SSL Certificate)
When you are prompted for the Common Name (domain name), enter the fully qualified domain name for the site you are securing i.e.
www.test.com
If you are generating a CSR for a Wildcard SSL Certificate your common name should start with an asterisk (such as
*.test.com
).
You will then be prompted for your organizational information, beginning with geographic information.
The following fields should match with those you provided during registration
Organization Name (O)
Organization Unit/Department (OU)
Locality/District (L)
Country (C)
This will then create your CSR file required for SSL certificate request
Save (backup) the generated
.key
file as it will be required later for Certificate installation.