You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2018/06/05 06:48:45 UTC

[2/2] flink git commit: [FLINK-9518][docs] Adjust password in SSL setup config example

[FLINK-9518][docs] Adjust password in SSL setup config example

This closes #6114.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/8372e2d3
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/8372e2d3
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/8372e2d3

Branch: refs/heads/master
Commit: 8372e2d3e6d08cf75ddcee974156cd4126c8c22a
Parents: 58233ef
Author: Yadan.JS <y_...@yahoo.com>
Authored: Mon Jun 4 07:33:52 2018 -0400
Committer: zentol <ch...@apache.org>
Committed: Tue Jun 5 08:48:06 2018 +0200

----------------------------------------------------------------------
 docs/ops/security-ssl.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/8372e2d3/docs/ops/security-ssl.md
----------------------------------------------------------------------
diff --git a/docs/ops/security-ssl.md b/docs/ops/security-ssl.md
index f43d214..b70d867 100644
--- a/docs/ops/security-ssl.md
+++ b/docs/ops/security-ssl.md
@@ -79,20 +79,20 @@ Configure each node in the standalone cluster to pick up the keystore and trusts
 {% highlight yaml %}
 security.ssl.enabled: true
 security.ssl.keystore: /usr/local/node1.keystore
-security.ssl.keystore-password: abc123
-security.ssl.key-password: abc123
+security.ssl.keystore-password: password
+security.ssl.key-password: password
 security.ssl.truststore: /usr/local/ca.truststore
-security.ssl.truststore-password: abc123
+security.ssl.truststore-password: password
 {% endhighlight %}
 
 #### Node 2
 {% highlight yaml %}
 security.ssl.enabled: true
 security.ssl.keystore: /usr/local/node2.keystore
-security.ssl.keystore-password: abc123
-security.ssl.key-password: abc123
+security.ssl.keystore-password: password
+security.ssl.key-password: password
 security.ssl.truststore: /usr/local/ca.truststore
-security.ssl.truststore-password: abc123
+security.ssl.truststore-password: password
 {% endhighlight %}
 
 * Restart the flink components to enable SSL for all of flink's internal communication
@@ -109,10 +109,10 @@ The keystores and truststore should be generated and deployed on all nodes in th
 {% highlight yaml %}
 security.ssl.enabled: true
 security.ssl.keystore: /usr/local/node.keystore
-security.ssl.keystore-password: abc123
-security.ssl.key-password: abc123
+security.ssl.keystore-password: password
+security.ssl.key-password: password
 security.ssl.truststore: /usr/local/ca.truststore
-security.ssl.truststore-password: abc123
+security.ssl.truststore-password: password
 {% endhighlight %}
 
 Now you can start the YARN session from the CLI like you would normally do.