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


MINOR: Specify keyalg RSA for SSL key generation

Author: Sriharsha Chintalapani <[email protected]>

Reviewers: Ismael Juma <[email protected]>

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 <[email protected]>
Authored: Sun May 22 10:01:32 2016 +0100
Committer: Ismael Juma <[email protected]>
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

Reply via email to