#Using docker-compose to Start Server
#下载:https://dlcdn.apache.org/dolphinscheduler/3.1.9/apache-dolphinscheduler-3.1.9-src.tar.gz
$ DOLPHINSCHEDULER_VERSION=3.1.9
$ tar -zxf apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src.tar.gz
# Going to docker-compose's location
# For Mac or Linux users
$ cd apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src/deploy/docker
# For Windows users, you should run command `cd apache-dolphinscheduler-"${DOLPHINSCHEDULER_VERSION}"-src\deploy\docker`# Initialize the database, use profile schema
$ docker-compose --profile schema up -d# start all dolphinscheduler server, use profile all
$ docker-compose --profile all up -dNOTES: It will not only start DolphinScheduler servers but also some others necessary services
like PostgreSQL(with root as user, root as password and dolphinscheduler as database)
and ZooKeeper when starting with docker-compose.
#浏览器登录
http://192.168.31.143:12345/dolphinscheduler/ui
DolphinScheduler 默认的用户和密码分别为 admin 和 dolphinscheduler123