Giter VIP home page Giter VIP logo

pentaho-puppet's Introduction

pentaho module

Overview

This module can install and configure the open source Pentaho BI suite on a Debian-based system.

Example

# This should create a usable server with the default accounts/data
node pentahodemo {
  # this is both a MySQL server and a BI (tomcat) server
  tag('mysqlserver')
  tag('biserver')
  # set up configuration shared between classes
  class {
    'pentaho::config':
      hibernate_user     => 'hibuser',
      hibernate_password => 'password',
      quartz_user        => 'pentaho_user',
      quartz_password    => 'password',
      publish_password   => 'publish',
      database_host      => 'localhost'
  }
  # install MySQL and set a password for the root user
  class { 'pentaho::database':
      admin_password => 'rootytooty';
  }
  # Install the BI Server and a recent version of ctools (including saiku)
  class {
    'pentaho::biserver':
      admin_user     => 'admin',
      admin_password => 'password';
    'pentaho::ctools':;
  }
  # Setup config file, hibernate and quartz databases, and default user groups (authorities)
  class {
    'pentaho::biserver::config_files':;
    'pentaho::biserver::system_databases':;
    'pentaho::biserver::default_authorities':;
  }
  # Set up the sample data
  class {
    'pentaho::demos::datasource':
      username => 'sampledata',
      password => 'sampledata';
    'pentaho::demos::solution':;
    'pentaho::demos::catalogs':;
  }
  # Start up the BI server
  class {
    'pentaho::biserver::run':;
  }
  # create an admin user to log in
  pentaho::biserver::user{ 'admin user':
    username => 'joe',
    password => 'password',
    authorities => ['Authenticated', 'Admin']
  }
}

pentaho-puppet's People

Contributors

cwarden avatar

Watchers

 avatar  avatar

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.