Skip to content

Commit 5645841

Browse files
committed
Fix quickstart ports
Signed-off-by: Robert Young <[email protected]>
1 parent fa9551d commit 5645841

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

documentation/0.14.0/html/proxy-quick-start/content.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h3 id="create_a_topic">5.1. Create a Topic</h3>
159159
<div class="listingblock">
160160
<div class="content">
161161
<pre class="CodeRay highlight"><code data-lang="bash">bin/kafka-topics.sh --create --topic my_topic \
162-
--bootstrap-server localhost:9292</code></pre>
162+
--bootstrap-server localhost:9192</code></pre>
163163
</div>
164164
</div>
165165
</div>
@@ -171,7 +171,7 @@ <h3 id="produce_a_message">5.2. Produce a Message</h3>
171171
<div class="listingblock">
172172
<div class="content">
173173
<pre class="CodeRay highlight"><code data-lang="bash">echo "hello world" | bin/kafka-console-producer.sh --topic my_topic \
174-
--bootstrap-server localhost:9292</code></pre>
174+
--bootstrap-server localhost:9192</code></pre>
175175
</div>
176176
</div>
177177
</div>
@@ -183,7 +183,7 @@ <h3 id="consume_the_message">5.3. Consume the Message</h3>
183183
<div class="listingblock">
184184
<div class="content">
185185
<pre class="CodeRay highlight"><code data-lang="bash">bin/kafka-console-consumer.sh --topic my_topic --from-beginning \
186-
--bootstrap-server localhost:9292</code></pre>
186+
--bootstrap-server localhost:9192</code></pre>
187187
</div>
188188
</div>
189189
</div>

0 commit comments

Comments
 (0)