You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2016/05/22 09:01:37 UTC

kafka git commit: MINOR: Specify keyalg RSA for SSL key generation

Repository: kafka
Updated Branches:
  refs/heads/trunk 177b2d0be -> dee388066


MINOR: Specify keyalg RSA for SSL key generation

Author: Sriharsha Chintalapani <ha...@hortonworks.com>

Reviewers: Ismael Juma <is...@juma.me.uk>

Closes #1416 from harshach/ssl-doc-fix


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

Branch: refs/heads/trunk
Commit: dee38806663b0062706dfaca40da9537792f05a9
Parents: 177b2d0
Author: Sriharsha Chintalapani <ha...@hortonworks.com>
Authored: Sun May 22 10:01:32 2016 +0100
Committer: Ismael Juma <is...@juma.me.uk>
Committed: Sun May 22 10:01:32 2016 +0100

----------------------------------------------------------------------
 docs/security.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/dee38806/docs/security.html
----------------------------------------------------------------------
diff --git a/docs/security.html b/docs/security.html
index bd483e5..2459f54 100644
--- a/docs/security.html
+++ b/docs/security.html
@@ -93,7 +93,7 @@ Apache Kafka allows clients to connect over SSL. By default SSL is disabled but
             <pre>
         #!/bin/bash
         #Step 1
-        keytool -keystore server.keystore.jks -alias localhost -validity 365 -genkey
+        keytool -keystore server.keystore.jks -alias localhost -validity 365 -keyalg RSA -genkey
         #Step 2
         openssl req -new -x509 -keyout ca-key -out ca-cert -days 365
         keytool -keystore server.truststore.jks -alias CARoot -import -file ca-cert