On 10/19/2017 6:30 AM, Younge, Kent A - Norman, OK - Contractor wrote:
> Built a clean Solr server imported my certificates and when I go to the 
> SSL/HTTPS page it tells me that I have ERR_SSL_VERSION_OR_CIPHER_MISMATCH in 
> Chrome and in IE tells me that I need to TURN ON TLS 1.0, TLS 1.1, and TLS 
> 1.2.

What java version?  What Java vendor?  What operating system?  The OS
won't have a lot of impact on HTTPS, I just ask in case other
information is desired, so we can tailor the information requests.

I see other messages where you mention Solr 6.6, which requires Java 8.

As Hoss mentioned to you in another thread, *all* of the SSL capability
is provided by Java.  The Jetty that ships with Solr includes a config
for HTTPS.  The included Jetty config *excludes* a handful of
low-quality ciphers that your browser probably already refuses to use,
but that's the only cipher-specific configuration.  If you haven't
changed the Jetty config in the Solr download, then Jetty defaults and
your local Java settings will control everything else.  As far as I am
aware, Solr doesn't influence the SSL config at all.

  <Set name="ExcludeCipherSuites">
    <Array type="String">
      <Item>SSL_RSA_WITH_DES_CBC_SHA</Item>
      <Item>SSL_DHE_RSA_WITH_DES_CBC_SHA</Item>
      <Item>SSL_DHE_DSS_WITH_DES_CBC_SHA</Item>
      <Item>SSL_RSA_EXPORT_WITH_RC4_40_MD5</Item>
      <Item>SSL_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
      <Item>SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
      <Item>SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA</Item>
    </Array>
  </Set>

It is extremely unlikely that Solr itself is causing these problems.  It
is more likely that there's something about your environment (java
version, custom java config, custom Jetty config, browser customization,
or maybe something else) that is resulting in a protocol and cipher list
that your browser doesn't like.

Thanks,
Shawn

Reply via email to