You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by ji...@apache.org on 2023/05/09 13:27:41 UTC

[incubator-hugegraph-doc] branch master updated: fix outdated hugegraph download link (#211)

This is an automated email from the ASF dual-hosted git repository.

jin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-doc.git


The following commit(s) were added to refs/heads/master by this push:
     new 50c327dd fix outdated hugegraph download link (#211)
50c327dd is described below

commit 50c327ddf367bd0d0b40ee97e6ba98be2628f901
Author: Liu Xiao <42...@users.noreply.github.com>
AuthorDate: Tue May 9 21:27:34 2023 +0800

    fix outdated hugegraph download link (#211)
    
    * fix hugegraph-loader download link
    ---------
    
    Co-authored-by: imbajin <ji...@apache.org>
---
 content/cn/docs/quickstart/hugegraph-loader.md |  4 ++--
 content/cn/docs/quickstart/hugegraph-server.md |  4 ++--
 content/cn/docs/quickstart/hugegraph-tools.md  |  4 ++--
 content/en/docs/quickstart/hugegraph-loader.md |  4 ++--
 content/en/docs/quickstart/hugegraph-server.md | 10 +++++-----
 content/en/docs/quickstart/hugegraph-tools.md  |  4 ++--
 6 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/content/cn/docs/quickstart/hugegraph-loader.md b/content/cn/docs/quickstart/hugegraph-loader.md
index 7e6b6b30..357109a6 100644
--- a/content/cn/docs/quickstart/hugegraph-loader.md
+++ b/content/cn/docs/quickstart/hugegraph-loader.md
@@ -32,7 +32,7 @@ HugeGraph-Loader 是 HugeGraph 的数据导入组件,能够将多种数据源
 下载最新版本的 HugeGraph-Toolchain Release 包, 里面包含了 loader + tool + hubble 全套工具, 如果你已经下载, 可跳过重复步骤
 
 ```bash
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 ```
 
@@ -45,7 +45,7 @@ tar zxf *hugegraph*.tar.gz
 git clone https://github.com/apache/hugegraph-toolchain.git
 
 # 2. get from direct  (e.g. here is 1.0.0, please choose the latest version)
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
 ```
 
 由于Oracle ojdbc license的限制,需要手动安装ojdbc到本地maven仓库。
diff --git a/content/cn/docs/quickstart/hugegraph-server.md b/content/cn/docs/quickstart/hugegraph-server.md
index 818480ee..6dd35d47 100644
--- a/content/cn/docs/quickstart/hugegraph-server.md
+++ b/content/cn/docs/quickstart/hugegraph-server.md
@@ -47,7 +47,7 @@ HugeGraph-Tools 提供了一键部署的命令行工具,用户可以使用该
 
 ```bash
 # download toolchain package, it includes loader + tool + hubble, please check the latest version (here is 1.0.0)
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
 tar zxf *hugegraph-*.tar.gz
 # enter the tool's package
 cd *hugegraph*/*tool* 
@@ -67,7 +67,7 @@ bin/hugegraph deploy -v {hugegraph-version} -p {install-path} [-u {download-path
 
 ```bash
 # use the latest version, here is 1.0.0 for example
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 ```
 
diff --git a/content/cn/docs/quickstart/hugegraph-tools.md b/content/cn/docs/quickstart/hugegraph-tools.md
index 598d3d80..cab1be42 100644
--- a/content/cn/docs/quickstart/hugegraph-tools.md
+++ b/content/cn/docs/quickstart/hugegraph-tools.md
@@ -20,7 +20,7 @@ HugeGraph-Tools 是 HugeGraph 的自动化部署、管理和备份/还原组件
 下载最新版本的 HugeGraph-Toolchain 包, 然后进入 tools 子目录
 
 ```bash
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 ```
 
@@ -34,7 +34,7 @@ tar zxf *hugegraph*.tar.gz
 git clone https://github.com/apache/hugegraph-toolchain.git
 
 # 2. get from direct  (e.g. here is 1.0.0, please choose the latest version)
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
 ```
 
 编译生成 tar 包:
diff --git a/content/en/docs/quickstart/hugegraph-loader.md b/content/en/docs/quickstart/hugegraph-loader.md
index a4b7af68..313110f8 100644
--- a/content/en/docs/quickstart/hugegraph-loader.md
+++ b/content/en/docs/quickstart/hugegraph-loader.md
@@ -31,7 +31,7 @@ There are two ways to get HugeGraph-Loader:
 Download the latest version of the HugeGraph-Toolchain release package:
 
 ```bash
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 ```
 
@@ -44,7 +44,7 @@ Clone the latest version of HugeGraph-Loader source package:
 git clone https://github.com/apache/hugegraph-toolchain.git
 
 # 2. get from direct  (e.g. here is 1.0.0, please choose the latest version)
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
 ```
 
 Due to the license limitation of the `Oracle OJDBC`, you need to manually install ojdbc to the local maven repository.
diff --git a/content/en/docs/quickstart/hugegraph-server.md b/content/en/docs/quickstart/hugegraph-server.md
index 1346d8a9..88a9d3d3 100644
--- a/content/en/docs/quickstart/hugegraph-server.md
+++ b/content/en/docs/quickstart/hugegraph-server.md
@@ -42,7 +42,7 @@ Of course, you should download the tarball of `HugeGraph-Toolchain` first.
 ```bash
 # download toolchain binary package, it includes loader + tool + hubble
 # please check the latest version (e.g. here is 1.0.0)
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
 tar zxf *hugegraph-*.tar.gz
 
 # enter the tool's package
@@ -64,12 +64,12 @@ bin/hugegraph deploy -v {hugegraph-version} -p {install-path} [-u {download-path
 You could download the binary tarball from the download page of ASF site like this:
 ```bash
 # use the latest version, here is 1.0.0 for example
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 
 # (Optional) verify the integrity with SHA512 (recommended)
 shasum -a 512 apache-hugegraph-incubating-1.0.0.tar.gz
-curl https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0.tar.gz.sha512
+curl https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0.tar.gz.sha512
 ```
 
 #### 3.3 Source code compilation
@@ -81,12 +81,12 @@ We could get HugeGraph **source code** by 2 ways: (So as the other HugeGraph rep
 
 ```bash
 # Way 1. download release package from the ASF site
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-src-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-src-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 
 # (Optional) verify the integrity with SHA512 (recommended)
 shasum -a 512 apache-hugegraph-incubating-src-1.0.0.tar.gz
-curl https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0-src.tar.gz.sha512
+curl https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-incubating-1.0.0-src.tar.gz.sha512
 
 # Way2 : clone the latest code by git way (e.g GitHub)
 git clone https://github.com/apache/hugegraph.git
diff --git a/content/en/docs/quickstart/hugegraph-tools.md b/content/en/docs/quickstart/hugegraph-tools.md
index c5e7ba86..05f566b5 100644
--- a/content/en/docs/quickstart/hugegraph-tools.md
+++ b/content/en/docs/quickstart/hugegraph-tools.md
@@ -20,7 +20,7 @@ There are two ways to get HugeGraph-Tools:
 Download the latest version of the HugeGraph-Toolchain package:
 
 ```bash
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0.tar.gz
 tar zxf *hugegraph*.tar.gz
 ```
 
@@ -34,7 +34,7 @@ Download the latest version of the HugeGraph-Tools source package:
 git clone https://github.com/apache/hugegraph-toolchain.git
 
 # 2. get from direct  (e.g. here is 1.0.0, please choose the latest version)
-wget https://dist.apache.org/repos/dist/dev/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
+wget https://downloads.apache.org/incubator/hugegraph/1.0.0/apache-hugegraph-toolchain-incubating-1.0.0-src.tar.gz
 ```
 
 Compile and generate tar package: