Repository: kafka Updated Branches: refs/heads/trunk 5f88cf79f -> 1ce6aa550
KAFKA-4964; Use correct keystore/trustore name in documentation Author: shuguo zheng <[email protected]> Reviewers: Ismael Juma <[email protected]> Closes #2749 from zhengsg/local Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/1ce6aa55 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/1ce6aa55 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/1ce6aa55 Branch: refs/heads/trunk Commit: 1ce6aa550324f74c41fc404ce9f4a9e51f7c862e Parents: 5f88cf7 Author: shuguo zheng <[email protected]> Authored: Fri Mar 31 11:06:41 2017 +0100 Committer: Ismael Juma <[email protected]> Committed: Fri Mar 31 11:08:12 2017 +0100 ---------------------------------------------------------------------- docs/security.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/1ce6aa55/docs/security.html ---------------------------------------------------------------------- diff --git a/docs/security.html b/docs/security.html index 7c3c167..536009a 100644 --- a/docs/security.html +++ b/docs/security.html @@ -137,10 +137,10 @@ Following SSL configs are needed on the broker side <pre> - ssl.keystore.location=/var/private/ssl/kafka.server.keystore.jks + ssl.keystore.location=/var/private/ssl/server.keystore.jks ssl.keystore.password=test1234 ssl.key.password=test1234 - ssl.truststore.location=/var/private/ssl/kafka.server.truststore.jks + ssl.truststore.location=/var/private/ssl/server.truststore.jks ssl.truststore.password=test1234</pre> Note: ssl.truststore.password is technically optional but highly recommended. If a password is not set access to the truststore is still available, but integrity checking is disabled. @@ -191,17 +191,17 @@ If client authentication is not required in the broker, then the following is a minimal configuration example: <pre> security.protocol=SSL - ssl.truststore.location=/var/private/ssl/kafka.client.truststore.jks + ssl.truststore.location=/var/private/ssl/client.truststore.jks ssl.truststore.password=test1234</pre> Note: ssl.truststore.password is technically optional but highly recommended. If a password is not set access to the truststore is still available, but integrity checking is disabled. If client authentication is required, then a keystore must be created like in step 1 and the following must also be configured: <pre> - ssl.keystore.location=/var/private/ssl/kafka.client.keystore.jks + ssl.keystore.location=/var/private/ssl/client.keystore.jks ssl.keystore.password=test1234 ssl.key.password=test1234</pre> - + Other configuration settings that may also be needed depending on our requirements and the broker configuration: <ol> <li>ssl.provider (Optional). The name of the security provider used for SSL connections. Default value is the default security provider of the JVM.</li>
