After the download, complete the installation of the JDK.
The Tomcat service needs to know where to find the Java Virtual Machine (JVM). We’ll update the registry to point to the correct JDK path.
JVM string to point to the jvm.dll from the latest installed JDK folder path.Replace it with the following configuration:
<Connector port="8443"
protocol="org.apache.coyote.http11.Http11NioProtocol"
SSLEnabled="true"
maxThreads="150"
scheme="https"
secure="true"
keyAlias="Paste the friendly name here"
keystoreFile=""
keystorePass=""
keystoreType="Windows-MY-LOCALMACHINE"
keystoreProvider="SunMSCAPI"
clientAuth="false"
sslProtocol="TLS"
sslImplementationName="org.apache.tomcat.util.net.jsse.JSSEImplementation"
keepAliveTimeout="200000"/>