Standalone

Standalone only for quick look for DolphinScheduler.

If you are a green hand and want to experience DolphinScheduler, we recommended you install follow Standalone. If you want to experience more complete functions or schedule large tasks number, we recommended you install follow pseudo-cluster deployment. If you want to using DolphinScheduler in production, we recommended you follow cluster deployment or kubernetes

Note: Standalone only recommends the use of less than 20 workflows, because it uses H2 Database, Zookeeper Testing Server, too many tasks may cause instability

Prepare

  • JDK:Download JDK (1.8+), and configure JAVA_HOME to and PATH variable. You can skip this step, if it already exists in your environment.
  • Binary package: Download the DolphinScheduler binary package at download page

Start DolphinScheduler Standalone Server

Extract and start DolphinScheduler

There is a standalone startup script in the binary compressed package, which can be quickly started after extract. Switch to a user with sudo permission and run the script

  1. # Extract and start Standalone Server
  2. tar -xvzf apache-dolphinscheduler-*-bin.tar.gz
  3. cd apache-dolphinscheduler-*-bin
  4. sh ./bin/dolphinscheduler-daemon.sh start standalone-server

Login DolphinScheduler

The browser access address http://localhost:12345/dolphinscheduler can login DolphinScheduler UI. The default username and password are admin/dolphinscheduler123

start/stop server

The script ./bin/dolphinscheduler-daemon.sh can not only quickly start standalone, but also stop the service operation. All the commands are as follows

  1. # Start Standalone Server
  2. sh ./bin/dolphinscheduler-daemon.sh start standalone-server
  3. # Stop Standalone Server
  4. sh ./bin/dolphinscheduler-daemon.sh stop standalone-server