2
I followed the tutorial on the site Tomcat who basically tells you to do two things:
Create a . Keystore with password changeit through Keytool.exe. I saved the resultate file in C: Users Vinicius
Uncomment and modify the connector xml server. located in C: Program Files Apache Software Foundation Tomcat 8.0 conf
And it stayed like this:
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="200" SSLEnabled="true" scheme="https" secure="true" keystoreFile="C:\Users\Vinicius\.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="TLS" />
After that, in theory, just access my page by https://localhost:8443/
but I get the bug:
Connection to localhost has been refused.
I did something wrong?
See the error in Catalina.out and post here
– Joao Alberto