https://bz.apache.org/bugzilla/show_bug.cgi?id=59940

Shaun Morton <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #2 from Shaun Morton <[email protected]> ---
I was able to resolve the problem.  Need to use the attribute
"truststorePassword" instead of the attribute "truststorePass" listed on the
following help page:
https://tomcat.apache.org/tomcat-8.5-doc/config/http.html#SSL_Support_-_SSLHostConfig




Working Server.xml file:

    <Connector port="8443"
protocol="org.apache.coyote.http11.Http11NioProtocol"
           SSLEnabled="true"
               maxThreads="150" 
           scheme="https" 
           secure="true"
           maxKeepAliveRequests="15"
           connectionTimeout="60000"
           acceptCount="100"
           connectionUploadTimeout="300000"
           compression="force"
           enableLookups="true"
           disableUploadTimeout="false" >
        <SSLHostConfig
           truststoreFile="?:\?\?.jks"
           truststorePassword="*******"
           certificateVerification="required"
           protocols="+TLSv1,+TLSv1.1,+TLSv1.2" >
            <Certificate certificateKeystoreFile="?:\?\?.jks"
             certificateKeystorePassword="*******"
              certificateKeyAlias="1"
                         type="RSA" />
        </SSLHostConfig>
    </Connector>

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to