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/02/08 08:09:42 UTC

[GitHub] [incubator-dolphinscheduler] wistwill opened a new issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

wistwill opened a new issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732


   使用源码方式docker构建项目创建oracle数据源失败问题
   
   使用官方文档https://dolphinscheduler.apache.org/zh-cn/docs/1.3.4/user_doc/docker-deployment.html中以 docker-compose 的方式启动(推荐)构建项目后,创建oracle11g数据源会失败。
   
   
   


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] chengshiwen commented on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
chengshiwen commented on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-774980405


   @wistwill Because of the commercial license, we cannot directly use the driver and client of MySQL and Orcal. 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


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] chengshiwen commented on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
chengshiwen commented on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-774986450


   As for MySQL, you need to download [mysql-connector-java-5.1.49.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/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
   ```
   2. Build the image


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] chengshiwen edited a comment on issue #4732: [Question] How to solve the problem of using source mode docker to build project and create Oracle data source failure

Posted by GitBox <gi...@apache.org>.
chengshiwen edited a comment on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-774986450


   As for MySQL, you need to download [mysql-connector-java-5.1.49.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/5.1.49/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
   ```
   2. Build the image


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] chengshiwen edited a comment on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
chengshiwen edited a comment on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-774980405


   @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


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] dailidong removed a comment on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
dailidong removed a comment on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-778124585


   > @wistwill Because of the commercial license, we cannot directly use the driver and client of MySQL and Orcal. 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
   +1
   please update/add title and description in English, thx


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] dailidong commented on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
dailidong commented on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-778124773


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


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] chengshiwen commented on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
chengshiwen commented on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-774991328


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


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] chengshiwen edited a comment on issue #4732: [Question] How to solve the problem of using source mode docker to build project and create Oracle data source failure

Posted by GitBox <gi...@apache.org>.
chengshiwen edited a comment on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-774991328


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


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] dailidong commented on issue #4732: 使用源码方式docker构建项目创建oracle数据源失败问题

Posted by GitBox <gi...@apache.org>.
dailidong commented on issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732#issuecomment-778124585


   > @wistwill Because of the commercial license, we cannot directly use the driver and client of MySQL and Orcal. 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
   +1
   please update/add title and description in English, thx


----------------------------------------------------------------
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.

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



[GitHub] [incubator-dolphinscheduler] dailidong closed issue #4732: [Question] How to solve the problem of using source mode docker to build project and create Oracle data source failure

Posted by GitBox <gi...@apache.org>.
dailidong closed issue #4732:
URL: https://github.com/apache/incubator-dolphinscheduler/issues/4732


   


----------------------------------------------------------------
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.

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