Skip to content
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

[ISSUE #598] release 5.1.4, update doc #599

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ This section will describe steps to quickly deploy a RocketMQ cluster with a sin

:::tip Download RocketMQ

Apache RocketMQ is distributed both in binary and source packages. Click [here](https://dist.apache.org/repos/dist/release/rocketmq/5.1.3/rocketmq-all-5.1.3-source-release.zip) to download Apache RocketMQ 5.1.3 source package. You may prefer [prebuilt binary package](https://dist.apache.org/repos/dist/release/rocketmq/5.1.3/rocketmq-all-5.1.3-bin-release.zip), which can be run directly since it has been compiled.
Apache RocketMQ is distributed both in binary and source packages. Click [here](https://dist.apache.org/repos/dist/release/rocketmq/5.1.4/rocketmq-all-5.1.4-source-release.zip) to download Apache RocketMQ 5.1.4 source package. You may prefer [prebuilt binary package](https://dist.apache.org/repos/dist/release/rocketmq/5.1.4/rocketmq-all-5.1.4-bin-release.zip), which can be run directly since it has been compiled.

:::

The following instruction takes the application of RocketMQ 5.1.3 source package in Linux environment as an example in order to introduce the installation process of RocketMQ.
The following instruction takes the application of RocketMQ 5.1.4 source package in Linux environment as an example in order to introduce the installation process of RocketMQ.

Extract the source package of RocketMQ 5.1.3, then compile and build the binary executables:
Extract the source package of RocketMQ 5.1.4, then compile and build the binary executables:

```shell
$ unzip rocketmq-all-5.1.3-source-release.zip
$ cd rocketmq-all-5.1.3-source-release/
$ unzip rocketmq-all-5.1.4-source-release.zip
$ cd rocketmq-all-5.1.4-source-release/
$ mvn -Prelease-all -DskipTests -Dspotbugs.skip=true clean install -U
$ cd distribution/target/rocketmq-5.1.3/rocketmq-5.1.3
$ cd distribution/target/rocketmq-5.1.4/rocketmq-5.1.4
```
## 2. Start NameServer

Expand Down
1 change: 1 addition & 0 deletions src/pages/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
## RocketMQ
| 版本 | 文档 | 发布日期 | Source 下载 | Binary 下载 | End of Support |
|----------------------|---------------------------------------------------|------------|----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|----------------|
| **5.1.4** | [Release Notes](/release-notes/2023/09/22/5.1.4/) | 2023.10.9 | [download.zip](https://dist.apache.org/repos/dist/release/rocketmq/5.1.4/rocketmq-all-5.1.4-source-release.zip) | [download.zip](https://dist.apache.org/repos/dist/release/rocketmq/5.1.4/rocketmq-all-5.1.4-bin-release.zip) | |
| **5.1.3** | [Release Notes](/release-notes/2023/06/24/5.1.3/) | 2023.7.29 | [download.zip](https://dist.apache.org/repos/dist/release/rocketmq/5.1.3/rocketmq-all-5.1.3-source-release.zip) | [download.zip](https://dist.apache.org/repos/dist/release/rocketmq/5.1.3/rocketmq-all-5.1.3-bin-release.zip) | |
| **5.1.2** | [Release Notes](/release-notes/2023/06/12/5.1.2/) | 2023.6.19 | [download.zip](https://archive.apache.org/dist/rocketmq/5.1.2/rocketmq-all-5.1.2-source-release.zip) | [download.zip](https://archive.apache.org/dist/rocketmq/5.1.2/rocketmq-all-5.1.2-bin-release.zip) | |
| **5.1.1** | [Release Notes](/release-notes/2023/05/15/5.1.1/) | 2023.5.19 | [download.zip](https://archive.apache.org/dist/rocketmq/5.1.1/rocketmq-all-5.1.1-source-release.zip) | [download.zip](https://archive.apache.org/dist/rocketmq/5.1.1/rocketmq-all-5.1.1-bin-release.zip) | |
Expand Down
12 changes: 6 additions & 6 deletions versioned_docs/version-5.0/02-quickStart/01quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@

:::tip RocketMQ下载

RocketMQ 的安装包分为两种,二进制包和源码包。 点击[这里](https://dist.apache.org/repos/dist/release/rocketmq/5.1.3/rocketmq-all-5.1.3-source-release.zip) 下载 Apache RocketMQ 5.1.3的源码包。你也可以从[这里](https://dist.apache.org/repos/dist/release/rocketmq/5.1.3/rocketmq-all-5.1.3-bin-release.zip) 下载到二进制包。二进制包是已经编译完成后可以直接运行的,源码包是需要编译后运行的。
RocketMQ 的安装包分为两种,二进制包和源码包。 点击[这里](https://dist.apache.org/repos/dist/release/rocketmq/5.1.4/rocketmq-all-5.1.4-source-release.zip) 下载 Apache RocketMQ 5.1.4的源码包。你也可以从[这里](https://dist.apache.org/repos/dist/release/rocketmq/5.1.4/rocketmq-all-5.1.4-bin-release.zip) 下载到二进制包。二进制包是已经编译完成后可以直接运行的,源码包是需要编译后运行的。

:::

这里以在Linux环境下利用社区5.1.3的源码包为例,介绍RocketMQ安装过程。
这里以在Linux环境下利用社区5.1.4的源码包为例,介绍RocketMQ安装过程。

解压5.1.3的源码包并编译构建二进制可执行文件
解压5.1.4的源码包并编译构建二进制可执行文件

```shell
$ unzip rocketmq-all-5.1.3-source-release.zip
$ cd rocketmq-all-5.1.3-source-release/
$ unzip rocketmq-all-5.1.4-source-release.zip
$ cd rocketmq-all-5.1.4-source-release/
$ mvn -Prelease-all -DskipTests -Dspotbugs.skip=true clean install -U
$ cd distribution/target/rocketmq-5.1.3/rocketmq-5.1.3
$ cd distribution/target/rocketmq-5.1.4/rocketmq-5.1.4
```
## 2. 启动NameServer

Expand Down