From dee38806663b0062706dfaca40da9537792f05a9 Mon Sep 17 00:00:00 2001 From: Sriharsha Chintalapani Date: Sun, 22 May 2016 10:01:32 +0100 Subject: [PATCH] MINOR: Specify keyalg RSA for SSL key generation Author: Sriharsha Chintalapani Reviewers: Ismael Juma Closes #1416 from harshach/ssl-doc-fix --- docs/security.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/security.html b/docs/security.html index bd483e504de..2459f5493bb 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
         #!/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