HADOOP-11217. Disable SSLv3 in KMS. (Robert Kanter via kasha)

(cherry picked from commit 1a78082338)
This commit is contained in:
Karthik Kambatla 2014-10-28 17:18:24 -07:00
parent bbdd990864
commit 0aec884704
2 changed files with 3 additions and 1 deletions

View File

@ -669,6 +669,8 @@ Release 2.6.0 - UNRELEASED
HADOOP-11170. ZKDelegationTokenSecretManager fails to renewToken created by
a peer. (Arun Suresh and Gregory Chanan via kasha)
HADOOP-11217. Disable SSLv3 in KMS. (Robert Kanter via kasha)
Release 2.5.1 - 2014-09-05
INCOMPATIBLE CHANGES

View File

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