我有一个最新的运行Apache 2.2.22-1ubuntu1.4 Ubuntu 12.04服务器。
对于每个HTTPS请求,我的Apache日志都会logging与encryption连接有关的错误消息。
自签名证书是根据来自Ubuntu 12.04的指令生成的»Ubuntu服务器指南»安全»证书
Qualys SSL Labs显示服务器configuration(自签证书除外)没有问题。
Apacheconfiguration的相关部分是:
<VirtualHost *:443> ServerName site.domain.net:443 ...snip... SSLEngine on SSLCertificateFile /etc/apache2/ssl/apache.crt SSLCertificateKeyFile /etc/apache2/ssl/apache.key SSLProtocol all -SSLv2 -SSLv3 SSLHonorCipherOrder on SSLCompression off </VirtualHost>
错误日志显示与此类似的条目:
[Wed Feb 19 10:47:01 2014] [info] [client xx.xx.61.4] Connection to child 2 established (server site.domain.net:443) [Wed Feb 19 10:47:01 2014] [info] Seeding PRNG with 656 bytes of entropy [Wed Feb 19 10:47:01 2014] [info] [client xx.xx.61.4] (70014)End of file found: SSL handshake interrupted by system [Hint: Stop button pressed in browser?!] [Wed Feb 19 10:47:01 2014] [info] [client xx.xx.61.4] Connection closed to child 2 with abortive shutdown (server site.domain.net:443)
浏览器没有按日志暗示的停止button。
为什么我得到这些错误,他们是什么意思,如何阻止他们?