-
Notifications
You must be signed in to change notification settings - Fork 27
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
feat: add download page of cn #144
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
add cn download page
- Loading branch information
commit c4811833a72cb49251d6d9fd37c6a0037dff0d0c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
--- | ||
title: "下载" | ||
type: docs | ||
menu: | ||
main: | ||
weight: 30 | ||
pre: <i class='fa-solid fa-download'></i> | ||
--- | ||
|
||
Apache HoraeDB 使用源码压缩包进行发布。 | ||
|
||
# 最新发布 | ||
|
||
最新一次发布版本:2.0.0(2024-05-23),源码[下载地址](https://downloads.apache.org/incubator/horaedb/horaedb/v2.0.0/apache-horaedb-incubating-v2.0.0-src.tar.gz)。 | ||
|
||
用户可以按照以下指南使用 [signatures](https://downloads.apache.org/incubator/horaedb/horaedb/v2.0.0/apache-horaedb-incubating-v2.0.0-src.tar.gz.asc) 和 [checksums](https://downloads.apache.org/incubator/horaedb/horaedb/v2.0.0/apache-horaedb-incubating-v2.0.0-src.tar.gz.sha512) 验证此版本。 | ||
|
||
## Docker 镜像 | ||
|
||
暂不提供预构建好的二进制文件,用户可以使用源码[编译](docs/dev/compile_run.md)或者使用 docker 镜像: | ||
|
||
- https://hub.docker.com/r/apache/horaemeta-server | ||
- https://hub.docker.com/r/apache/horaedb-server | ||
|
||
## 历史版本 | ||
|
||
历史已发布版本,可以在[这里](https://downloads.apache.org/incubator/horaedb/horaedb/)查询得到。 | ||
|
||
# 验证 signatures 和 checksums | ||
|
||
强烈建议用户验证下载的文件。 | ||
|
||
HoraeDB 为所有在下载站点上的文件提供 SHA digest 文件和 PGP 签名文件,验证文件以原始文件命名,并带有 `sha512`、`asc` 扩展名。 | ||
|
||
## 验证 Checksums | ||
|
||
用户需要下载 `tar.gz` 文件和 `tar.gz.sha512` 文件来验证 Checksums。验证命令: | ||
|
||
```bash | ||
sha512sum -c apache-horaedb-incubating-v2.0.0-src.tar.gz.sha512 | ||
``` | ||
|
||
正确结果: | ||
|
||
``` | ||
apache-horaedb-incubating-v2.0.0-src.tar.gz: OK | ||
``` | ||
|
||
## 验证 Signatures | ||
|
||
验证 PGP Signatures,用户需要下载 [release KEYS](https://downloads.apache.org/incubator/horaedb/KEYS) 文件。 | ||
|
||
导入下载的 KEYS 文件: | ||
|
||
```bash | ||
gpg --import KEYS | ||
``` | ||
|
||
验证命令: | ||
|
||
```bash | ||
gpg --verify apache-horaedb-incubating-v2.0.0-src.tar.gz.asc | ||
``` | ||
|
||
正确结果: | ||
|
||
``` | ||
gpg: Signature made Wed 12 Jun 2024 11:05:04 AM CST using RSA key ID 08A0BAB4 | ||
gpg: Good signature from "jiacai2050@apache.org" | ||
gpg: aka "Jiacai Liu <hello@liujiacai.net>" | ||
gpg: aka "Jiacai Liu <dev@liujiacai.net>" | ||
gpg: WARNING: This key is not certified with a trusted signature! | ||
gpg: There is no indication that the signature belongs to the owner. | ||
Primary key fingerprint: 6F73 4AE4 297C 7F62 B605 4F91 D302 6E5C 08A0 BAB4 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Please keep it as it was before, ref is a hugo function, and it will throw error when the markdown is deleted/renamed, in this way we can avoid 404 pages.