按照以下配置,我在server.xml文件中使用。

    <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
       maxThreads="150" scheme="https" secure="true"
       keystoreFile="/home/tomcat.keystore" keystorePass="password" clientAuth="false"
sslProtocol="TLS"  ciphers="SSL_RSA_WITH_RC4_128_SHA" />


如何解决这个问题..

最佳答案

I modified the ciphers from ciphers="SSL_RSA_WITH_RC4_128_SHA"  to    ciphers="TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256,
         TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
         TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384,
         TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
         TLS_ECDHE_RSA_WITH_RC4_128_SHA,
         TLS_RSA_WITH_AES_128_CBC_SHA256,
         TLS_RSA_WITH_AES_128_CBC_SHA,
         TLS_RSA_WITH_AES_256_CBC_SHA256,
         TLS_RSA_WITH_AES_256_CBC_SHA,
         SSL_RSA_WITH_RC4_128_SHA"                    and it worked for me .

07-25 22:53