Reputation: 1
hi i have installed lamp stack in compute engine and now bought a ssl from comodo how do i generate a csr from compute engine? and how to install SSL for my VM instance
Upvotes: 0
Views: 188
Reputation: 81464
The only items that matters are what is the OS and web server that is running in your VM. I will assume Apache Linux. You will need shell access to your VM. I am assuming SSH access.
The CSR is the certificate signing request. This is a type of document that details what will be in your SSL certificate issued by Comodo, such as your name, location, etc. You can generate the CSR on any computer. I use OpenSSL to generate a CSR. Comodo documentation on how to generate a CSR:
CSR Generation: Using OpenSSL (Apache w/mod_ssl, NGINX, OS X)
Next you need to upload the CSR to Comodo. They will generate your certificate:
Comodo will generate your certificate. Depending on the type of certificate that your purchase, this will take one or two days. Don't forget the validation method that they require. In the document link this is DV (Domain Validation) which means you create a special record in your DNS server for your domain.
Next you will install your certificate. This is web server specific. Here is a link for Apache:
SSL Certificate Installation in Apache
Upvotes: 1