This is an automated email from the ASF dual-hosted git repository.
linhill 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 68a3f929d optimize English document for 02RocketMQMQTTQuickStart.md
68a3f929d is described below
commit 68a3f929db79512893b520f8e830d0ff7ff2feda
Author: Qingshan Lin <[email protected]>
AuthorDate: Wed Aug 23 14:52:15 2023 +0800
optimize English document for 02RocketMQMQTTQuickStart.md
---
.../version-5.0/08-mqtt/02RocketMQMQTTQuickStart.md | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git
a/i18n/en/docusaurus-plugin-content-docs/version-5.0/08-mqtt/02RocketMQMQTTQuickStart.md
b/i18n/en/docusaurus-plugin-content-docs/version-5.0/08-mqtt/02RocketMQMQTTQuickStart.md
index 48e8b1fc2..ba2e0c9e7 100644
---
a/i18n/en/docusaurus-plugin-content-docs/version-5.0/08-mqtt/02RocketMQMQTTQuickStart.md
+++
b/i18n/en/docusaurus-plugin-content-docs/version-5.0/08-mqtt/02RocketMQMQTTQuickStart.md
@@ -21,11 +21,9 @@ git clone https://github.com/apache/rocketmq-mqtt
cd rocketmq-mqtt
mvn -Prelease-all -DskipTests clean install -U
cd distribution/target/
-cd bin
-sh mqtt.sh start
```
+After the source code is built, edit conf/service.conf to complete the MQTT
related configuration, as follows
-## Configuration instructions
```text
username=xxx // Authorization verification account configuration
@@ -35,7 +33,14 @@ eventNotifyRetryTopic=xx //notify retry topic, created in
advance
clientRetryTopic=xx //Client message retry topic, created in advance
```
-Other launch configuration reference projects
[README.md](https://github.com/apache/rocketmq-mqtt/blob/main/README.md)
+Other launch configuration and pre-step reference projects
[README.md](https://github.com/apache/rocketmq-mqtt/blob/main/README.md)
+
+Finally start the meta service and then the mqtt broker. Go to the
distribution/target/bin directory and start the process.
+
+```text
+sh meta.sh start
+sh mqtt.sh start
+```
## Example Description
@@ -46,4 +51,4 @@ MqttConsumer.java // MQTT client initiates subscription
message
MqttProducer.java // MQTT client starts publishing messages
RocketMQConsumer.java // RocketMQ client starts subscription message
RocketMQProducer.java // RocketMQ client starts publishing messages
-```
\ No newline at end of file
+```