Repository: kafka-site Updated Branches: refs/heads/asf-site 98c07f419 -> 8aa235531
Replace hardcoded 0.10.2 references with version variable Project: http://git-wip-us.apache.org/repos/asf/kafka-site/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka-site/commit/8aa23553 Tree: http://git-wip-us.apache.org/repos/asf/kafka-site/tree/8aa23553 Diff: http://git-wip-us.apache.org/repos/asf/kafka-site/diff/8aa23553 Branch: refs/heads/asf-site Commit: 8aa235531439aebc3986825b136c0459b4aaeab9 Parents: 98c07f4 Author: Ismael Juma <[email protected]> Authored: Wed Jun 28 12:05:25 2017 +0100 Committer: Ismael Juma <[email protected]> Committed: Wed Jun 28 12:05:25 2017 +0100 ---------------------------------------------------------------------- 0110/quickstart.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka-site/blob/8aa23553/0110/quickstart.html ---------------------------------------------------------------------- diff --git a/0110/quickstart.html b/0110/quickstart.html index 6509f75..9b8b13a 100644 --- a/0110/quickstart.html +++ b/0110/quickstart.html @@ -25,11 +25,11 @@ Since Kafka console scripts are different for Unix-based and Windows platforms, <h4><a id="quickstart_download" href="#quickstart_download">Step 1: Download the code</a></h4> -<a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/0.10.2.0/kafka_2.11-0.10.2.0.tgz" title="Kafka downloads">Download</a> the 0.10.2.0 release and un-tar it. +<a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/{{dotVersion}}/kafka_2.11-{{dotVersion}}.tgz" title="Kafka downloads">Download</a> the {{dotVersion}} release and un-tar it. <pre class="brush: bash;"> -> tar -xzf kafka_2.11-0.10.2.0.tgz -> cd kafka_2.11-0.10.2.0 +> tar -xzf kafka_2.11-{{dotVersion}}.tgz +> cd kafka_2.11-{{dotVersion}} </pre> <h4><a id="quickstart_startserver" href="#quickstart_startserver">Step 2: Start the server</a></h4> @@ -187,7 +187,7 @@ my test message 2 On Windows use: <pre class="brush: bash;"> > wmic process get processid,caption,commandline | find "java.exe" | find "server-1.properties" -java.exe java -Xmx1G -Xms1G -server -XX:+UseG1GC ... build\libs\kafka_2.11-0.10.2.0.jar" kafka.Kafka config\server-1.properties 644 +java.exe java -Xmx1G -Xms1G -server -XX:+UseG1GC ... build\libs\kafka_2.11-{{dotVersion}}.jar" kafka.Kafka config\server-1.properties 644 > taskkill /pid 644 /f </pre>
