TomCat problem and port 8443 does not activate https only loads the error page

0

I have a problem with the apache tomcat8 server, it does not lift port 8443 or another one that I choose, I have installed apache in port 80 and tomcat in 8080 apache if it raises well the ssl certificate in port 443 but tomcat does not raise on port 8443, I have installed the local certificates and still get this error:

Failed secure connection

The connection to localhost: 8443 was interrupted while the page was loading.

La página que está intentando ver no se puede mostrar porque la autenticidad de los datos recibidos no ha podido ser verificada.
Contacte con los propietarios del sitio web para informarles de este problema.

My connector is set up like this:

<Connector 
        protocol="org.apache.coyote.http11.Http11NioProtocol"
        port="8443"
        MaxThreads="200"
        maxHttpHeaderSize="8192"
        enableLookups="false" 
        disableUploadTimeout="true"
        SSLEngine="on"
        SSLEnabled="true" 
        SSLProtocol="TLSv1.1+TLSv1.2"
        acceptCount="100"   
        scheme="https" 
        secure="true" 
        minSpareThreads="25" 
        maxSpareThreads="75"
        keystoreFile="C:\Program Files (x86)\Java\jre1.8.0_181\bin\keystore.jks" keystorePass="mi clave"
        clientAuth="false"
        redirectPort="8443" /> 

Other times I get this error: Failed secure connection

  

An error occurred connecting to localhost: 8080. SSL has received   a record that exceeded the maximum allowed length. Error code:   SSL_ERROR_RX_RECORD_TOO_LONG

La página que está intentando ver no se puede mostrar porque la autenticidad de los datos recibidos no ha podido ser verificada.
Contacte con los propietarios del sitio web para informarles de este problema.

I reviewed many configuration options in the connector and I can not get the secure port of tomcat up, thanks for your help

    
asked by Henry Alexander Campos Hernand 11.09.2018 в 19:04
source

0 answers