Dolphinscheduler: [Question] How to solve the problem of using source mode docker to build project and create Oracle data source failure

Created on 8 Feb 2021  ·  4Comments  ·  Source: apache/dolphinscheduler

Describe the question:
use source mode docker to build project and create Oracle data source failure.

Which version of DolphinScheduler:
-[apache-dolphinscheduler-incubating-1.3.4]

Additional context
Using official documents https://dolphinscheduler.apache.org/zh-cn/docs/1.3.4/user_ doc/docker- deployment.html After the build project is started (recommended) in docker compose mode, the creation of Oracle11g data source will fail.

FAQ

Most helpful comment

@wistwill Because of the commercial license, we cannot directly use the driver and client of MySQL and Oracle. If you want to use Oracle, you can build a new image based on our apache/dolphinscheduler image.

by the way , please update/add title and description in English

All 4 comments

@wistwill Because of the commercial license, we cannot directly use the driver and client of MySQL and Oracle. If you want to use Oracle, you can build a new image based on our apache/dolphinscheduler image.

by the way , please update/add title and description in English

As for MySQL, you need to download mysql-connector-java-5.1.49.jar

  1. Create your Dockerfile
FROM apache/dolphinscheduler:latest
COPY mysql-connector-java-5.1.49.jar /opt/dolphinscheduler/lib
RUN apk add --update --no-cache mysql-client
  1. Build the image

As for Oracle in Datasource, you only need to download the Oracle driver and put it in the /opt/dolphinscheduler/lib directory

+1
please update/add title and description in English, thx

Was this page helpful?
0 / 5 - 0 ratings