certificates:create_a_ca_certificate_authority
This is an old revision of the document!
Certificates - Create a CA (Certificate Authority)
openssl genrsa -out myProxykey.key 2048
This will create an rsa key file named myProxykey.key that we use to sign our rootCA with in the next command for generating the pem file for the rootCA.
Create a pem file signed with the key:
openssl req -x509 -new -nodes -key myProxykey.key -sha256 -days 365 -out myProxyca.pem
This will prompt you to answer some questions to generate the needed pem file:
Country Name (2 letter code) [AU]:**JE** State or Province Name (full name) [Some-State]:**Jersey** Locality Name (eg, city) []:**St. Helier** Organization Name (eg, company) [Internet Widgits Pty Ltd]:**ShareWiz** Organizational Unit Name (eg, section) []:**IT** Common Name (e.g. server FQDN or YOUR name) []:**sharewiz.net** Email Address []:
At this point you should have 2 files:
myProxyca.pem myProxykey.key
The myProxyca.pem file is the public key.
The myProxykey.key is the private key; which you do NOT want to share.
certificates/create_a_ca_certificate_authority.1586182581.txt.gz · Last modified: 2020/07/15 09:30 (external edit)