Repository: kafka Updated Branches: refs/heads/trunk d9ddc109f -> 9f33bfe19
Minor: fix sasl.kerberos.service.name sasl.kerberos.service.name surround by double quote didn't work, have to remove. Author: BINLEI XUE <[email protected]> Reviewers: Gwen Shapira Closes #720 from secjex/patch-1 Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/9f33bfe1 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/9f33bfe1 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/9f33bfe1 Branch: refs/heads/trunk Commit: 9f33bfe19cd7841b03ff60c84148fe309555b58a Parents: d9ddc10 Author: BINLEI XUE <[email protected]> Authored: Wed Dec 30 08:00:43 2015 -0800 Committer: Gwen Shapira <[email protected]> Committed: Wed Dec 30 08:00:43 2015 -0800 ---------------------------------------------------------------------- docs/security.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/9f33bfe1/docs/security.html ---------------------------------------------------------------------- diff --git a/docs/security.html b/docs/security.html index 848031b..0ed18fa 100644 --- a/docs/security.html +++ b/docs/security.html @@ -231,7 +231,7 @@ Apache Kafka allows clients to connect over SSL. By default SSL is disabled but We must also configure the service name in server.properties, which should match the principal name of the kafka brokers. In the above example, principal is "kafka/[email protected]", so: <pre> - sasl.kerberos.service.name="kafka"</pre> + sasl.kerberos.service.name=kafka</pre> <u>Important notes:</u> <ol> @@ -270,7 +270,7 @@ Apache Kafka allows clients to connect over SSL. By default SSL is disabled but <li>Configure the following properties in producer.properties or consumer.properties: <pre> security.protocol=SASL_PLAINTEXT (or SASL_SSL) - sasl.kerberos.service.name="kafka"</pre> + sasl.kerberos.service.name=kafka</pre> </li> </ol></li> </ol>
