docker pentaho mysql驱动问题

时间:2017-05-30 15:31:31

标签: mysql docker jdbc pentaho drivers

我正在Windows 10上使用Docker创建一个pentaho和mysql映像,它将作为我使用docker network create定义的网络上的容器运行。

目的是(作为第一步)我将运行带有pan.sh的.KTR文件,该文件将从.csv文件读取数据库连接参数并将它们放入环境中;

Get the DB connection parameters

接下来,第二个.KTR使用上述环境参数检查数据库是否存在;

Check DB exists

问题是当我使用docker-compose“旋转”我的项目时,第二步失败并且找不到驱动程序问题。我在pentaho容器的lib目录中放置了我需要的驱动程序,但我猜这不正确?

最终,目的是进行转换,从OpenEdge数据库读取的数据通过pentaho中的一系列步骤处理并写入mysql数据库。

这是支持文件; Dockerfile;

FROM java:8-jre

MAINTAINER M Beynon

# Set required environment vars
ENV PDI_RELEASE=7.1 \
    PDI_VERSION=7.1.0.0-12 \
    CARTE_PORT=8181 \
    PENTAHO_JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 \
    PENTAHO_HOME=/home/pentaho

# Create user
RUN mkdir ${PENTAHO_HOME} && \
    groupadd -r pentaho && \
    useradd -s /bin/bash -d ${PENTAHO_HOME} -r -g pentaho pentaho && \
    chown pentaho:pentaho ${PENTAHO_HOME}

# Add files
RUN mkdir $PENTAHO_HOME/docker-entrypoint.d

COPY docker-entrypoint.sh $PENTAHO_HOME/scripts/

RUN chown -R pentaho:pentaho $PENTAHO_HOME 

RUN apt-get update && apt-get install -y libwebkitgtk-1.0-0

RUN apt-get update && apt-get install -y dos2unix

RUN dos2unix $PENTAHO_HOME/scripts/docker-entrypoint.sh && apt-get --purge remove -y dos2unix && rm -rf /var/lib/apt/lists/*

# Switch to the pentaho user
USER pentaho

# Download PDI
RUN /usr/bin/wget \
    --progress=dot:giga \
    http://downloads.sourceforge.net/project/pentaho/Data%20Integration/${PDI_RELEASE}/pdi-ce-${PDI_VERSION}.zip \
    -O /tmp/pdi-ce-${PDI_VERSION}.zip && \
    /usr/bin/unzip -q /tmp/pdi-ce-${PDI_VERSION}.zip -d  $PENTAHO_HOME && \
    rm /tmp/pdi-ce-${PDI_VERSION}.zip


ENV KETTLE_HOME=$PENTAHO_HOME/data-integration \
    PATH=$KETTLE_HOME:$PATH

WORKDIR $KETTLE_HOME

ENTRYPOINT ["../scripts/docker-entrypoint.sh"]

入口点;

#!/bin/bash
# based on https://github.com/aloysius-lim/docker-pentaho-di/blob/master/docker/Dockerfile

#exit script if any command fails (non-zero value)
set -e

cd resources
cp mysql-connector-java-5.1.42-bin.jar ../lib/
cp PROGRESS_DATADIRECT_JDBC_OE_ALL.jar ../lib
cd ../

echo 'Drivers copied!'
echo ''
echo 'Running transformation!'

#run a transformation (get db credentials)
./pan.sh -file=resources/Read-DBs.ktr

#run a transformation (does the db exist)
./pan.sh -file=resources/GoldBi-Exists.ktr

#redirect input variables
exec "$@"

Docker撰写文件;

version: "2"
services:
  db:
    image: mysql:latest 
    networks:
      - my-pdi-network
    environment:
      - MYSQL_ROOT_PASSWORD=tbitter
      - MYSQL_DATABASE=mysql-db
    ports:
      - "3307:3306"
    volumes:
      - ./goldbi:/var/lib/mysql
  pdi:
    image: my-pdi-image:latest
    networks:
      - my-pdi-network
    volumes:
      - C:\Docker-Pentaho\resource:/home/pentaho/data-integration/resources     

networks:
  my-pdi-network:

The error coming from pentaho;
2017/05/30 15:28:56 - Table exists.0 - Error occurred while trying to connect to the database
2017/05/30 15:28:56 - Table exists.0 -
2017/05/30 15:28:56 - Table exists.0 - Error connecting to database: (using class org.gjt.mm.mysql.Driver)
2017/05/30 15:28:56 - Table exists.0 - Communications link failure
2017/05/30 15:28:56 - Table exists.0 -
2017/05/30 15:28:56 - Table exists.0 - The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.

非常感谢。

P.S。有没有人知道如何阻止构建重建所有内容,即使它只是对dockerfile或entrypoint文件的一个小改动?

1 个答案:

答案 0 :(得分:0)

我似乎找到了解决方案; 有两个问题。第一个似乎是第一次转换中设置的ENV变量没有在第二次变换中使用。第二个是第二次转换中的主机名错误(DB-Exists)。应该是' db'这是在docker-compose文件中为容器指定的名称。由于包含都在我指定的自定义网络上运行,因此它们可以自动进行通话'彼此通过他们的服务名称...反向DNS?