How to manually create a certificate request

If you want to bypass all automated means for more control, you can create a key and certificate request using the following commands:

/usr/bin/openssl genrsa 1024 > private.key
/usr/bin/openssl req -new -key private.key

where you can replace 1024 with 2048 if you want a stronger key. The genrsa will ask you all information for the certificate.

Once created, you give the certificate request to a certificate authority. They'll give you a new certificate, which you'd use with your private.key to make the pair.

 
config/certificate_request.txt · Last modified: 2010/02/22 07:10 by muscardin
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki