This is an automated email from the ASF dual-hosted git repository.

jinrongtong pushed a commit to branch new-official-website
in repository https://gitbox.apache.org/repos/asf/rocketmq-site.git


The following commit(s) were added to refs/heads/new-official-website by this 
push:
     new 97fabe959f Fixed the bug in Docker deployment method to QuickStart 
guide for Version 4.x (#651)
97fabe959f is described below

commit 97fabe959ff894bb73117647dca5b2a20de9efc2
Author: Kaxiya <125204531+kaxiya1...@users.noreply.github.com>
AuthorDate: Thu May 30 11:51:39 2024 +0800

    Fixed the bug in Docker deployment method to QuickStart guide for Version 
4.x (#651)
    
    * Fixed the echo statement for Windows & Rename the file
    
    * Fixed the bug in Docker deployment method to QuickStart guide for Version 
4.x
---
 ...ickstartWithDocker4.x.md => 02quickstartWithDocker4.x.md} | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/01-introduction/04quickstartWithDocker4.x.md 
b/docs/01-introduction/02quickstartWithDocker4.x.md
similarity index 93%
rename from docs/01-introduction/04quickstartWithDocker4.x.md
rename to docs/01-introduction/02quickstartWithDocker4.x.md
index c9528fd5b0..85d70a80ce 100644
--- a/docs/01-introduction/04quickstartWithDocker4.x.md
+++ b/docs/01-introduction/02quickstartWithDocker4.x.md
@@ -55,10 +55,10 @@ import TabItem from '@theme/TabItem';
 <TabItem value="Linux" label="Linux" default >
 
 ```code
-# 配置 broker 的 IP 地址
-echo brokerIP1=127.0.0.1>broker.conf
+# 配置 Broker 的 IP 地址
+echo "brokerIP1=127.0.0.1" >broker.conf
 
-# 启动Broker
+# 启动 Broker
 docker run -d \
 --name rmqbroker \
 --net rocketmq \
@@ -68,15 +68,15 @@ docker run -d \
 apache/rocketmq:4.9.6 sh mqbroker \
 -c /home/rocketmq/rocketmq-4.9.6/conf/broker.conf
 
-# 验证Broker是否启动成功
+# 验证 Broker 是否启动成功
 docker logs rmqbroker
 ```
 </TabItem>
 <TabItem value="Windows" label="Windows">
 
 ```code
-# 配置 broker 的 IP 地址
-echo brokerIP1=127.0.0.1>broker.conf
+# 配置 Broker 的 IP 地址
+echo "brokerIP1=127.0.0.1" >broker.conf
 
 # 启动 Broker
 docker run -d ^

Reply via email to