This is an automated email from the ASF dual-hosted git repository. luzhijing pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new 7d5958495c [doc] fix conf path in quick-start (#796) 7d5958495c is described below commit 7d5958495c37dfbf266664ee4f0293d07cef0354 Author: zjj <zhong2p...@gmail.com> AuthorDate: Fri Jun 28 12:47:36 2024 +0800 [doc] fix conf path in quick-start (#796) --- docs/get-starting/quick-start.md | 2 +- docs/install/cluster-deployment/standard-deployment.md | 2 +- .../current/get-starting/quick-start.md | 4 ++-- .../current/install/cluster-deployment/standard-deployment.md | 2 +- .../version-2.0/get-starting/quick-start.md | 4 ++-- .../version-2.0/install/cluster-deployment/standard-deployment.md | 2 +- .../version-2.1/get-starting/quick-start.md | 4 ++-- .../version-2.1/install/cluster-deployment/standard-deployment.md | 2 +- versioned_docs/version-2.0/get-starting/quick-start.md | 4 ++-- .../version-2.0/install/cluster-deployment/standard-deployment.md | 2 +- versioned_docs/version-2.1/get-starting/quick-start.md | 4 ++-- .../version-2.1/install/cluster-deployment/standard-deployment.md | 2 +- 12 files changed, 17 insertions(+), 17 deletions(-) diff --git a/docs/get-starting/quick-start.md b/docs/get-starting/quick-start.md index a44bff6b16..9b4868215d 100644 --- a/docs/get-starting/quick-start.md +++ b/docs/get-starting/quick-start.md @@ -77,7 +77,7 @@ server1:apache-doris/fe doris$ ./bin/start_fe.sh --daemon ### Configure BE -Go to the `apache-doris/be/be.conf` file for BE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. +Go to the `apache-doris/be/conf/be.conf` file for BE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. ```Shell # Add JAVA_HOME and point it to your JDK8 runtime environment. Suppose your JDK8 is at /home/doris/jdk8, set it as follows: diff --git a/docs/install/cluster-deployment/standard-deployment.md b/docs/install/cluster-deployment/standard-deployment.md index 94c0bd2364..aa10c1f064 100644 --- a/docs/install/cluster-deployment/standard-deployment.md +++ b/docs/install/cluster-deployment/standard-deployment.md @@ -369,7 +369,7 @@ The configuration file for BE is in the "conf" directory under the BE deployment 1. Configure Java environment Starting from version 1.2, Doris supports Java UDF (User-Defined Function), and BE relies on the Java environment. You need to configure the `JAVA_HOME` environment variable in the operating system beforehand or specify the Java environment variable in the BE configuration file. ```SQL -## Modify Java environment variable in be/be.conf +## Modify Java environment variable in be/conf/be.conf JAVA_HOME = <your-java-home-path> ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/quick-start.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/quick-start.md index ce17bfc217..953d5bdf95 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/quick-start.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/get-starting/quick-start.md @@ -54,7 +54,7 @@ server1:~ doris$ mv apache-doris-2.0.3-bin-x64 apache-doris ### 配置 FE -FE 的配置文件为 apache-doris/fe/fe.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持单机快速体验。 +FE 的配置文件为 apache-doris/fe/conf/fe.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持单机快速体验。 ```Plain # 增加 JAVA_HOME 配置,指向 JDK8 的运行环境。假如我们 JDK8 位于 /home/doris/jdk8, 则设置如下 @@ -78,7 +78,7 @@ server1:apache-doris/fe doris$ ./bin/start_fe.sh --daemon ### 配置 BE -BE 的配置文件为 apache-doris/be/be.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持我们的快速体验。 +BE 的配置文件为 apache-doris/be/conf/be.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持我们的快速体验。 ```Plain # 增加 JAVA_HOME 配置,指向 JDK8 的运行环境。假如我们 JDK8 位于 /home/doris/jdk8, 则设置如下 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/install/cluster-deployment/standard-deployment.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/install/cluster-deployment/standard-deployment.md index ad77bca143..709a928dc3 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/install/cluster-deployment/standard-deployment.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/install/cluster-deployment/standard-deployment.md @@ -395,7 +395,7 @@ BE 的配置文件在 BE 部署路径下的 conf 目录中,启动 FE 节点前 从 1.2 版本开始 Doris 支持 Java UDF 函数,BE 依赖于 Java 环境。需要预先配置操作系统 `JAVA_HOME` 环境变量,或者在 BE 配置文件中指定 Java 环境变量。 ```sql -## 修改 be/be.conf 的 Java 环境变量 +## 修改 be/conf/be.conf 的 Java 环境变量 JAVA_HOME = <your-java-home-path> ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/get-starting/quick-start.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/get-starting/quick-start.md index 1009bf448c..e6bbff247d 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/get-starting/quick-start.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/get-starting/quick-start.md @@ -54,7 +54,7 @@ server1:~ doris$ mv apache-doris-2.0.3-bin-x64 apache-doris ### 配置 FE -FE 的配置文件为 apache-doris/fe/fe.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持单机快速体验。 +FE 的配置文件为 apache-doris/fe/conf/fe.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持单机快速体验。 ```Plain # 增加 JAVA_HOME 配置,指向 JDK8 的运行环境。假如我们 JDK8 位于 /home/doris/jdk8, 则设置如下 @@ -78,7 +78,7 @@ server1:apache-doris/fe doris$ ./bin/start_fe.sh --daemon ### 配置 BE -BE 的配置文件为 apache-doris/be/be.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持我们的快速体验。 +BE 的配置文件为 apache-doris/be/conf/be.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持我们的快速体验。 ```Plain # 增加 JAVA_HOME 配置,指向 JDK8 的运行环境。假如我们 JDK8 位于 /home/doris/jdk8, 则设置如下 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/install/cluster-deployment/standard-deployment.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/install/cluster-deployment/standard-deployment.md index 33fcb0ab6b..657168cc9b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/install/cluster-deployment/standard-deployment.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/install/cluster-deployment/standard-deployment.md @@ -395,7 +395,7 @@ BE 的配置文件在 BE 部署路径下的 conf 目录中,启动 FE 节点前 从 1.2 版本开始 Doris 支持 Java UDF 函数,BE 依赖于 Java 环境。需要预先配置操作系统 `JAVA_HOME` 环境变量,或者在 BE 配置文件中指定 Java 环境变量。 ```sql -## 修改 be/be.conf 的 Java 环境变量 +## 修改 be/conf/be.conf 的 Java 环境变量 JAVA_HOME = <your-java-home-path> ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/get-starting/quick-start.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/get-starting/quick-start.md index 764ae18712..9a3190f423 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/get-starting/quick-start.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/get-starting/quick-start.md @@ -54,7 +54,7 @@ server1:~ doris$ mv apache-doris-2.0.3-bin-x64 apache-doris ### 配置 FE -FE 的配置文件为 apache-doris/fe/fe.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持单机快速体验。 +FE 的配置文件为 apache-doris/fe/conf/fe.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持单机快速体验。 ```Plain # 增加 JAVA_HOME 配置,指向 JDK8 的运行环境。假如我们 JDK8 位于 /home/doris/jdk8, 则设置如下 @@ -78,7 +78,7 @@ server1:apache-doris/fe doris$ ./bin/start_fe.sh --daemon ### 配置 BE -BE 的配置文件为 apache-doris/be/be.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持我们的快速体验。 +BE 的配置文件为 apache-doris/be/conf/be.conf。下面是一些需要关注的核心配置。除了 JAVA_HOME, 需要手动增加,并且指向你的 JDK8 运行环境。其它配置,可以使用默认值,即可支持我们的快速体验。 ```Plain # 增加 JAVA_HOME 配置,指向 JDK8 的运行环境。假如我们 JDK8 位于 /home/doris/jdk8, 则设置如下 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/install/cluster-deployment/standard-deployment.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/install/cluster-deployment/standard-deployment.md index 33fcb0ab6b..657168cc9b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/install/cluster-deployment/standard-deployment.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/install/cluster-deployment/standard-deployment.md @@ -395,7 +395,7 @@ BE 的配置文件在 BE 部署路径下的 conf 目录中,启动 FE 节点前 从 1.2 版本开始 Doris 支持 Java UDF 函数,BE 依赖于 Java 环境。需要预先配置操作系统 `JAVA_HOME` 环境变量,或者在 BE 配置文件中指定 Java 环境变量。 ```sql -## 修改 be/be.conf 的 Java 环境变量 +## 修改 be/conf/be.conf 的 Java 环境变量 JAVA_HOME = <your-java-home-path> ``` diff --git a/versioned_docs/version-2.0/get-starting/quick-start.md b/versioned_docs/version-2.0/get-starting/quick-start.md index 6aaa524c2f..73af4a0f20 100644 --- a/versioned_docs/version-2.0/get-starting/quick-start.md +++ b/versioned_docs/version-2.0/get-starting/quick-start.md @@ -54,7 +54,7 @@ server1:~ doris$ mv apache-doris-2.0.3-bin-x64 apache-doris ### Configure FE -Go to the `apache-doris/fe/fe.conf` file for FE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. +Go to the `apache-doris/fe/conf/fe.conf` file for FE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. ```Shell # Add JAVA_HOME and point it to your JDK8 runtime environment. Suppose your JDK8 is at /home/doris/jdk8, set it as follows: @@ -78,7 +78,7 @@ server1:apache-doris/fe doris$ ./bin/start_fe.sh --daemon ### Configure BE -Go to the `apache-doris/be/be.conf` file for BE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. +Go to the `apache-doris/be/conf/be.conf` file for BE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. ```Shell # Add JAVA_HOME and point it to your JDK8 runtime environment. Suppose your JDK8 is at /home/doris/jdk8, set it as follows: diff --git a/versioned_docs/version-2.0/install/cluster-deployment/standard-deployment.md b/versioned_docs/version-2.0/install/cluster-deployment/standard-deployment.md index 1633037fd0..7c169c150e 100644 --- a/versioned_docs/version-2.0/install/cluster-deployment/standard-deployment.md +++ b/versioned_docs/version-2.0/install/cluster-deployment/standard-deployment.md @@ -368,7 +368,7 @@ The configuration file for BE is in the "conf" directory under the BE deployment 1. Configure Java environment Starting from version 1.2, Doris supports Java UDF (User-Defined Function), and BE relies on the Java environment. You need to configure the `JAVA_HOME` environment variable in the operating system beforehand or specify the Java environment variable in the BE configuration file. ```SQL -## Modify Java environment variable in be/be.conf +## Modify Java environment variable in be/conf/be.conf JAVA_HOME = <your-java-home-path> ``` diff --git a/versioned_docs/version-2.1/get-starting/quick-start.md b/versioned_docs/version-2.1/get-starting/quick-start.md index a9f20b343a..ad3b892ad1 100644 --- a/versioned_docs/version-2.1/get-starting/quick-start.md +++ b/versioned_docs/version-2.1/get-starting/quick-start.md @@ -54,7 +54,7 @@ server1:~ doris$ mv apache-doris-2.0.3-bin-x64 apache-doris ### Configure FE -Go to the `apache-doris/fe/fe.conf` file for FE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. +Go to the `apache-doris/fe/conf/fe.conf` file for FE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. ```Shell # Add JAVA_HOME and point it to your JDK8 runtime environment. Suppose your JDK8 is at /home/doris/jdk8, set it as follows: @@ -78,7 +78,7 @@ server1:apache-doris/fe doris$ ./bin/start_fe.sh --daemon ### Configure BE -Go to the `apache-doris/be/be.conf` file for BE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. +Go to the `apache-doris/be/conf/be.conf` file for BE configuration. Below are some key configurations to pay attention to. Add JAVA_HOME manually and point it to your JDK8 runtime environment. For other configurations, you can go with the default values for a quick single-machine experience. ```Shell # Add JAVA_HOME and point it to your JDK8 runtime environment. Suppose your JDK8 is at /home/doris/jdk8, set it as follows: diff --git a/versioned_docs/version-2.1/install/cluster-deployment/standard-deployment.md b/versioned_docs/version-2.1/install/cluster-deployment/standard-deployment.md index 64d2896eb6..635d6d3a9a 100644 --- a/versioned_docs/version-2.1/install/cluster-deployment/standard-deployment.md +++ b/versioned_docs/version-2.1/install/cluster-deployment/standard-deployment.md @@ -369,7 +369,7 @@ The configuration file for BE is in the "conf" directory under the BE deployment 1. Configure Java environment Starting from version 1.2, Doris supports Java UDF (User-Defined Function), and BE relies on the Java environment. You need to configure the `JAVA_HOME` environment variable in the operating system beforehand or specify the Java environment variable in the BE configuration file. ```SQL -## Modify Java environment variable in be/be.conf +## Modify Java environment variable in be/conf/be.conf JAVA_HOME = <your-java-home-path> ``` --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org