Skip to content

Commit

Permalink
HADOOP-16549. Remove Unsupported SSL/TLS Versions from Docs/Propertie…
Browse files Browse the repository at this point in the history
…s. Contributed by Daisuke Kobayashi.

Signed-off-by: Wei-Chiu Chuang <weichiu@apache.org>
Reviewed-by: Akira Ajisaka <aajisaka@apache.org>
  • Loading branch information
Daisuke Kobayashi authored and jojochuang committed Sep 10, 2019
1 parent 650c4ce commit bc2d3a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -72,7 +72,7 @@ public enum Mode { CLIENT, SERVER }
public static final String SSL_ENABLED_PROTOCOLS_KEY =
"hadoop.ssl.enabled.protocols";
public static final String SSL_ENABLED_PROTOCOLS_DEFAULT =
"TLSv1.1,TLSv1.2";
"TLSv1.2";

public static final String SSL_SERVER_NEED_CLIENT_AUTH =
"ssl.server.need.client.auth";
Expand Down
Expand Up @@ -2703,9 +2703,9 @@

<property>
<name>hadoop.ssl.enabled.protocols</name>
<value>TLSv1.1,TLSv1.2</value>
<value>TLSv1.2</value>
<description>
The supported SSL protocols. The parameter will only used from
The supported SSL protocols. The parameter will only be used from
DatanodeHttpServer.
</description>
</property>
Expand Down
Expand Up @@ -46,7 +46,7 @@ To enable encrypted shuffle, set the following properties in core-site.xml of al
| `hadoop.ssl.keystores.factory.class` | `org.apache.hadoop.security.ssl.FileBasedKeyStoresFactory` | The KeyStoresFactory implementation to use |
| `hadoop.ssl.server.conf` | `ssl-server.xml` | Resource file from which ssl server keystore information will be extracted. This file is looked up in the classpath, typically it should be in Hadoop conf/ directory |
| `hadoop.ssl.client.conf` | `ssl-client.xml` | Resource file from which ssl server keystore information will be extracted. This file is looked up in the classpath, typically it should be in Hadoop conf/ directory |
| `hadoop.ssl.enabled.protocols` | `TLSv1,SSLv2Hello,TLSv1.1,TLSv1.2` | The supported SSL protocols |
| `hadoop.ssl.enabled.protocols` | `TLSv1.2` | The supported SSL protocols. The parameter will only be used from DatanodeHttpServer. |

**IMPORTANT:** Currently requiring client certificates should be set to false. Refer the [Client Certificates](#Client_Certificates) section for details.

Expand Down

0 comments on commit bc2d3a7

Please sign in to comment.