caigy commented on code in PR #4302: URL: https://github.com/apache/rocketmq/pull/4302#discussion_r871998699
########## README.md: ########## @@ -34,6 +34,110 @@ It offers a variety of features: * Lightweight real-time computing ---------- + +## Quick Start + +This paragraph guides you through steps of installing RocketMQ in different ways. +For local development and testing, only one instance will be created for each component. + +### Run RocketMQ locally + +RocketMQ runs on all major operating systems and requires only a Java JDK version 8 or higher to be installed. +To check, run `java -version`: +```shell +$ java -version +java version "1.8.0_121" +``` + +Download the latest RocketMQ release from the Apache mirror: +```shell +$ wget https://archive.apache.org/dist/rocketmq/4.9.3/rocketmq-all-4.9.3-bin-release.zip +``` + +Unpack the release: +```shell +$ unzip rocketmq-all-4.9.3-bin-release.zip +$ cd rocketmq-all-4.9.3-bin-release Review Comment: You'd better not use static version (4.9.3) here. ########## README.md: ########## @@ -34,6 +34,110 @@ It offers a variety of features: * Lightweight real-time computing ---------- + +## Quick Start + +This paragraph guides you through steps of installing RocketMQ in different ways. +For local development and testing, only one instance will be created for each component. + +### Run RocketMQ locally Review Comment: Hope that quick start guides for Windows would be supplemented. -- 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]
