HDFS-7274. Disable SSLv3 in HttpFS. (Robert Kanter via kasha)

This commit is contained in:
Karthik Kambatla 2014-10-28 17:21:20 -07:00
parent 1a78082338
commit 3f48493bed
2 changed files with 3 additions and 1 deletions

View File

@ -70,7 +70,7 @@
described in the APR documentation --> described in the APR documentation -->
<Connector port="${httpfs.http.port}" protocol="HTTP/1.1" SSLEnabled="true" <Connector port="${httpfs.http.port}" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true" maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" clientAuth="false" sslEnabledProtocols="TLSv1"
keystoreFile="${httpfs.ssl.keystore.file}" keystoreFile="${httpfs.ssl.keystore.file}"
keystorePass="${httpfs.ssl.keystore.pass}"/> keystorePass="${httpfs.ssl.keystore.pass}"/>

View File

@ -1310,6 +1310,8 @@ Release 2.6.0 - UNRELEASED
HDFS-7291. Persist in-memory replicas with appropriate unbuffered copy API HDFS-7291. Persist in-memory replicas with appropriate unbuffered copy API
on POSIX and Windows. (Xiaoyu Yao via cnauroth) on POSIX and Windows. (Xiaoyu Yao via cnauroth)
HDFS-7274. Disable SSLv3 in HttpFS. (Robert Kanter via kasha)
Release 2.5.1 - 2014-09-05 Release 2.5.1 - 2014-09-05
INCOMPATIBLE CHANGES INCOMPATIBLE CHANGES