You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2021/07/25 15:37:57 UTC

[GitHub] [dolphinscheduler-website] CalvinKirs commented on a change in pull request #409: [SOC] Dev run in Windows

CalvinKirs commented on a change in pull request #409:
URL: https://github.com/apache/dolphinscheduler-website/pull/409#discussion_r676163747



##########
File path: docs/zh-cn/dev/user_doc/dev_run.md
##########
@@ -0,0 +1,113 @@
+#### 搭建 dev 分支开发环境
+
+>    参考:[DolphinScheduler 在 Windows 本地搭建开发环境,源码启动](https://dolphinscheduler.apache.org/zh-cn/blog/DS_run_in_windows.html)
+
+1.   **下载源码**
+
+     GitHub :https://github.com/apache/dolphinscheduler
+
+     ```shell
+     mkdir dolphinscheduler
+     cd dolphinscheduler
+     git clone git@github.com:apache/dolphinscheduler.git
+     ```
+
+     这里选用 dev 分支。
+
+2.   **Windows 安装 zk**
+
+     1.   下载 zk https://www.apache.org/dyn/closer.lua/zookeeper/zookeeper-3.6.3/apache-zookeeper-3.6.3-bin.tar.gz
+
+     2.   解压 apache-zookeeper-3.6.3-bin.tar.gz
+
+     3.   在 zk 的目录下新建 zkData、zkLog文件夹
+
+     4.   将 conf 目录下的 zoo_sample.cfg 文件,复制一份,重命名为 zoo.cfg,修改其中数据和日志的配置,如:
+
+          ```shell
+          dataDir=D:\\code\\apache-zookeeper-3.6.3-bin\\zkData ## 此处使用绝对路径
+          dataLogDir=D:\\code\\apache-zookeeper-3.6.3-bin\\zkLog
+          ```
+
+     5.   在 bin 中运行 zkServer.cmd,然后运行 zkCli.cmd 查看 zk 运行状态,可以查看 zk 节点信息即代表安装成功。
+
+3.   **搭建后端环境**

Review comment:
       For the database, MySQL is not required, users can choose another(PGSQL). Suggest changes to related words




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org