-
Notifications
You must be signed in to change notification settings - Fork 12k
Add a rough guide for quick start #4302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This is a good idea, I think that would be better to put it on https://rocketmq.apache.org/docs/quick-start/ |
README.md
Outdated
$ 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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'd better not use static version (4.9.3) here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'd better not use static version (4.9.3) here.
That‘s what I think, but I didn't find a common method to express the release url of the latest version in Apache mirror.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ye
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hope that quick start guides for Windows would be supplemented.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hope that quick start guides for Windows would be supplemented.
OK,this is done in the latest commit.
Codecov Report
@@ Coverage Diff @@
## develop #4302 +/- ##
=============================================
+ Coverage 48.18% 48.21% +0.03%
- Complexity 5081 5088 +7
=============================================
Files 642 642
Lines 42780 42762 -18
Branches 5599 5596 -3
=============================================
+ Hits 20612 20617 +5
+ Misses 19660 19633 -27
- Partials 2508 2512 +4
Continue to review full report at Codecov.
|
Thanks, I think this is for that most people don't want to check out the official website. |
* add a rough guide for quick start * add github link of the rocketmq operator * add install steps for Windows Co-authored-by: 文泊 <[email protected]>
我认为大多数都会以官方网站做参考,至少我是这样的。现在rocket官方文档太简陋。我目前找不docker版本的rocket5。dockerhub上的现在是4.9.4 |
Make sure set the target branch to
develop
What is the purpose of the change
Add a rough guide for RocketMQ deployment, include three different environments:
Brief changelog
add a rough guide for quick start
Verifying this change
XXXX
Follow this checklist to help us incorporate your contribution quickly and easily. Notice,
it would be helpful if you could finish the following 5 checklist(the last one is not necessary)before request the community to review your PR
.[ISSUE #123] Fix UnknownException when host config not exist
. Each commit in the pull request should have a meaningful subject line and body.mvn -B clean apache-rat:check findbugs:findbugs checkstyle:checkstyle
to make sure basic checks pass. Runmvn clean install -DskipITs
to make sure unit-test pass. Runmvn clean test-compile failsafe:integration-test
to make sure integration-test pass.