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/10/07 05:07:45 UTC

[dolphinscheduler] branch dev updated: [Doc] Add chmod command after unzip DS tar.gz (#12210)

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 7beff83e9f [Doc] Add chmod command after unzip DS tar.gz (#12210)
7beff83e9f is described below

commit 7beff83e9f0d187fc0f1e6f451b6acae5aea9f3a
Author: Yann Ann <29...@qq.com>
AuthorDate: Fri Oct 7 13:07:36 2022 +0800

    [Doc] Add chmod command after unzip DS tar.gz (#12210)
---
 docs/docs/en/guide/installation/pseudo-cluster.md | 1 +
 docs/docs/en/guide/installation/standalone.md     | 1 +
 docs/docs/zh/guide/installation/pseudo-cluster.md | 1 +
 docs/docs/zh/guide/installation/standalone.md     | 1 +
 4 files changed, 4 insertions(+)

diff --git a/docs/docs/en/guide/installation/pseudo-cluster.md b/docs/docs/en/guide/installation/pseudo-cluster.md
index 4bd063f329..7e180d624f 100644
--- a/docs/docs/en/guide/installation/pseudo-cluster.md
+++ b/docs/docs/en/guide/installation/pseudo-cluster.md
@@ -37,6 +37,7 @@ sed -i 's/Defaults    requirett/#Defaults    requirett/g' /etc/sudoers
 
 # Modify directory permissions and grant permissions for user you created above
 chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin
+chmod -R 755 apache-dolphinscheduler-*-bin
 ```
 
 > **_NOTICE:_**
diff --git a/docs/docs/en/guide/installation/standalone.md b/docs/docs/en/guide/installation/standalone.md
index d35f8146b9..30ee2a138f 100644
--- a/docs/docs/en/guide/installation/standalone.md
+++ b/docs/docs/en/guide/installation/standalone.md
@@ -23,6 +23,7 @@ There is a standalone startup script in the binary compressed package, which can
 ```shell
 # Extract and start Standalone Server
 tar -xvzf apache-dolphinscheduler-*-bin.tar.gz
+chmod -R 755 apache-dolphinscheduler-*-bin
 cd apache-dolphinscheduler-*-bin
 bash ./bin/dolphinscheduler-daemon.sh start standalone-server
 ```
diff --git a/docs/docs/zh/guide/installation/pseudo-cluster.md b/docs/docs/zh/guide/installation/pseudo-cluster.md
index 12e0366e19..2a24eae5b1 100644
--- a/docs/docs/zh/guide/installation/pseudo-cluster.md
+++ b/docs/docs/zh/guide/installation/pseudo-cluster.md
@@ -37,6 +37,7 @@ sed -i 's/Defaults    requirett/#Defaults    requirett/g' /etc/sudoers
 
 # 修改目录权限,使得部署用户对二进制包解压后的 apache-dolphinscheduler-*-bin 目录有操作权限
 chown -R dolphinscheduler:dolphinscheduler apache-dolphinscheduler-*-bin
+chmod -R 755 apache-dolphinscheduler-*-bin
 ```
 
 > **_注意:_**
diff --git a/docs/docs/zh/guide/installation/standalone.md b/docs/docs/zh/guide/installation/standalone.md
index 8456b96505..82af53e2ab 100644
--- a/docs/docs/zh/guide/installation/standalone.md
+++ b/docs/docs/zh/guide/installation/standalone.md
@@ -21,6 +21,7 @@ Standalone 仅适用于 DolphinScheduler 的快速体验.
 ```shell
 # 解压并运行 Standalone Server
 tar -xvzf apache-dolphinscheduler-*-bin.tar.gz
+chmod -R 755 apache-dolphinscheduler-*-bin
 cd apache-dolphinscheduler-*-bin
 bash ./bin/dolphinscheduler-daemon.sh start standalone-server
 ```