Certificate Signing Request is encrypted piece of code which is going to used for generating the SSL Certificate for your domain name.
CSR contains the information about Country, State, Location, Organisation Name, Common Name ie Domain Name , Email Address and Public Key.
Lets see how to extract the information from the CSR file?
surya@x ~/ » openssl req -in blog.suryaelite.com.csr -text -noout
surya@x ~/ » openssl req -in blog.suryaelite.com.csr -noout -verify
surya@x ~/
»
openssl req -in blog.suryaelite.com.csr -noout -subject
surya@x ~/ » openssl req -in blog.suryaelite.com.csr -noout -pubkey
This is how you can extract the various information from the CSR file.
If you are working with MySQL or MariaDB web server, sooner or later you will…
To edit the crontab entries you use crontab -e. The command will check for the…
Installation method for COMODO SSL Certificate If you have generated the CSR and purchased or…
In AWS S3, you might want to provide the access to selected users to selected…
It's possible you have earlier generated a ssh key without password/ passphrase. Later you found…
If you are working on Linux OS, finding files effectively always a tricky part. Like…