HADOOP-11218. Add TLSv1.1,TLSv1.2 to KMS, HttpFS, SSLFactory. Contributed by Vijay Singh.
This commit is contained in:
parent
f504d95e87
commit
64add87f5c
|
@ -810,6 +810,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HADOOP-11901. BytesWritable fails to support 2G chunks due to integer
|
HADOOP-11901. BytesWritable fails to support 2G chunks due to integer
|
||||||
overflow. (Reynold Xin via wheat9)
|
overflow. (Reynold Xin via wheat9)
|
||||||
|
|
||||||
|
HADOOP-11218. Add TLSv1.1,TLSv1.2 to KMS, HttpFS, SSLFactory.
|
||||||
|
(Vijay Singh via wheat9)
|
||||||
|
|
||||||
Release 2.7.3 - UNRELEASED
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
described in the APR documentation -->
|
described in the APR documentation -->
|
||||||
<Connector port="${kms.http.port}" protocol="HTTP/1.1" SSLEnabled="true"
|
<Connector port="${kms.http.port}" protocol="HTTP/1.1" SSLEnabled="true"
|
||||||
maxThreads="${kms.max.threads}" scheme="https" secure="true"
|
maxThreads="${kms.max.threads}" scheme="https" secure="true"
|
||||||
clientAuth="false" sslEnabledProtocols="TLSv1,SSLv2Hello"
|
clientAuth="false" sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2,SSLv2Hello"
|
||||||
truststorePass="_kms_ssl_truststore_pass_"
|
truststorePass="_kms_ssl_truststore_pass_"
|
||||||
keystoreFile="${kms.ssl.keystore.file}"
|
keystoreFile="${kms.ssl.keystore.file}"
|
||||||
keystorePass="_kms_ssl_keystore_pass_"/>
|
keystorePass="_kms_ssl_keystore_pass_"/>
|
||||||
|
|
|
@ -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" sslEnabledProtocols="TLSv1,SSLv2Hello"
|
clientAuth="false" sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2,SSLv2Hello"
|
||||||
keystoreFile="${httpfs.ssl.keystore.file}"
|
keystoreFile="${httpfs.ssl.keystore.file}"
|
||||||
keystorePass="${httpfs.ssl.keystore.pass}"/>
|
keystorePass="${httpfs.ssl.keystore.pass}"/>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue