You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zh...@apache.org on 2022/06/27 03:02:25 UTC

[dolphinscheduler] branch dev updated: [doc] Correct installPath when using related path (#10597)

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

zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new cd51a22940 [doc] Correct installPath when using related path (#10597)
cd51a22940 is described below

commit cd51a2294098e91f5f5d3a9c9fb7fc9e488d12aa
Author: Jiajie Zhong <zh...@hotmail.com>
AuthorDate: Mon Jun 27 11:02:19 2022 +0800

    [doc] Correct installPath when using related path (#10597)
    
    correct the doc and add hint to setting
    
    ref: #10511
---
 docs/docs/en/guide/installation/pseudo-cluster.md | 2 +-
 docs/docs/zh/guide/installation/pseudo-cluster.md | 2 +-
 script/env/install_env.sh                         | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/docs/en/guide/installation/pseudo-cluster.md b/docs/docs/en/guide/installation/pseudo-cluster.md
index 61c76e6b1e..5deb735cb6 100644
--- a/docs/docs/en/guide/installation/pseudo-cluster.md
+++ b/docs/docs/en/guide/installation/pseudo-cluster.md
@@ -89,7 +89,7 @@ alertServer="localhost"
 apiServers="localhost"
 
 # DolphinScheduler installation path, it will auto-create if not exists
-installPath="~/dolphinscheduler"
+installPath=~/dolphinscheduler
 
 # Deploy user, use the user you create in section **Configure machine SSH password-free login**
 deployUser="dolphinscheduler"
diff --git a/docs/docs/zh/guide/installation/pseudo-cluster.md b/docs/docs/zh/guide/installation/pseudo-cluster.md
index 68310d868b..a420c76a8b 100644
--- a/docs/docs/zh/guide/installation/pseudo-cluster.md
+++ b/docs/docs/zh/guide/installation/pseudo-cluster.md
@@ -87,7 +87,7 @@ alertServer="localhost"
 apiServers="localhost"
 
 # DolphinScheduler installation path, it will auto-create if not exists
-installPath="~/dolphinscheduler"
+installPath=~/dolphinscheduler
 
 # Deploy user, use the user you create in section **Configure machine SSH password-free login**
 deployUser="dolphinscheduler"
diff --git a/script/env/install_env.sh b/script/env/install_env.sh
index 8b68c0ea00..ebae1c389e 100644
--- a/script/env/install_env.sh
+++ b/script/env/install_env.sh
@@ -49,7 +49,7 @@ alertServer=${alertServer:-"ds3"}
 apiServers=${apiServers:-"ds1"}
 
 # The directory to install DolphinScheduler for all machine we config above. It will automatically be created by `install.sh` script if not exists.
-# Do not set this configuration same as the current path (pwd)
+# Do not set this configuration same as the current path (pwd). Do not add quotes to it if you using related path.
 installPath=${installPath:-"/tmp/dolphinscheduler"}
 
 # The user to deploy DolphinScheduler for all machine we config above. For now user must create by yourself before running `install.sh`