- Instalar Postgresql
- Instalar JAVA
- Baixar o Pentaho
Configurando o Postgre
su - postgres
postgres@biserver:/> psql
postgres=# CREATE USER hibuser password 'password';
CREATE ROLE
postgres=# create DATABASE hibernate owner hibuser;
CREATE DATABASE
postgres=# CREATE USER pentaho_user password 'password';
CREATE ROLE
postgres=# create DATABASE quartz owner pentaho_user;
CREATE DATABASE
postgres=# create DATABASE sampledata WITH ENCODING 'SQL_ASCII' owner pentaho_user;
CREATE DATABASE
Referencia: http://www.flaviotorres.com.br/fnt/artigos/pentaho_35_postgresql.php