I am trying to configure Tomcat to accept HTTPS requests. The problem is that when I start Tomcat, I have the following exception:
SEVERE: Failed to load JKS keystore type using webapps path /FT.keystore due to signed overflow, bytes = 128
I already created keystore FT.keystore and put it in the webapps / directory.
Here is the configuration I use for the HTTPS connector (Xxx just to keep information private)
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" keystoreFile="webapps/xxx.keystore" keystorePass="xxxx" clientAuth="false" sslProtocol="TLS" />
Can someone help me solve this problem? I used keytool ($ JAVA_HOME / bin) to generate my keystore and RSA algorithm. Many thanks.
taktako
source share