This question is in reference to Atlassian Documentation: Running Confluence Over SSL or HTTPS
The keytool program does not generate a private or public key for me. different attempts of "-genkeypair" and "-genkey" did not product a public key or private key.
The private key is needed to create the .p12 file.
This is a large headache for me as I'm not that familiar with creating keystores or configuring ssl certificates.
Many sites repeat the same information stating that the "keytool -genken" command creates the keypair. When the file was inspected, there was no key to be found. Only the information related to the "self signed certificate" (MyDomain, MyCompany, etc).
If ten people tell me I'm crazy. I must be crazy, but "how" can I be crazy?
The solution was to use the openssl command to create the key and csr at the same time.
openssl req -new -newkey rsa:2048 -nodes -out <MyDomain.csr> -keyout <MyDomain.key> -subj "/C=<MyTwoLetterCountryCode>/ST=<MyState>/L=<MyCity>/O=<MyOrganization>/OU=<MyDepartment>/CN=<MyDomain>"
Taken from this handy site:
https://www.digicert.com/easy-csr/openssl.htm
I don't understand why keytool doesn't create the key and openssl does create the key, but this does work for me.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.