This is an automated email from the ASF dual-hosted git repository.
chufenggao pushed a commit to branch 3.0.2-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/3.0.2-prepare by this push:
new 9b5de6dc50 [3.0.2-prepare][cherry-pick] Add chmod command after unzip
DS tar.gz (#12752)
9b5de6dc50 is described below
commit 9b5de6dc503a981f6bb939c9d6e23bb9a44a0c6a
Author: Eric Gao <[email protected]>
AuthorDate: Mon Nov 7 12:06:13 2022 +0800
[3.0.2-prepare][cherry-pick] Add chmod command after unzip DS tar.gz
(#12752)
Co-authored-by: Yann Ann <[email protected]>
---
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 b01602e1dd..ccd116a7a9 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 ff1c5755ee..27f6a32f5b 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 3856f884c7..f962a96a24 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
```