javax.net.ssl.SSLPeerUnverifiedException:使用JMeter进行负载测试时,对等方未通过身份验证 [英] javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated when load testing with JMeter

查看:132
本文介绍了javax.net.ssl.SSLPeerUnverifiedException:使用JMeter进行负载测试时,对等方未通过身份验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因此,我安装了JMeter来测试启用了SSL的网站(我从Geotrust获得了真正的证书,而不是自签名证书),而我尝试直接从中测试SSL连接时遇到了问题雄猫.我得到:

So I have JMeter setup to test my SSL-enabled site (I've got a real certificate from Geotrust, not a self-signed cert) and I've been running into problems when I try testing an SSL connection directly from Tomcat. I get:

javax.net.ssl.SSLPeerUnverifiedException: peer not authenticated
    at com.sun.net.ssl.internal.ssl.SSLSessionImpl.getPeerCertificates(SSLSessionImpl.java:352)
    at org.apache.http.conn.ssl.AbstractVerifier.verify(AbstractVerifier.java:128)
    at org.apache.http.conn.ssl.SSLSocketFactory.connectSocket(SSLSocketFactory.java:397)
    at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:148)
    at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:150)
    at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:121)
    at org.apache.http.impl.client.DefaultRequestDirector.tryConnect(DefaultRequestDirector.java:575)
    at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:425)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:820)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:754)
    at org.apache.jmeter.protocol.http.sampler.HTTPHC4Impl.sample(HTTPHC4Impl.java:277)
    at org.apache.jmeter.protocol.http.sampler.HTTPSamplerProxy.sample(HTTPSamplerProxy.java:62)
    at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1060)
    at org.apache.jmeter.protocol.http.sampler.HTTPSamplerBase.sample(HTTPSamplerBase.java:1049)
    at org.apache.jmeter.threads.JMeterThread.process_sampler(JMeterThread.java:442)
    at org.apache.jmeter.threads.JMeterThread.run(JMeterThread.java:271)
    at java.lang.Thread.run(Thread.java:680)

每当我尝试连接时.这是将JMeter 2.7与HttpClient4实现一起使用.这是对Tomcat 7上托管的我的一项服务的简单GET请求(感兴趣的人为7.0.27).

whenever I try to connect. This is using JMeter 2.7 with the HttpClient4 implementation. It is a simple GET request to one of my services hosted on Tomcat 7 (7.0.27 for anyone interested).

这是SSL连接器的Tomcat配置.请注意,我已经安装了APR/native,它正在EC2上的Ubuntu 12.04服务器上运行.

Here is my Tomcat config for my SSL connector. Note that I have APR/native installed and this is running on an Ubuntu 12.04 server up on EC2.

<Connector port="8443" maxHttpHeaderSize="8192"
           protocol="HTTP/1.1" 
           URIEncoding="UTF-8" 
           acceptorThreadCount="5"
           maxThreads="400" 
           scheme="https"
           secure="true"
           SSLEnabled="true"
           SSLCipherSuite="ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH"
           SSLHonorCipherOrder="true"
           SSLVerifyClient="optional"
           SSLCertificateFile="/etc/tomcat7/ssl/star.example.com.crt"
           SSLCertificateKeyFile="/etc/tomcat7/ssl/star.example.com.key"
           SSLCertificateChainFile="/etc/tomcat7/ssl/geotrust.crt" />

同样,这只是JMeter的问题.我可以使用任何浏览器访问该站点,而不会出现问题,如果我将Apache放在Tomcat前面并使用mod_proxy或mod_jk,则不会有问题.任何帮助将不胜感激.

Again this is just a problem with JMeter. I can hit the site without issue using any browsers, and if I stick Apache in front of Tomcat and use either mod_proxy or mod_jk, I have no issues. Any help would be appreciated.

推荐答案

在您发表最后评论后,我设法重现了证书与您的主机不匹配以及证书与您的主机不匹配的问题.

After your last comment, I managed to reproduce issue with certificate not matching your host AND with the one matching your host.

似乎您正面临Java 6中的错误. 确实,我重现了JDK6的问题,但没有重现JMeter 2.7的JDK7.

It seems you are facing a bug in Java 6. Indeed I reproduce issue with JDK6 but not in JDK7 with JMeter 2.7.

要记录此内容,我在这里打开了一个错误:

To record this I opened bug here:

在这里,Oleg给了我有关JDK7的提示:

And here and Oleg gave me the hint about JDK7 :

进一步分析您的配置,它可能来自您的自定义tomcat7配置:

Analysing further your configuration it might be coming from your custom tomcat7 config:

SSLCipherSuite="ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH"
SSLHonorCipherOrder="true"

也许您可以尝试进行更改,但是无论如何它都可以与JDK7一起使用,因此您可以找到解决方案.

Maybe you could try a change, but anyway it works with JDK7 so you have your solution.

非常感谢提出这个可公开访问的URL来测试问题.

Thanks very much for proposing this publicly available URL to test issue.

谢谢

这篇关于javax.net.ssl.SSLPeerUnverifiedException:使用JMeter进行负载测试时,对等方未通过身份验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆