Giter Club home page Giter Club logo

docker-pentaho's Introduction

Pentaho - Rapid Deployment with Docker

##Pentaho Pentaho addresses the barriers that block your organization's ability to get value from all your data. The platform simplifies preparing and blending any data and includes a spectrum of tools to easily analyze, visualize, explore, report and predict. Open, embeddable and extensible, Pentaho is architected to ensure that each member of your team -- from developers to business users -- can easily translate data into value.

##Docker Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications. Consisting of Docker Engine, a portable, lightweight runtime and packaging tool, and Docker Hub, a cloud service for sharing applications and automating workflows, Docker enables apps to be quickly assembled from components and eliminates the friction between development, QA, and production environments. As a result, IT can ship faster and run the same app, unchanged, on laptops, data center VMs, and any cloud.

Install Docker

###Ubuntu Trusty 14.04 (LTS) (64-bit) Ubuntu Trusty comes with a 3.13.0 Linux kernel, and a docker.io package which installs all its prerequisites from Ubuntu's repository.

Note: Ubuntu (and Debian) contain a much older KDE3/GNOME2 package called docker, so the package and the executable are called docker.io. Installation To install the latest Ubuntu package (may not be the latest Docker release):

sudo apt-get update
sudo apt-get install docker.io
sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker
sudo sed -i '$acomplete -F _docker docker' /etc/bash_completion.d/docker.io

Others

https://docs.docker.com/installation/

###Running Pentaho with PostgreSQL

git clone https://github.com/wmarinho/docker-postgresql.git
cd docker-postgresql
docker build -t wmarinho/postgresql:9.3 .
docker run --name postgresql -d -p 5432:5432 -d wmarinho/postgresql:9.3
docker run --name pentaho -d -p 8080:8080 -e PGHOST={postgres_hostname} wmarinho/pentaho-biserver:5.1-TRUNK
docker logs -f pentaho

http://localhost:8080

Please see details below

##Pull repository

  • Release: 5.0-TRUNK

sudo docker pull wmarinho/pentaho-biserver:5.0-TRUNK

  • Release: 5.1.0.0

sudo docker pull wmarinho/pentaho-biserver:5.1.0.0

  • Release: 5.1-TRUNK

sudo docker pull wmarinho/pentaho-biserver:5.1-TRUNK

More tags available here

  • Listing images on the host

sudo docker images

sudo docker run -p 8080:8080 -d wmarinho/pentaho-biserver:5.0-TRUNK

sudo docker run -p 8081:8080 -d wmarinho/pentaho-biserver:5.1-TRUNK

  • Make sure your container is running

$ sudo docker ps

  • Accessing Pentaho

http://localhost:8080

http://localhost:8081

  • Stop containers

sudo docker stop <CONTAINER_ID>

  • Start containers

sudo docker start <CONTAINER_ID>

  • Running an interactive container

sudo docker run -i -t wmarinho/pentaho-biserver:5.1-TRUNK /bin/bash

  • Now we can easily run multiples containers and versions of Pentaho using only one server

##Building your image

###Clone and edit Dockerfile template

sudo git clone https://github.com/wmarinho/docker-pentaho.git
cd docker-pentaho
sudo vi Dockerfile
sudo docker build -t myimage/pentaho:mytag .
sudo docker images
sudo docker run -p 8080:8080 -d myimage/pentaho:mytag

Or run in interactive mode

sudo docker run -p 8080:8080 -i -t myimage/pentaho:mytag /bin/bash

Please see [Dockerfile Reference] (https://docs.docker.com/reference/builder/) for additional information.

##Docker Hub account

You can create a docker account and push your images. Please see Working with Docker Hub

docker-pentaho's People

Contributors

ildanno avatar techgaun avatar wmarinho avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docker-pentaho's Issues

What's the username and password?

When i execute the below command:
docker run -d -p 8181:8181 docker.io/wmarinho/pentaho-kettle,
then i access localhost:8181,
Prompt for user name and password
What's the username and password?

can't run pentaho/biserver:6.1 with docker 19.03.6

docker version details
Client:
Version: 19.03.6
API version: 1.40
Go version: go1.12.17
Git commit: 369ce74a3c
Built: Fri Feb 28 23:45:43 2020
OS/Arch: linux/amd64
Experimental: false

Server:
Engine:
Version: 19.03.6
API version: 1.40 (minimum version 1.12)
Go version: go1.12.17
Git commit: 369ce74a3c
Built: Wed Feb 19 01:06:16 2020
OS/Arch: linux/amd64
Experimental: false
containerd:
Version: 1.3.3-0ubuntu1~18.04.2
GitCommit:
runc:
Version: spec: 1.0.1-dev
GitCommit:
docker-init:
Version: 0.18.0
GitCommit:

the issue is

docker: layers from manifest don't match image configuration

setup_postgresql fails, nc command not found

When I try running this image with an external postgres server I see the following error

/opt/pentaho/scripts/setup_postgresql.sh: 28: /opt/pentaho/scripts/setup_postgresql.sh: nc: not found

If I shell into the container and try running nc, it is not found

Mnaging plugins

Hello There,

Thank you for this wonderful docker image, very helpful.

However, this is more of a question on how you prefer to manage plugins. Another dockerfile that extends this one and installed plugins there ?

Login does not work on HTTPS

We have had Pentaho running nicely from this image.

Recently installed nginx and https.

Now there is an issue with the login process. The user gets the failed login message. But if they then go directly to Pentaho it has them logged in. Also fails to return to the login screen if incorrect credentials are used.

My experts tell me the setup of nginx looks good. But function bounceToReturnLocation() is using http when it should be https?

nginx configuration
location /pentaho {
proxy_pass http://localhost:8181;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}

login page
https://domain.com/pentaho/Login

function bounceToReturnLocation() {
    // pass
    var locale = document.login.locale.value;

    var returnLocation = 'http\x3A\x2F\x2Fdomain.com\x2Fpentaho\x2Findex.jsp';

    if (returnLocation != '' && returnLocation != null) {
      window.location.href = returnLocation;
    } else {
      window.location.href = window.location.href.replace("Login", "Home") + "?locale=" + locale;
    }

}

error
https://monosnap.com/file/ASomSwBmdC61GAVrsGhZAUTGEM4BEB

How can I run with Mysql?

I have a MySQL in my host machine. How can I create a connection between pentaho docker and MySQL?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.