You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ol...@apache.org on 2023/03/10 01:51:01 UTC

[rocketmq-site] branch new-official-website updated: [ISSUE #435] Correct the proxy log dir (#520)

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

oliverwqcwrw 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 b0a8c2810 [ISSUE #435] Correct the proxy log dir (#520)
b0a8c2810 is described below

commit b0a8c2810832c731751d8f67b7d12b00b0650cd7
Author: Oliver <wq...@163.com>
AuthorDate: Fri Mar 10 09:50:55 2023 +0800

    [ISSUE #435] Correct the proxy log dir (#520)
---
 .../version-5.0/02-quickStart/01quickstart.md                         | 4 ++--
 versioned_docs/version-5.0/02-quickStart/01quickstart.md              | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md b/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
index f6f082f55..0457d40ae 100644
--- a/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
+++ b/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
@@ -56,13 +56,13 @@ After nameserver startup, we need start the broker and proxy. We recommend Local
 $ nohup sh bin/mqbroker -n localhost:9876 --enable-proxy &
 
 ### verify broker
-$ tail -f ~/logs/rocketmqlogs/broker_default.log 
+$ tail -f ~/logs/rocketmqlogs/proxy.log 
 The broker[broker-a,192.169.1.2:10911] boot success...
 ```
 
 :::info
 
-Once we see “The broker[brokerName,ip:port] boot success..” from broker.log, it means the Broker has been started successfully.
+Once we see “The broker[brokerName,ip:port] boot success..” from proxy.log, it means the Broker has been started successfully.
 :::
 
 :::note
diff --git a/versioned_docs/version-5.0/02-quickStart/01quickstart.md b/versioned_docs/version-5.0/02-quickStart/01quickstart.md
index 58a110057..00bca1cf1 100644
--- a/versioned_docs/version-5.0/02-quickStart/01quickstart.md
+++ b/versioned_docs/version-5.0/02-quickStart/01quickstart.md
@@ -57,13 +57,13 @@ NameServer成功启动后,我们启动Broker和Proxy,5.x 版本下我们建
 $ nohup sh bin/mqbroker -n localhost:9876 --enable-proxy &
 
 ### 验证broker是否启动成功, 比如, broker的ip是192.168.1.2 然后名字是broker-a
-$ tail -f ~/logs/rocketmqlogs/broker_default.log 
+$ tail -f ~/logs/rocketmqlogs/proxy.log 
 The broker[broker-a,192.169.1.2:10911] boot success...
 ```
 
 :::info
 
-我们可以在 broker_default.log 中看到“The broker[brokerName,ip:port] boot success..”,这表明 broker 已成功启动。
+我们可以在 proxy.log 中看到“The broker[brokerName,ip:port] boot success..”,这表明 broker 已成功启动。
 
 :::