I have installed a new .p12 cert. I created it with the following commands:
1. openssl pkcs7 -in ./mydomain.com.p7b -print_certs -out fullchain.pem
2. sudo openssl pkcs12 -export -in fullchain.pem -inkey /home/debian/ssl/mydomain_key.txt -out mydomain.p12 -passin pass:mypassword -passout pass:mypassword -name mydomain
In my bin/solr.in.sh file I have it pointing do the newly create cert file
SOLR_SSL_ENABLED=true
SOLR_SSL_KEY_STORE=/home/debian/ssl/mydomain.p12
SOLR_SSL_KEY_STORE_PASSWORD=mypassword
SOLR_SSL_TRUST_STORE=/home/debian/ssl/mydomain.p12
SOLR_SSL_TRUST_STORE_PASSWORD=mypassword
Then i restart solr and i cannot access it, it is not running, and I don't see any specific ssl errors in the logs.
if disable SSL above it will run fine.
I tried to install my cert and I excepct apache solr to come up via https