Repository: kafka Updated Branches: refs/heads/0.10.0 542f7af7b -> 2e456cb61
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 (cherry picked from commit dee38806663b0062706dfaca40da9537792f05a9) Signed-off-by: Ismael Juma <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/2e456cb6 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/2e456cb6 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/2e456cb6 Branch: refs/heads/0.10.0 Commit: 2e456cb6167e33414ac88235701022e7b7d705bb Parents: 542f7af 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:43 2016 +0100 ---------------------------------------------------------------------- docs/security.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/2e456cb6/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
