Tianqi-Dotes commented on a change in pull request #437: URL: https://github.com/apache/dolphinscheduler-website/pull/437#discussion_r710784161
########## File path: blog/en-us/DS_run_in_windows.md ########## @@ -0,0 +1,102 @@ +# Set-up DolphinScheduler Development Environment and Run Source Code on Windows OS + +1. ## Download Source Code + + Official Website:https://dolphinscheduler.apache.org/en-us/index.html + + GitHub Repository:https://github.com/apache/dolphinscheduler.git + + Here we use 1.3.8-release tag. + +2. ## Install Zookeeper on Windows + + 1. Download zookeeper https://www.apache.org/dyn/closer.lua/zookeeper/zookeeper-3.6.3/apache-zookeeper-3.6.3-bin.tar.gz + + 2. Unzip 'apache-zookeeper-3.6.3-bin.tar.gz' + + 3. Create 'data' and 'log' folder under zookeeper directory + + 4. Copy the 'zoo_sample.cfg' file in the 'conf' directory, rename it to 'zoo.cfg' and modify the data and log directory settings: + + ```shell + dataDir=I:\\setup\\apache-zookeeper-3.6.3-bin\\data + dataLogDir=I:\\setup\\apache-zookeeper-3.6.3-bin\\log + ``` + + 5. Run the 'zkServer.cmd' in the bin directory, then run 'zkCli.cmd' to check the running status. Check zookeeper node information under root directory which shows success installation. + +3. ## Set-up Backend Environment + + 1. Create MYSQL database for debugging, named as 'dolphinschedulerTest' + + 2. Import Maven project to IDEA, find 'pom.xml' under the root directory and modify the scope of 'mysql-connector-java' to compile + + 3. Modify the 'datasource.properties' of module 'dolphinscheduler-dao' + + ~~~java Review comment: Thanks, have changed to no type (normal) code snippet ########## File path: blog/en-us/DS_run_in_windows.md ########## @@ -0,0 +1,102 @@ +# Set-up DolphinScheduler Development Environment and Run Source Code on Windows OS + +1. ## Download Source Code + + Official Website:https://dolphinscheduler.apache.org/en-us/index.html + + GitHub Repository:https://github.com/apache/dolphinscheduler.git + + Here we use 1.3.8-release tag. + +2. ## Install Zookeeper on Windows + + 1. Download zookeeper https://www.apache.org/dyn/closer.lua/zookeeper/zookeeper-3.6.3/apache-zookeeper-3.6.3-bin.tar.gz + + 2. Unzip 'apache-zookeeper-3.6.3-bin.tar.gz' + + 3. Create 'data' and 'log' folder under zookeeper directory + + 4. Copy the 'zoo_sample.cfg' file in the 'conf' directory, rename it to 'zoo.cfg' and modify the data and log directory settings: + + ```shell Review comment: done -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
