Hello,
I try to configure my tomcat 9.0.37 installed on a windows server 2016 to
use a certificate located in *cert:LocalMachine\My*
I mention that I am an administrator of this machine.
This certificate is also used by IIS.
What I did was to configure my server.xml file like this :
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
keyAlias="myserver.domain.com"
keystoreFile=""
keystorePass=""
keystoreType="Windows-My"
clientAuth="false" sslProtocol="TLS" />
The error I got in tomcat logs was that the keyAlias doesn't exist but I
used the CN mentioned in the description of my certificate.
Is it possible for tomcat to use the windows certificate store ?
The only link I found about this was :
https://bz.apache.org/bugzilla/show_bug.cgi?id=56021
Thanks for your help
Valentin.M