【发布时间】:2015-12-05 16:02:19
【问题描述】:
我有一个在 Amazon AMI 上运行的 tomcat 安全 serlet,我已经在 prt 8443 上使用 TLS 协议并使用 .jks 密钥库设置了一个安全连接器:
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
compression="off"
keystoreFile="\cert\localhost.jks" keystorePass="password"
/>
当我尝试从 Internet 访问 url 时,我收到“ERR_SSL_WEAK_SERVER_EPHEMERAL_DH_KEY”错误。
我在更新 Chrome 45 后开始遇到此错误。现在我使用的是 45.0.2454.85 m Chrome 版本。
有人可以帮我解决这个错误吗?
【问题讨论】:
标签: google-chrome browser tomcat7