Pil0tXia commented on code in PR #126: URL: https://github.com/apache/eventmesh-site/pull/126#discussion_r1318042584
########## i18n/zh/docusaurus-plugin-content-docs/current/instruction/01-store.md: ########## @@ -1,51 +1,47 @@ # 部署 EventMesh 的事件存储 -## 依赖 +eventmesh在非standalone模式下,依赖RocketMQ作为存储层;若采用standalone模式,则可跳过该步,直接进行runtime的部署。 + +## 1. 依赖 ``` 建议使用64位操作系统,建议使用Linux/Unix; -64位JDK 1.8+; -Gradle至少为7.0, 推荐7.0.* -4g+可用磁盘用于eventmesh-store服务器 -eventmesh在非standalone模式下,依赖RocketMQ作为存储层;若采用standalone模式,则可跳过该步,直接进行runtime的部署 +64位JDK 1.8+; +Gradle至少为7.0, 推荐7.0.*; +4g+可用磁盘用于eventmesh-store服务器; ``` +## 2. 二进制部署 -## 下载 +### 2.1 下载 -从 [RocketMQ官方网站](https://rocketmq.apache.org/download/) 下载Binary代码(推荐使用4.9.*版本),这里以4.9.4为例 +从[RocketMQ官方网站](https://rocketmq.apache.org/download/) 下载Binary代码(推荐使用4.9.*版本),这里以4.9.4为例: ``` unzip rocketmq-all-4.9.4-bin-release.zip -cd rocketmq-4.9.4/ +cd rocketmq-all-4.9.4-bin-release/ ``` + -## 部署 +### 2.2 启动 -- #### 启动Name Server +启动Name Server: ``` -nohup sh bin/mqnamesrv & -tail -f ~/logs/rocketmqlogs/namesrv.log +nohup sh bin/mqnamesrv & tail -f ~/logs/rocketmqlogs/namesrv.log ``` -如果在看到The Name Server boot success...,则说明Name Server启动成功 +如果在看到The Name Server boot success...,则说明Name Server启动成功。 + + -- #### 启动Broker +启动Broker: ``` -nohup sh bin/mqbroker -n localhost:9876 & -tail -f ~/logs/rocketmqlogs/broker.log +nohup sh bin/mqbroker -n localhost:9876 & tail -f ~/logs/rocketmqlogs/broker.log ``` -如果在看到The broker boot success...,则说明Broker启动成功 - -至此eventmesh-store的部署已完成,请转至下一步完成 [eventmesh-runtime](https://github.com/apache/incubator-eventmesh/blob/master/docs/zh/instruction/02-runtime.md) 的部署 - Review Comment: This instruction is needed both in EventMesh Storage deployment with docker and without docker. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
