HDFS-7274. Disable SSLv3 in HttpFS. (Robert Kanter via kasha)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/3f48493b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/3f48493b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/3f48493b Branch: refs/heads/trunk Commit: 3f48493bed22f9618a9330deaaaa070734989814 Parents: 1a78082 Author: Karthik Kambatla <[email protected]> Authored: Tue Oct 28 17:21:20 2014 -0700 Committer: Karthik Kambatla <[email protected]> Committed: Tue Oct 28 17:21:20 2014 -0700 ---------------------------------------------------------------------- .../hadoop-hdfs-httpfs/src/main/tomcat/ssl-server.xml | 2 +- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/3f48493b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ssl-server.xml ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ssl-server.xml b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ssl-server.xml index eac6ee2..614b702 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ssl-server.xml +++ b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/tomcat/ssl-server.xml @@ -70,7 +70,7 @@ described in the APR documentation --> <Connector port="${httpfs.http.port}" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" - clientAuth="false" sslProtocol="TLS" + clientAuth="false" sslEnabledProtocols="TLSv1" keystoreFile="${httpfs.ssl.keystore.file}" keystorePass="${httpfs.ssl.keystore.pass}"/> http://git-wip-us.apache.org/repos/asf/hadoop/blob/3f48493b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 0eb7a14..cae2b02 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -1310,6 +1310,8 @@ Release 2.6.0 - UNRELEASED HDFS-7291. Persist in-memory replicas with appropriate unbuffered copy API 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 INCOMPATIBLE CHANGES
