SlideShare uma empresa Scribd logo
1 de 15
Baixar para ler offline
Instalación Pentaho CentOS | Moisés Araya
[1]
Contenido
Instalación Pentaho CentOS...................................................................................................... 2
Parte 1: Creación de grupo y usuario. ...................................................................................... 2
Parte 2: JAVA.................................................................................................................... 2
Parte 3: MySQL .................................................................................................................. 4
Parte 4: PENTAHO .............................................................................................................. 7
4.1 Crear directorio, copiar instalador y descomprimir. ............................................................. 7
4.2 Inicializar bases de datos para la integración MySQL con Pentaho. ........................................... 7
4.3 Preparar MySQL como repositorio BA. .............................................................................. 8
4.4 Modificar la información del repositorio Jackrabbit............................................................. 9
4.5 Configuración de Tomcat.............................................................................................12
4.6 Iniciar Pentaho .........................................................................................................13
Instalación Pentaho CentOS | Moisés Araya
[2]
Instalación Pentaho CentOS
Parte 1: Creación de grupo y usuario.
Crear usuario y grupo como se muestra.
[root@centos ~]# groupadd -r pentaho
[root@centos ~]# useradd -s /bin/bash pentahousr
[root@centos ~]# passwd pentahousr
Changing password for user pentahousr.
New password:
Retype new password:
passwd: all authentication tokens updated successfully.
[root@centos ~]# gpasswd -a pentahousr pentaho
Adding user pentahousr to group pentaho
[root@centos ~]# chown -R pentahousr:pentaho /opt/pentaho
Parte 2: JAVA
PENTAHO solo es compatible con JDK/JRE SUN u Oracle.
Verificar JAVA
[root@centos ~]# java -version
java version "1.6.0_45"
[root@centos ~]# rpm -e jdk-1.6.0_45-fcs.x86_64
[root@centos ~]# java -version
-bash: /usr/bin/java: No existe el fichero o el directorio
Instalar JDK versión 1.7
[root@centos ~]# rpm -Uvh jdk-7u75-linux-x64.rpm
Preparando... ########################################### [100%]
1:jdk ########################################### [100%]
Unpacking JAR files...
rt.jar...
jsse.jar...
charsets.jar...
tools.jar...
localedata.jar...
jfxrt.jar...
[root@centos ~]# java -version
java version "1.7.0_75"
Java(TM) SE Runtime Environment (build 1.7.0_75-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.75-b04, mixed mode)
Instalación Pentaho CentOS | Moisés Araya
[3]
Configurar variables de entorno.
Editar archivo .bashrc y agregar las líneas.
[pentahousr@centos ~]$ vi .bashrc
export JAVA_HOME=/usr/java/jdk1.7.0_75/
export JRE_HOME=/usr/java/jdk1.7.0_75/jre
export PATH=/usr/java/jdk1.7.0_75/bin:$PATH
Opcionalmente agregar: export PENTAHO_HOME=/opt/pentaho/biserver-ce
Habilitar las variables de entorno para el usuario sin reiniciar.
[pentahousr@centos ~]$ source /home/pentahousr/.bashrc
Verificar las variables de entorno.
[pentahousr@centos ~]$ echo $PATH
/usr/java/jdk1.7.0_75/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/ro
ot/bin
[pentahousr@centos ~]$ echo $JAVA_HOME
/usr/java/jdk1.7.0_75/
Opcionalmente buscar ruta de JAVA.
[pentahousr@centos ~]$ find / -name java
/usr/java
/usr/java/jdk1.7.0_75/jre/bin/java
/usr/java/jdk1.7.0_75/bin/java
/usr/bin/java
/opt/sun/javadb/demo/programs/scores/java
/opt/sun/javadb/demo/programs/vtis/java
/etc/pki/java
Instalación Pentaho CentOS | Moisés Araya
[4]
Parte 3: MySQL
Descargar repositorio e instalar.
[root@centos ~]]# wget http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
--2014-12-12 11:26:40-- http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
Resolviendo dev.mysql.com... 137.254.60.11
. . . .
100%[===================================================================================>] 5.824
--.-K/s in 0,008s
2014-12-12 11:26:41 (693 KB/s) - `mysql-community-release-el6-5.noarch.rpm' saved [5824/5824]
[root@centos ~]]# rpm -i mysql-community-release-el6-5.noarch.rpm
Instalar MySQL Server.
[root@centos ~]]# yum install mysql-community-server
Dependencies Resolved
====================================================================================================
=========================
Package Arch Version Repository
Size
====================================================================================================
=========================
Installing:
mysql-community-server x86_64 5.6.23-2.el6 mysql56-
community 53 M
Installing for dependencies:
mysql-community-client x86_64 5.6.23-2.el6 mysql56-
community 18 M
mysql-community-common x86_64 5.6.23-2.el6 mysql56-
community 307 k
mysql-community-libs x86_64 5.6.23-2.el6 mysql56-
community 1.9 M
Transaction Summary
====================================================================================================
=========================
Install 4 Package(s)
Total download size: 73 M
Installed:
mysql-community-server.x86_64 0:5.6.23-2.el6
Dependency Installed:
mysql-community-client.x86_64 0:5.6.23-2.el6 mysql-community-common.x86_64 0:5.6.23-
2.el6
mysql-community-libs.x86_64 0:5.6.23-2.el6
Complete!
Instalación Pentaho CentOS | Moisés Araya
[5]
Iniciar servicios. (extracto)
[root@centos ~]]# service mysqld start
Iniciando base de datos MySQL: 2014-12-12 12:34:27 0 [Warning] TIMESTAMP with implicit DEFAULT value
is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more
details).
2014-12-12 12:34:27 2700 [Note] InnoDB: Using atomics to ref count buffer pool pages
2014-12-12 12:34:27 2700 [Note] InnoDB: The InnoDB memory heap is disabled
2014-12-12 12:34:27 2700 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2014-12-12 12:34:27 2700 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
. . . . . . .
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h centos.lab password 'new-password'
Alternatively you can run:
/usr/bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at http://shop.mysql.com
Note: new default config file not created.
Please make sure your config file is current
WARNING: Default config file /etc/my.cnf exists on the system
This file will be read by default by the MySQL server
If you do not want to use this, either remove it, or use the
--defaults-file argument to mysqld_safe when starting the server
[ OK ]
Iniciando mysqld: [ OK ]
Configurar inicio de servicio.
[root@centos ~]# chkconfig mysqld on
[root@centos ~]# chkconfig --list mysqld
mysqld 0:desactivado 1:desactivado 2:activo 3:activo 4:activo
5:activo 6:desactivado
[root@centos ~]# netstat -tulpn |grep mysql
tcp 0 0 :::3306 :::* LISTEN 2964/mysqld
Instalación Pentaho CentOS | Moisés Araya
[6]
Configuración segura de MySQL (opcional)
[root@centos]# mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] y
... skipping.
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] y
- Dropping test database...
ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist
... Failed! Not critical, keep moving...
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y
... Success!
All done! If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
Cleaning up...
Instalación Pentaho CentOS | Moisés Araya
[7]
Parte 4: PENTAHO
4.1 Crear directorio, copiar instalador y descomprimir.
[root@centos /]# mkdir /opt/pentaho
[root@centos /]# mv biserver-ce-5.0.1-stable.zip /opt/pentaho/
[root@centos /]# cd /opt/pentaho/
[root@centos pentaho]# chmod +x biserver-ce-5.0.1-stable.zip
[root@centos pentaho]# unzip biserver-ce-5.0.1-stable.zip
4.2 Inicializar bases de datos para la integración MySQL con Pentaho.
Archivos a ejecutar:
 create_jcr_mysql.sql
 create_quartz_mysql.sql
 create_repository_mysql.sql
Conectarse a MySQL y ejecutar scripts como se muestra.
mysql> source /opt/pentaho/biserver-ce/data/mysql5/create_jcr_mysql.sql
Query OK, 1 row affected (0,01 sec)
Query OK, 0 rows affected (0,00 sec)
Query OK, 0 rows affected (0,00 sec)
mysql> source /opt/pentaho/biserver-ce/data/mysql5/create_quartz_mysql.sql
Query OK, 1 row affected (0,00 sec)
Query OK, 0 rows affected (0,01 sec)
Database changed
Query OK, 0 rows affected, 1 warning (0,00 sec)
Query OK, 0 rows affected (0,00 sec)
mysql> source /opt/pentaho/biserver-ce/data/mysql5/create_repository_mysql.sql
Query OK, 1 row affected (0,00 sec)
Database changed
Query OK, 0 rows affected (0,00 sec)
Query OK, 0 rows affected (0,00 sec)
Ver estado de DB.
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| hibernate |
| jackrabbit |
| mysql |
| performance_schema |
| quartz |
+--------------------+
6 rows in set (0,00 sec)
Instalación Pentaho CentOS | Moisés Araya
[8]
4.3 Preparar MySQL como repositorio BA.
Configurar Quartz en MySQL.
[pentahousr@centos]# cd /opt/pentaho/biserver-ce/pentaho-solutions/system/quartz/
[pentahousr@centos]# vi quartz.properties
Modificar según se muestra.
Código original.
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
Código modificado.
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
Guardar y salir.
Configurar parámetros Hibernate para MySQL.
Editar el archivo applicationContext-spring-security-hibernate.properties y modificar según se muestra.
[pentahousr@centos]# cd /opt/pentaho/biserver-ce/pentaho-solutions/system/
[pentahousr@centos]# vi applicationContext-spring-security-hibernate.properties
Código original.
jdbc.driver=org.hsqldb.jdbcDriver
jdbc.url=jdbc:hsqldb:hsql://localhost:9001/hibernate
jdbc.username=hibuser
jdbc.password=password
hibernate.dialect=org.hibernate.dialect.HSQLDialect
Código modificado.
jdbc.driver=org.mysql.jdbcDriver
jdbc.url=jdbc:mysql://localhost:3306/hibernate
jdbc.username=hibuser
jdbc.password=password
hibernate.dialect=org.hibernate.dialect.MySQLDialect
Guardar y salir.
Modificar archivo Hibernate-settings.xml
Editar archivo hibernate-settings.xml ubicado en la ruta /opt/pentaho/biserver-ce/pentaho-
solutions/system/hibernate y modificar según se muestra.
[pentahousr@centos]# cd hibernate/
[pentahousr@centos]# vi hibernate-settings.xml
Código original.
<config-file>system/hibernate/hsql.hibernate.cfg.xml</config-file>
Código modificado.
<config-file>system/hibernate/mysql5.hibernate.cfg.xml</config-file>
Instalación Pentaho CentOS | Moisés Araya
[9]
Revisar configuración archivo mysql5.hibernate.cfg.xml
Editar archivo mysql5.hibernate.cfg.xml ubicado en la ruta /opt/pentaho/biserver-ce/pentaho-
solutions/system/hibernate y verificar que lo datos mostrados son los correctos.
[pentahousr@centos]# vi mysql5.hibernate.cfg.xml
<!-- MySQL Configuration -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">jdbc:mysql://localhost:3306/hibernate</property>
<property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
<property name="connection.username">hibuser</property>
<property name="connection.password">password</property>
<property name="connection.pool_size">10</property>
<property name="show_sql">false</property>
<property name="hibernate.jdbc.use_streams_for_binary">true</property>
4.4 Modificar la información del repositorio Jackrabbit
File System.
Editar el archivo repository.xml en el directorio /opt/pentaho/biserver-ce/pentaho-
solutions/system/jackrabbit y modificar según se indica.
Activar código.
<FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem">
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="fs_repos_"/>
</FileSystem>
Desactivar código.
<!--
<FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
<param name="path" value="${rep.home}/repository"/>
</FileSystem>
-->
Referencia: descomentar de la línea 44 a la 51 y comentar la línea 72 a la 74.
Data Store.
Activar código.
<DataStore class="org.apache.jackrabbit.core.data.db.DbDataStore">
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="databaseType" value="mysql"/>
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="minRecordLength" value="1024"/>
<param name="maxConnections" value="3"/>
<param name="copyWhenReading" value="true"/>
<param name="tablePrefix" value=""/>
<param name="schemaObjectPrefix" value="ds_repos_"/>
</DataStore>
Instalación Pentaho CentOS | Moisés Araya
[10]
Desactivar código.
<!--
<DataStore class="org.apache.jackrabbit.core.data.FileDataStore"/>
-->
Referencia: descomentar de la línea 89 a la 100 y comentar la línea 130.
Configuración de Workspace.
Activar código:
<FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem">
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="fs_ws_"/>
</FileSystem>
Desactivar código:
<!--
<FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
<param name="path" value="${wsp.home}"/>
</FileSystem>
-->
Referencia: descomentar de la línea 198 a la 205 y comentar de la línea 226 a la 228.
Configurar el administrador de persistencia del Workspace
Activar código.
<PersistenceManager
class="org.apache.jackrabbit.core.persistence.bundle.MySqlPersistenceManager">
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user" />
<param name="password" value="password" />
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="${wsp.name}_pm_ws_"/>
</PersistenceManager>
Desactivar código.
<!--
<PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.H2PersistenceManager">
<param name="url" value="jdbc:h2:${wsp.home}/db"/>
<param name="schemaObjectPrefix" value="${wsp.name}_"/>
</PersistenceManager>
-->
Referencia: descomentar de la linea 244 a la 250 y comentar de la línea 273 a la 276.
Instalación Pentaho CentOS | Moisés Araya
[11]
Configurar el versionamiento.
Activar código.
<FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem">
<param name="driver" value="com.mysql.jdbc.Driver"/>
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user"/>
<param name="password" value="password"/>
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="fs_ver_"/>
</FileSystem>
Desactivar código.
<!--
<FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem">
<param name="path" value="${rep.home}/version" />
</FileSystem>
-->
Referencia: Descomentar de la línea 327 a la 334 y comentar de la línea 354 a la 356.
Configurar El administrador de persistencia.
Activar código.
<PersistenceManager
class="org.apache.jackrabbit.core.persistence.bundle.MySqlPersistenceManager">
<param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/>
<param name="user" value="jcr_user" />
<param name="password" value="password" />
<param name="schema" value="mysql"/>
<param name="schemaObjectPrefix" value="pm_ver_"/>
</PersistenceManager>
Desactivar el código.
<!--
<PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.H2PersistenceManager">
<param name="url" value="jdbc:h2:${rep.home}/version/db"/>
<param name="schemaObjectPrefix" value="version_"/>
</PersistenceManager>
-->
Referencia: descomentar de la línea 373 a la 379 y comentar la línea 401 a la 404.
Instalación Pentaho CentOS | Moisés Araya
[12]
4.5 Configuración de Tomcat
Copiar el driver JDBC de MySQL
Descargar conector JAVA y copiar archivo al directorio optpentahobiserver-cetomcatlib
[pentahousr@centos ~]# cd /opt/pentaho/biserver-ce/tomcat/lib/
[pentahousr@centos lib]# ls |grep mysql-connector*
mysql-connector-java-5.1.34-bin.jar
Modificar la conexión JDBC de Tomcat.
Editar y modificar el archivo context.xml ubicado en biserver-ce 5.0.1tomcatwebappspentahoMETA-INF
según se muestra.
/opt/pentaho/biserver-ce/tomcat/webapps/pentaho/META-INF
[pentahousr@centos]# vi context.xml
Código original.
<Resource name="jdbc/Hibernate" auth="Container" type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
maxWait="10000" username="hibuser" password="password"
driverClassName="org.hsqldb.jdbcDriver" url="jdbc:hsqldb:hsql://localhost/hibernate"
validationQuery="select count(*) from INFORMATION_SCHEMA.SYSTEM_SEQUENCES" />
<Resource name="jdbc/Quartz" auth="Container" type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
maxWait="10000" username="pentaho_user" password="password"
driverClassName="org.hsqldb.jdbcDriver" url="jdbc:hsqldb:hsql://localhost/quartz"
validationQuery="select count(*) from INFORMATION_SCHEMA.SYSTEM_SEQUENCES"/>
Código modificado.
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/pentaho" docbase="webapps/pentaho/">
<Resource name="jdbc/Hibernate" auth="Container" type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
maxWait="10000" username="hibuser" password="password"
driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/hibernate"
validationQuery="select 1;" />
<Resource name="jdbc/Quartz" auth="Container" type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
maxWait="10000" username="pentaho_user" password="password"
driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/quartz"
validationQuery="select 1;"/>
</Context
Eliminar archivo pentaho.xml
Eliminar archivo pentaho.xml (solo si existe) del directorio /opt/pentaho/biserver-
ce/tomcat/conf/Catalina/localhost
[pentahousr@centos]# cd /opt/pentaho/biserver-ce/tomcat/conf/Catalina/localhost
[pentahousr@centos]# ls
pentaho.xml
Razón: Cuando se inicia Pentaho, se crea una copia del archivo context.xml con el nombre de pentaho.xml
[pentahousr@centos]# rm -f pentaho.xml
Instalación Pentaho CentOS | Moisés Araya
[13]
Configurar inicio de BD de ejemplo de HSQL.
Editar el archivo web.xml en el directorio biserver-ce-5.0.1tomcatwebappspentahoWEB-INF y solo permitir
el inicio de la base de datos de ejemplo de HSQLDB.
[pentahousr@centos]# cd /opt/pentaho/biserver-ce/tomcat/webapps/pentaho/WEB-INF
[pentahousr@centos]# vi web.xml
Código original.
<!-- [BEGIN HSQLDB DATABASES] -->
<context-param>
<param-name>hsqldb-databases</param-name>
<param-
value>sampledata@../../data/hsqldb/sampledata,hibernate@../../data/hsqldb/hibernate,quartz@../../dat
a/hsqldb/quartz</param-value>
</context-param>
<!-- [END HSQLDB DATABASES] -->
Código modificado.
<!-- [BEGIN HSQLDB DATABASES] -->
<context-param>
<param-name>hsqldb-databases</param-name>
<param-value>sampledata@../../data/hsqldb/sampledata</param-value>
</context-param>
<!-- [END HSQLDB DATABASES] -->
Guardar, salir y reiniciar servidor.
4.6 Iniciar Pentaho
Una vez reiniciado el servidor, ir a la ruta /opt/pentaho/biserver-ce y ejecutar el archivo start-pentaho.sh
[pentahousr@centos biserver-ce]# ./start-pentaho.sh
/opt/pentaho/biserver-ce
/opt/pentaho/biserver-ce
DEBUG: Using JAVA_HOME
DEBUG: _PENTAHO_JAVA_HOME=/usr/java/jdk1.6.0_45/
DEBUG: _PENTAHO_JAVA=/usr/java/jdk1.6.0_45//bin/java
Using CATALINA_BASE: /opt/pentaho/biserver-ce/tomcat
Using CATALINA_HOME: /opt/pentaho/biserver-ce/tomcat
Using CATALINA_TMPDIR: /opt/pentaho/biserver-ce/tomcat/temp
Using JRE_HOME: /usr/java/jdk1.6.0_45/
Using CLASSPATH: /opt/pentaho/biserver-ce/tomcat/bin/bootstrap.jar
Ver logs.
Adicionalmente y para verificar el correcto inicio del servicio, ir a la ruta /opt/pentaho/biserver-
ce/tomcat/logs y validar que no existan errores.
[pentahousr@centos ~]# cd /opt/pentaho/biserver-ce/tomcat/logs/
[pentahousr@centos logs]# tail -f catalina.out
Mar 18, 2015 1:43:26 PM org.apache.catalina.core.AprLifecycleListener init
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production
environments was not found on the java.library.path:
/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib
Mar 18, 2015 1:43:26 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Instalación Pentaho CentOS | Moisés Araya
[14]
Mar 18, 2015 1:43:26 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 645 ms
Mar 18, 2015 1:43:26 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Mar 18, 2015 1:43:26 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/6.0.36
Mar 18, 2015 1:43:26 PM org.apache.catalina.startup.HostConfig deployDescriptor
INFO: Deploying configuration descriptor pentaho.xml
[Server@68aa41cd]: [Thread[main,5,main]]: checkRunning(false) entered
[Server@68aa41cd]: [Thread[main,5,main]]: checkRunning(false) exited
[Server@68aa41cd]: Initiating startup sequence...
[Server@68aa41cd]: Server socket opened successfully in 1 ms.
[Server@68aa41cd]: Database [index=0, id=0, db=file:../../data/hsqldb/sampledata, alias=sampledata]
opened sucessfully in 1323 ms.
[Server@68aa41cd]: Startup sequence completed in 1325 ms.
[Server@68aa41cd]: 2015-03-18 13:43:29.390 HSQLDB server 1.8.0 is online
[Server@68aa41cd]: To close normally, connect and execute SHUTDOWN SQL
[Server@68aa41cd]: From command line, use [Ctrl]+[C] to abort abruptly
Pentaho BI Platform server is ready. (Pentaho Platform Core 5.0.1-stable.-1) Fully Qualified Server
Url = http://localhost:8080/pentaho/, Solution Path = /opt/pentaho/biserver-ce/pentaho-solutions
Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory pentaho-style
Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory sw-style
Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.HostConfig deployDirectory
INFO: Deploying web application directory ROOT
Mar 18, 2015 1:43:48 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Mar 18, 2015 1:43:48 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Mar 18, 2015 1:43:48 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/55 config=null
Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 21966 ms
Acceder a consola.
Abrir un navegador Web y escribir: http://localhost:8080/pentaho

Mais conteúdo relacionado

Mais procurados

Intro to Linux Shell Scripting
Intro to Linux Shell ScriptingIntro to Linux Shell Scripting
Intro to Linux Shell Scriptingvceder
 
From Android NDK To AOSP
From Android NDK To AOSPFrom Android NDK To AOSP
From Android NDK To AOSPMin-Yih Hsu
 
qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...
qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...
qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...Adrian Huang
 
Ansible tips & tricks
Ansible tips & tricksAnsible tips & tricks
Ansible tips & tricksbcoca
 
Heap Dump Analysis - AEM: Real World Issues
Heap Dump Analysis - AEM: Real World IssuesHeap Dump Analysis - AEM: Real World Issues
Heap Dump Analysis - AEM: Real World IssuesKanika Gera
 
Course 102: Lecture 20: Networking In Linux (Basic Concepts)
Course 102: Lecture 20: Networking In Linux (Basic Concepts) Course 102: Lecture 20: Networking In Linux (Basic Concepts)
Course 102: Lecture 20: Networking In Linux (Basic Concepts) Ahmed El-Arabawy
 
Introduction to ansible
Introduction to ansibleIntroduction to ansible
Introduction to ansibleOmid Vahdaty
 
Relax and Recover on POWER (Updated 05-2017)
Relax and Recover on POWER (Updated 05-2017)Relax and Recover on POWER (Updated 05-2017)
Relax and Recover on POWER (Updated 05-2017)Sebastien Chabrolles
 
Anatomy of the loadable kernel module (lkm)
Anatomy of the loadable kernel module (lkm)Anatomy of the loadable kernel module (lkm)
Anatomy of the loadable kernel module (lkm)Adrian Huang
 
Getting started with Ansible
Getting started with AnsibleGetting started with Ansible
Getting started with AnsibleIvan Serdyuk
 
Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers Ahmed El-Arabawy
 
Automation with ansible
Automation with ansibleAutomation with ansible
Automation with ansibleKhizer Naeem
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Scriptsbmguys
 
Part 02 Linux Kernel Module Programming
Part 02 Linux Kernel Module ProgrammingPart 02 Linux Kernel Module Programming
Part 02 Linux Kernel Module ProgrammingTushar B Kute
 
Qt5 (minimal) on beaglebone, with Yocto
Qt5 (minimal) on beaglebone, with YoctoQt5 (minimal) on beaglebone, with Yocto
Qt5 (minimal) on beaglebone, with YoctoPrabindh Sundareson
 
Linux Troubleshooting
Linux TroubleshootingLinux Troubleshooting
Linux TroubleshootingKeith Wright
 
Linux basics part 1
Linux basics part 1Linux basics part 1
Linux basics part 1Lilesh Pathe
 
VMware vSphere Storage Appliance (VSA) - Technical Presentation,Almacenamien...
VMware vSphere Storage Appliance (VSA) -  Technical Presentation,Almacenamien...VMware vSphere Storage Appliance (VSA) -  Technical Presentation,Almacenamien...
VMware vSphere Storage Appliance (VSA) - Technical Presentation,Almacenamien...Suministros Obras y Sistemas
 

Mais procurados (20)

Intro to Linux Shell Scripting
Intro to Linux Shell ScriptingIntro to Linux Shell Scripting
Intro to Linux Shell Scripting
 
From Android NDK To AOSP
From Android NDK To AOSPFrom Android NDK To AOSP
From Android NDK To AOSP
 
qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...
qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...
qemu + gdb: The efficient way to understand/debug Linux kernel code/data stru...
 
Ansible tips & tricks
Ansible tips & tricksAnsible tips & tricks
Ansible tips & tricks
 
Heap Dump Analysis - AEM: Real World Issues
Heap Dump Analysis - AEM: Real World IssuesHeap Dump Analysis - AEM: Real World Issues
Heap Dump Analysis - AEM: Real World Issues
 
Course 102: Lecture 20: Networking In Linux (Basic Concepts)
Course 102: Lecture 20: Networking In Linux (Basic Concepts) Course 102: Lecture 20: Networking In Linux (Basic Concepts)
Course 102: Lecture 20: Networking In Linux (Basic Concepts)
 
Introduction to ansible
Introduction to ansibleIntroduction to ansible
Introduction to ansible
 
Relax and Recover on POWER (Updated 05-2017)
Relax and Recover on POWER (Updated 05-2017)Relax and Recover on POWER (Updated 05-2017)
Relax and Recover on POWER (Updated 05-2017)
 
Linux
LinuxLinux
Linux
 
Anatomy of the loadable kernel module (lkm)
Anatomy of the loadable kernel module (lkm)Anatomy of the loadable kernel module (lkm)
Anatomy of the loadable kernel module (lkm)
 
Getting started with Ansible
Getting started with AnsibleGetting started with Ansible
Getting started with Ansible
 
Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers
 
Automation with ansible
Automation with ansibleAutomation with ansible
Automation with ansible
 
Unix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell ScriptUnix/Linux Basic Commands and Shell Script
Unix/Linux Basic Commands and Shell Script
 
Introduction to Modern U-Boot
Introduction to Modern U-BootIntroduction to Modern U-Boot
Introduction to Modern U-Boot
 
Part 02 Linux Kernel Module Programming
Part 02 Linux Kernel Module ProgrammingPart 02 Linux Kernel Module Programming
Part 02 Linux Kernel Module Programming
 
Qt5 (minimal) on beaglebone, with Yocto
Qt5 (minimal) on beaglebone, with YoctoQt5 (minimal) on beaglebone, with Yocto
Qt5 (minimal) on beaglebone, with Yocto
 
Linux Troubleshooting
Linux TroubleshootingLinux Troubleshooting
Linux Troubleshooting
 
Linux basics part 1
Linux basics part 1Linux basics part 1
Linux basics part 1
 
VMware vSphere Storage Appliance (VSA) - Technical Presentation,Almacenamien...
VMware vSphere Storage Appliance (VSA) -  Technical Presentation,Almacenamien...VMware vSphere Storage Appliance (VSA) -  Technical Presentation,Almacenamien...
VMware vSphere Storage Appliance (VSA) - Technical Presentation,Almacenamien...
 

Destaque

Instalación y Configuración de Pentaho BI y MySQL
Instalación y Configuración de Pentaho BI y MySQLInstalación y Configuración de Pentaho BI y MySQL
Instalación y Configuración de Pentaho BI y MySQLT.I.C
 
Instalacion de Pentaho 5 con PostgreSQL 9.3
Instalacion de Pentaho 5 con PostgreSQL 9.3Instalacion de Pentaho 5 con PostgreSQL 9.3
Instalacion de Pentaho 5 con PostgreSQL 9.3Ciencias
 
Aula 01-Tutorial ETL com PDI
Aula 01-Tutorial ETL com PDIAula 01-Tutorial ETL com PDI
Aula 01-Tutorial ETL com PDIJarley Nóbrega
 
Exercícios - Tutorial ETL com Pentaho Data Integration
Exercícios - Tutorial ETL com Pentaho Data IntegrationExercícios - Tutorial ETL com Pentaho Data Integration
Exercícios - Tutorial ETL com Pentaho Data IntegrationJarley Nóbrega
 
Manipulacion de datos con Kettle
Manipulacion de datos con KettleManipulacion de datos con Kettle
Manipulacion de datos con KettleMarcos Pierri
 
Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...
Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...
Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...Pentaho
 
Aula 02-Tutorial ETL com PDI
Aula 02-Tutorial ETL com PDIAula 02-Tutorial ETL com PDI
Aula 02-Tutorial ETL com PDIJarley Nóbrega
 
Migración de datos con OpenERP-Kettle
Migración de datos con OpenERP-KettleMigración de datos con OpenERP-Kettle
Migración de datos con OpenERP-Kettleraimonesteve
 
Présentation et installation de pentaho
Présentation et installation de pentahoPrésentation et installation de pentaho
Présentation et installation de pentahoSylvain Decloix
 
Elementos ETL - Kettle Pentaho
Elementos ETL - Kettle Pentaho Elementos ETL - Kettle Pentaho
Elementos ETL - Kettle Pentaho valex_haro
 
Manual de instalación de pentaho para windows 7
Manual de instalación de pentaho para windows 7Manual de instalación de pentaho para windows 7
Manual de instalación de pentaho para windows 7German Pinchao
 
Kettle: Pentaho Data Integration tool
Kettle: Pentaho Data Integration toolKettle: Pentaho Data Integration tool
Kettle: Pentaho Data Integration toolAlex Rayón Jerez
 
Data Mining
Data MiningData Mining
Data Miningbrobelo
 
Pentaho Data Integration Introduction
Pentaho Data Integration IntroductionPentaho Data Integration Introduction
Pentaho Data Integration Introductionmattcasters
 
Data Mining. Extracción de Conocimiento en Grandes Bases de Datos
Data Mining. Extracción de Conocimiento en Grandes Bases de DatosData Mining. Extracción de Conocimiento en Grandes Bases de Datos
Data Mining. Extracción de Conocimiento en Grandes Bases de DatosRoberto Espinosa
 
Pentaho: Installation And Administration
Pentaho: Installation And AdministrationPentaho: Installation And Administration
Pentaho: Installation And AdministrationDataminingTools Inc
 

Destaque (20)

Instalación y Configuración de Pentaho BI y MySQL
Instalación y Configuración de Pentaho BI y MySQLInstalación y Configuración de Pentaho BI y MySQL
Instalación y Configuración de Pentaho BI y MySQL
 
Instalacion de Pentaho 5 con PostgreSQL 9.3
Instalacion de Pentaho 5 con PostgreSQL 9.3Instalacion de Pentaho 5 con PostgreSQL 9.3
Instalacion de Pentaho 5 con PostgreSQL 9.3
 
Aula 01-Tutorial ETL com PDI
Aula 01-Tutorial ETL com PDIAula 01-Tutorial ETL com PDI
Aula 01-Tutorial ETL com PDI
 
Exercícios - Tutorial ETL com Pentaho Data Integration
Exercícios - Tutorial ETL com Pentaho Data IntegrationExercícios - Tutorial ETL com Pentaho Data Integration
Exercícios - Tutorial ETL com Pentaho Data Integration
 
Manipulacion de datos con Kettle
Manipulacion de datos con KettleManipulacion de datos con Kettle
Manipulacion de datos con Kettle
 
Pentaho: CE versus EE
Pentaho: CE versus EEPentaho: CE versus EE
Pentaho: CE versus EE
 
Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...
Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...
Predictive Analytics with Pentaho Data Mining - Análisis Predictivo con Penta...
 
Pentaho PDI
Pentaho PDIPentaho PDI
Pentaho PDI
 
Aula 02-Tutorial ETL com PDI
Aula 02-Tutorial ETL com PDIAula 02-Tutorial ETL com PDI
Aula 02-Tutorial ETL com PDI
 
Auditoria Oracle 10g
Auditoria Oracle 10gAuditoria Oracle 10g
Auditoria Oracle 10g
 
Migración de datos con OpenERP-Kettle
Migración de datos con OpenERP-KettleMigración de datos con OpenERP-Kettle
Migración de datos con OpenERP-Kettle
 
Présentation et installation de pentaho
Présentation et installation de pentahoPrésentation et installation de pentaho
Présentation et installation de pentaho
 
Stratebi
StratebiStratebi
Stratebi
 
Elementos ETL - Kettle Pentaho
Elementos ETL - Kettle Pentaho Elementos ETL - Kettle Pentaho
Elementos ETL - Kettle Pentaho
 
Manual de instalación de pentaho para windows 7
Manual de instalación de pentaho para windows 7Manual de instalación de pentaho para windows 7
Manual de instalación de pentaho para windows 7
 
Kettle: Pentaho Data Integration tool
Kettle: Pentaho Data Integration toolKettle: Pentaho Data Integration tool
Kettle: Pentaho Data Integration tool
 
Data Mining
Data MiningData Mining
Data Mining
 
Pentaho Data Integration Introduction
Pentaho Data Integration IntroductionPentaho Data Integration Introduction
Pentaho Data Integration Introduction
 
Data Mining. Extracción de Conocimiento en Grandes Bases de Datos
Data Mining. Extracción de Conocimiento en Grandes Bases de DatosData Mining. Extracción de Conocimiento en Grandes Bases de Datos
Data Mining. Extracción de Conocimiento en Grandes Bases de Datos
 
Pentaho: Installation And Administration
Pentaho: Installation And AdministrationPentaho: Installation And Administration
Pentaho: Installation And Administration
 

Semelhante a Instalar PENTAHO 5 en CentOS 6

Hadoop single cluster installation
Hadoop single cluster installationHadoop single cluster installation
Hadoop single cluster installationMinh Tran
 
How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7VCP Muthukrishna
 
Installing & Configuring IBM Domino 9 on CentOS
Installing & Configuring IBM Domino 9 on CentOSInstalling & Configuring IBM Domino 9 on CentOS
Installing & Configuring IBM Domino 9 on CentOSDevin Olson
 
L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5William Lee
 
Centosta mysql enterprise kurulumu
Centosta mysql enterprise kurulumuCentosta mysql enterprise kurulumu
Centosta mysql enterprise kurulumuHızlan ERPAK
 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawnGábor Nyers
 
TrinityCore server install guide
TrinityCore server install guideTrinityCore server install guide
TrinityCore server install guideSeungmin Shin
 
Multiple instances on linux
Multiple instances on linuxMultiple instances on linux
Multiple instances on linuxVasudeva Rao
 
Snort296x centos6x 2
Snort296x centos6x 2Snort296x centos6x 2
Snort296x centos6x 2Trinh Tuan
 
Usage Note of Apache Thrift for C++ Java PHP Languages
Usage Note of Apache Thrift for C++ Java PHP LanguagesUsage Note of Apache Thrift for C++ Java PHP Languages
Usage Note of Apache Thrift for C++ Java PHP LanguagesWilliam Lee
 
Hands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardwareHands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardwareRajesh Sola
 
SaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
SaltConf14 - Ben Cane - Using SaltStack in High Availability EnvironmentsSaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
SaltConf14 - Ben Cane - Using SaltStack in High Availability EnvironmentsSaltStack
 
MySQL 8.0.18 - New Features Summary
MySQL 8.0.18 - New Features SummaryMySQL 8.0.18 - New Features Summary
MySQL 8.0.18 - New Features SummaryOlivier DASINI
 
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库maclean liu
 
A Presentation about Puppet that I've made at the OSSPAC conference
A Presentation about Puppet that I've made at the OSSPAC conferenceA Presentation about Puppet that I've made at the OSSPAC conference
A Presentation about Puppet that I've made at the OSSPAC conferenceohadlevy
 
Asian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On UblAsian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On Ublnewrforce
 

Semelhante a Instalar PENTAHO 5 en CentOS 6 (20)

Instalar MySQL CentOS
Instalar MySQL CentOSInstalar MySQL CentOS
Instalar MySQL CentOS
 
Hadoop single cluster installation
Hadoop single cluster installationHadoop single cluster installation
Hadoop single cluster installation
 
How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7How To Install OpenFire in CentOS 7
How To Install OpenFire in CentOS 7
 
Installing & Configuring IBM Domino 9 on CentOS
Installing & Configuring IBM Domino 9 on CentOSInstalling & Configuring IBM Domino 9 on CentOS
Installing & Configuring IBM Domino 9 on CentOS
 
Network Manual
Network ManualNetwork Manual
Network Manual
 
Operation outbreak
Operation outbreakOperation outbreak
Operation outbreak
 
L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5L.A.M.P Installation Note --- CentOS 6.5
L.A.M.P Installation Note --- CentOS 6.5
 
Centosta mysql enterprise kurulumu
Centosta mysql enterprise kurulumuCentosta mysql enterprise kurulumu
Centosta mysql enterprise kurulumu
 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawn
 
TrinityCore server install guide
TrinityCore server install guideTrinityCore server install guide
TrinityCore server install guide
 
Multiple instances on linux
Multiple instances on linuxMultiple instances on linux
Multiple instances on linux
 
Snort296x centos6x 2
Snort296x centos6x 2Snort296x centos6x 2
Snort296x centos6x 2
 
Usage Note of Apache Thrift for C++ Java PHP Languages
Usage Note of Apache Thrift for C++ Java PHP LanguagesUsage Note of Apache Thrift for C++ Java PHP Languages
Usage Note of Apache Thrift for C++ Java PHP Languages
 
Hands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardwareHands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardware
 
SaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
SaltConf14 - Ben Cane - Using SaltStack in High Availability EnvironmentsSaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
SaltConf14 - Ben Cane - Using SaltStack in High Availability Environments
 
MySQL 8.0.18 - New Features Summary
MySQL 8.0.18 - New Features SummaryMySQL 8.0.18 - New Features Summary
MySQL 8.0.18 - New Features Summary
 
Dev ops
Dev opsDev ops
Dev ops
 
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
图文详解安装Net backup 6.5备份恢复oracle 10g rac 数据库
 
A Presentation about Puppet that I've made at the OSSPAC conference
A Presentation about Puppet that I've made at the OSSPAC conferenceA Presentation about Puppet that I've made at the OSSPAC conference
A Presentation about Puppet that I've made at the OSSPAC conference
 
Asian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On UblAsian Spirit 3 Day Dba On Ubl
Asian Spirit 3 Day Dba On Ubl
 

Mais de Moisés Elías Araya

Instalar Docker Desktop y Kubernetes en Windows 10
Instalar Docker Desktop y Kubernetes en Windows 10Instalar Docker Desktop y Kubernetes en Windows 10
Instalar Docker Desktop y Kubernetes en Windows 10Moisés Elías Araya
 
Instalacion y uso basico de Kubernetes.
Instalacion y uso basico de Kubernetes.Instalacion y uso basico de Kubernetes.
Instalacion y uso basico de Kubernetes.Moisés Elías Araya
 
Instalacion y uso basico de Docker.
Instalacion y uso basico de Docker.Instalacion y uso basico de Docker.
Instalacion y uso basico de Docker.Moisés Elías Araya
 
Instalacion basica ELK (elasticsearch) Windows
Instalacion basica ELK (elasticsearch) WindowsInstalacion basica ELK (elasticsearch) Windows
Instalacion basica ELK (elasticsearch) WindowsMoisés Elías Araya
 
Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)Moisés Elías Araya
 
Instalacion Weblogic Server 12c Windows 10.
Instalacion Weblogic Server 12c Windows 10.Instalacion Weblogic Server 12c Windows 10.
Instalacion Weblogic Server 12c Windows 10.Moisés Elías Araya
 
Resaltar celdas en Microsoft Excel.
Resaltar celdas en Microsoft Excel.Resaltar celdas en Microsoft Excel.
Resaltar celdas en Microsoft Excel.Moisés Elías Araya
 
Instalar y Configurar Python para Windows
Instalar y Configurar Python para WindowsInstalar y Configurar Python para Windows
Instalar y Configurar Python para WindowsMoisés Elías Araya
 
Instalacion y uso basico de Jenkins
Instalacion y uso basico de JenkinsInstalacion y uso basico de Jenkins
Instalacion y uso basico de JenkinsMoisés Elías Araya
 
Instalacion de Docker CE en Windows 10
Instalacion de Docker CE en Windows 10Instalacion de Docker CE en Windows 10
Instalacion de Docker CE en Windows 10Moisés Elías Araya
 
Instalacion Weblogic Server 11g Linux
Instalacion Weblogic Server 11g LinuxInstalacion Weblogic Server 11g Linux
Instalacion Weblogic Server 11g LinuxMoisés Elías Araya
 

Mais de Moisés Elías Araya (20)

Instalar Docker Desktop y Kubernetes en Windows 10
Instalar Docker Desktop y Kubernetes en Windows 10Instalar Docker Desktop y Kubernetes en Windows 10
Instalar Docker Desktop y Kubernetes en Windows 10
 
Instalacion Vz Linux
Instalacion Vz LinuxInstalacion Vz Linux
Instalacion Vz Linux
 
Conectar instancia gcp con putty
Conectar instancia gcp con puttyConectar instancia gcp con putty
Conectar instancia gcp con putty
 
Instalar SDK Google Cloud
Instalar SDK Google CloudInstalar SDK Google Cloud
Instalar SDK Google Cloud
 
Instalacion y uso basico de Kubernetes.
Instalacion y uso basico de Kubernetes.Instalacion y uso basico de Kubernetes.
Instalacion y uso basico de Kubernetes.
 
Instalacion y uso basico de Docker.
Instalacion y uso basico de Docker.Instalacion y uso basico de Docker.
Instalacion y uso basico de Docker.
 
Terraform Cosmos DB
Terraform Cosmos DBTerraform Cosmos DB
Terraform Cosmos DB
 
Conceptos BPM
Conceptos BPMConceptos BPM
Conceptos BPM
 
Instalacion basica ELK (elasticsearch) Windows
Instalacion basica ELK (elasticsearch) WindowsInstalacion basica ELK (elasticsearch) Windows
Instalacion basica ELK (elasticsearch) Windows
 
Cuadro mando Excel
Cuadro mando ExcelCuadro mando Excel
Cuadro mando Excel
 
Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)Graficar SAR Linux (System Activity Report)
Graficar SAR Linux (System Activity Report)
 
Instalacion Weblogic Server 12c Windows 10.
Instalacion Weblogic Server 12c Windows 10.Instalacion Weblogic Server 12c Windows 10.
Instalacion Weblogic Server 12c Windows 10.
 
Ver uptime Windows
Ver uptime WindowsVer uptime Windows
Ver uptime Windows
 
Modificar aspecto consola Windows
Modificar aspecto consola WindowsModificar aspecto consola Windows
Modificar aspecto consola Windows
 
Resaltar celdas en Microsoft Excel.
Resaltar celdas en Microsoft Excel.Resaltar celdas en Microsoft Excel.
Resaltar celdas en Microsoft Excel.
 
Instalar y Configurar Python para Windows
Instalar y Configurar Python para WindowsInstalar y Configurar Python para Windows
Instalar y Configurar Python para Windows
 
Instalacion y uso basico de Jenkins
Instalacion y uso basico de JenkinsInstalacion y uso basico de Jenkins
Instalacion y uso basico de Jenkins
 
Instalacion de Docker CE en Windows 10
Instalacion de Docker CE en Windows 10Instalacion de Docker CE en Windows 10
Instalacion de Docker CE en Windows 10
 
Instalacion Weblogic Server 11g Linux
Instalacion Weblogic Server 11g LinuxInstalacion Weblogic Server 11g Linux
Instalacion Weblogic Server 11g Linux
 
Instalacion y Uso de JMeter
Instalacion y Uso de JMeterInstalacion y Uso de JMeter
Instalacion y Uso de JMeter
 

Último

5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteedamy56318795
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...amitlee9823
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Detecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachDetecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachBoston Institute of Analytics
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...amitlee9823
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Pooja Nehwal
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...amitlee9823
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 

Último (20)

5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
 
Detecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachDetecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning Approach
 
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Rabindra Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Rabindra Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Hsr Layout ☎ 7737669865 🥵 Book Your One night Stand
 

Instalar PENTAHO 5 en CentOS 6

  • 1.
  • 2. Instalación Pentaho CentOS | Moisés Araya [1] Contenido Instalación Pentaho CentOS...................................................................................................... 2 Parte 1: Creación de grupo y usuario. ...................................................................................... 2 Parte 2: JAVA.................................................................................................................... 2 Parte 3: MySQL .................................................................................................................. 4 Parte 4: PENTAHO .............................................................................................................. 7 4.1 Crear directorio, copiar instalador y descomprimir. ............................................................. 7 4.2 Inicializar bases de datos para la integración MySQL con Pentaho. ........................................... 7 4.3 Preparar MySQL como repositorio BA. .............................................................................. 8 4.4 Modificar la información del repositorio Jackrabbit............................................................. 9 4.5 Configuración de Tomcat.............................................................................................12 4.6 Iniciar Pentaho .........................................................................................................13
  • 3. Instalación Pentaho CentOS | Moisés Araya [2] Instalación Pentaho CentOS Parte 1: Creación de grupo y usuario. Crear usuario y grupo como se muestra. [root@centos ~]# groupadd -r pentaho [root@centos ~]# useradd -s /bin/bash pentahousr [root@centos ~]# passwd pentahousr Changing password for user pentahousr. New password: Retype new password: passwd: all authentication tokens updated successfully. [root@centos ~]# gpasswd -a pentahousr pentaho Adding user pentahousr to group pentaho [root@centos ~]# chown -R pentahousr:pentaho /opt/pentaho Parte 2: JAVA PENTAHO solo es compatible con JDK/JRE SUN u Oracle. Verificar JAVA [root@centos ~]# java -version java version "1.6.0_45" [root@centos ~]# rpm -e jdk-1.6.0_45-fcs.x86_64 [root@centos ~]# java -version -bash: /usr/bin/java: No existe el fichero o el directorio Instalar JDK versión 1.7 [root@centos ~]# rpm -Uvh jdk-7u75-linux-x64.rpm Preparando... ########################################### [100%] 1:jdk ########################################### [100%] Unpacking JAR files... rt.jar... jsse.jar... charsets.jar... tools.jar... localedata.jar... jfxrt.jar... [root@centos ~]# java -version java version "1.7.0_75" Java(TM) SE Runtime Environment (build 1.7.0_75-b13) Java HotSpot(TM) 64-Bit Server VM (build 24.75-b04, mixed mode)
  • 4. Instalación Pentaho CentOS | Moisés Araya [3] Configurar variables de entorno. Editar archivo .bashrc y agregar las líneas. [pentahousr@centos ~]$ vi .bashrc export JAVA_HOME=/usr/java/jdk1.7.0_75/ export JRE_HOME=/usr/java/jdk1.7.0_75/jre export PATH=/usr/java/jdk1.7.0_75/bin:$PATH Opcionalmente agregar: export PENTAHO_HOME=/opt/pentaho/biserver-ce Habilitar las variables de entorno para el usuario sin reiniciar. [pentahousr@centos ~]$ source /home/pentahousr/.bashrc Verificar las variables de entorno. [pentahousr@centos ~]$ echo $PATH /usr/java/jdk1.7.0_75/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/ro ot/bin [pentahousr@centos ~]$ echo $JAVA_HOME /usr/java/jdk1.7.0_75/ Opcionalmente buscar ruta de JAVA. [pentahousr@centos ~]$ find / -name java /usr/java /usr/java/jdk1.7.0_75/jre/bin/java /usr/java/jdk1.7.0_75/bin/java /usr/bin/java /opt/sun/javadb/demo/programs/scores/java /opt/sun/javadb/demo/programs/vtis/java /etc/pki/java
  • 5. Instalación Pentaho CentOS | Moisés Araya [4] Parte 3: MySQL Descargar repositorio e instalar. [root@centos ~]]# wget http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm --2014-12-12 11:26:40-- http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm Resolviendo dev.mysql.com... 137.254.60.11 . . . . 100%[===================================================================================>] 5.824 --.-K/s in 0,008s 2014-12-12 11:26:41 (693 KB/s) - `mysql-community-release-el6-5.noarch.rpm' saved [5824/5824] [root@centos ~]]# rpm -i mysql-community-release-el6-5.noarch.rpm Instalar MySQL Server. [root@centos ~]]# yum install mysql-community-server Dependencies Resolved ==================================================================================================== ========================= Package Arch Version Repository Size ==================================================================================================== ========================= Installing: mysql-community-server x86_64 5.6.23-2.el6 mysql56- community 53 M Installing for dependencies: mysql-community-client x86_64 5.6.23-2.el6 mysql56- community 18 M mysql-community-common x86_64 5.6.23-2.el6 mysql56- community 307 k mysql-community-libs x86_64 5.6.23-2.el6 mysql56- community 1.9 M Transaction Summary ==================================================================================================== ========================= Install 4 Package(s) Total download size: 73 M Installed: mysql-community-server.x86_64 0:5.6.23-2.el6 Dependency Installed: mysql-community-client.x86_64 0:5.6.23-2.el6 mysql-community-common.x86_64 0:5.6.23- 2.el6 mysql-community-libs.x86_64 0:5.6.23-2.el6 Complete!
  • 6. Instalación Pentaho CentOS | Moisés Araya [5] Iniciar servicios. (extracto) [root@centos ~]]# service mysqld start Iniciando base de datos MySQL: 2014-12-12 12:34:27 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2014-12-12 12:34:27 2700 [Note] InnoDB: Using atomics to ref count buffer pool pages 2014-12-12 12:34:27 2700 [Note] InnoDB: The InnoDB memory heap is disabled 2014-12-12 12:34:27 2700 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins 2014-12-12 12:34:27 2700 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB . . . . . . . /usr/bin/mysqladmin -u root password 'new-password' /usr/bin/mysqladmin -u root -h centos.lab password 'new-password' Alternatively you can run: /usr/bin/mysql_secure_installation which will also give you the option of removing the test databases and anonymous user created by default. This is strongly recommended for production servers. The latest information about MySQL is available on the web at http://www.mysql.com Support MySQL by buying support/licenses at http://shop.mysql.com Note: new default config file not created. Please make sure your config file is current WARNING: Default config file /etc/my.cnf exists on the system This file will be read by default by the MySQL server If you do not want to use this, either remove it, or use the --defaults-file argument to mysqld_safe when starting the server [ OK ] Iniciando mysqld: [ OK ] Configurar inicio de servicio. [root@centos ~]# chkconfig mysqld on [root@centos ~]# chkconfig --list mysqld mysqld 0:desactivado 1:desactivado 2:activo 3:activo 4:activo 5:activo 6:desactivado [root@centos ~]# netstat -tulpn |grep mysql tcp 0 0 :::3306 :::* LISTEN 2964/mysqld
  • 7. Instalación Pentaho CentOS | Moisés Araya [6] Configuración segura de MySQL (opcional) [root@centos]# mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we'll need the current password for the root user. If you've just installed MySQL, and you haven't set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MySQL root user without the proper authorisation. Set root password? [Y/n] Y New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... skipping. By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ERROR 1008 (HY000) at line 1: Can't drop database 'test'; database doesn't exist ... Failed! Not critical, keep moving... - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! All done! If you've completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL! Cleaning up...
  • 8. Instalación Pentaho CentOS | Moisés Araya [7] Parte 4: PENTAHO 4.1 Crear directorio, copiar instalador y descomprimir. [root@centos /]# mkdir /opt/pentaho [root@centos /]# mv biserver-ce-5.0.1-stable.zip /opt/pentaho/ [root@centos /]# cd /opt/pentaho/ [root@centos pentaho]# chmod +x biserver-ce-5.0.1-stable.zip [root@centos pentaho]# unzip biserver-ce-5.0.1-stable.zip 4.2 Inicializar bases de datos para la integración MySQL con Pentaho. Archivos a ejecutar:  create_jcr_mysql.sql  create_quartz_mysql.sql  create_repository_mysql.sql Conectarse a MySQL y ejecutar scripts como se muestra. mysql> source /opt/pentaho/biserver-ce/data/mysql5/create_jcr_mysql.sql Query OK, 1 row affected (0,01 sec) Query OK, 0 rows affected (0,00 sec) Query OK, 0 rows affected (0,00 sec) mysql> source /opt/pentaho/biserver-ce/data/mysql5/create_quartz_mysql.sql Query OK, 1 row affected (0,00 sec) Query OK, 0 rows affected (0,01 sec) Database changed Query OK, 0 rows affected, 1 warning (0,00 sec) Query OK, 0 rows affected (0,00 sec) mysql> source /opt/pentaho/biserver-ce/data/mysql5/create_repository_mysql.sql Query OK, 1 row affected (0,00 sec) Database changed Query OK, 0 rows affected (0,00 sec) Query OK, 0 rows affected (0,00 sec) Ver estado de DB. mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | hibernate | | jackrabbit | | mysql | | performance_schema | | quartz | +--------------------+ 6 rows in set (0,00 sec)
  • 9. Instalación Pentaho CentOS | Moisés Araya [8] 4.3 Preparar MySQL como repositorio BA. Configurar Quartz en MySQL. [pentahousr@centos]# cd /opt/pentaho/biserver-ce/pentaho-solutions/system/quartz/ [pentahousr@centos]# vi quartz.properties Modificar según se muestra. Código original. org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.PostgreSQLDelegate Código modificado. org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate Guardar y salir. Configurar parámetros Hibernate para MySQL. Editar el archivo applicationContext-spring-security-hibernate.properties y modificar según se muestra. [pentahousr@centos]# cd /opt/pentaho/biserver-ce/pentaho-solutions/system/ [pentahousr@centos]# vi applicationContext-spring-security-hibernate.properties Código original. jdbc.driver=org.hsqldb.jdbcDriver jdbc.url=jdbc:hsqldb:hsql://localhost:9001/hibernate jdbc.username=hibuser jdbc.password=password hibernate.dialect=org.hibernate.dialect.HSQLDialect Código modificado. jdbc.driver=org.mysql.jdbcDriver jdbc.url=jdbc:mysql://localhost:3306/hibernate jdbc.username=hibuser jdbc.password=password hibernate.dialect=org.hibernate.dialect.MySQLDialect Guardar y salir. Modificar archivo Hibernate-settings.xml Editar archivo hibernate-settings.xml ubicado en la ruta /opt/pentaho/biserver-ce/pentaho- solutions/system/hibernate y modificar según se muestra. [pentahousr@centos]# cd hibernate/ [pentahousr@centos]# vi hibernate-settings.xml Código original. <config-file>system/hibernate/hsql.hibernate.cfg.xml</config-file> Código modificado. <config-file>system/hibernate/mysql5.hibernate.cfg.xml</config-file>
  • 10. Instalación Pentaho CentOS | Moisés Araya [9] Revisar configuración archivo mysql5.hibernate.cfg.xml Editar archivo mysql5.hibernate.cfg.xml ubicado en la ruta /opt/pentaho/biserver-ce/pentaho- solutions/system/hibernate y verificar que lo datos mostrados son los correctos. [pentahousr@centos]# vi mysql5.hibernate.cfg.xml <!-- MySQL Configuration --> <property name="connection.driver_class">com.mysql.jdbc.Driver</property> <property name="connection.url">jdbc:mysql://localhost:3306/hibernate</property> <property name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property> <property name="connection.username">hibuser</property> <property name="connection.password">password</property> <property name="connection.pool_size">10</property> <property name="show_sql">false</property> <property name="hibernate.jdbc.use_streams_for_binary">true</property> 4.4 Modificar la información del repositorio Jackrabbit File System. Editar el archivo repository.xml en el directorio /opt/pentaho/biserver-ce/pentaho- solutions/system/jackrabbit y modificar según se indica. Activar código. <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem"> <param name="driver" value="com.mysql.jdbc.Driver"/> <param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/> <param name="user" value="jcr_user"/> <param name="password" value="password"/> <param name="schema" value="mysql"/> <param name="schemaObjectPrefix" value="fs_repos_"/> </FileSystem> Desactivar código. <!-- <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem"> <param name="path" value="${rep.home}/repository"/> </FileSystem> --> Referencia: descomentar de la línea 44 a la 51 y comentar la línea 72 a la 74. Data Store. Activar código. <DataStore class="org.apache.jackrabbit.core.data.db.DbDataStore"> <param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/> <param name="user" value="jcr_user"/> <param name="password" value="password"/> <param name="databaseType" value="mysql"/> <param name="driver" value="com.mysql.jdbc.Driver"/> <param name="minRecordLength" value="1024"/> <param name="maxConnections" value="3"/> <param name="copyWhenReading" value="true"/> <param name="tablePrefix" value=""/> <param name="schemaObjectPrefix" value="ds_repos_"/> </DataStore>
  • 11. Instalación Pentaho CentOS | Moisés Araya [10] Desactivar código. <!-- <DataStore class="org.apache.jackrabbit.core.data.FileDataStore"/> --> Referencia: descomentar de la línea 89 a la 100 y comentar la línea 130. Configuración de Workspace. Activar código: <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem"> <param name="driver" value="com.mysql.jdbc.Driver"/> <param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/> <param name="user" value="jcr_user"/> <param name="password" value="password"/> <param name="schema" value="mysql"/> <param name="schemaObjectPrefix" value="fs_ws_"/> </FileSystem> Desactivar código: <!-- <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem"> <param name="path" value="${wsp.home}"/> </FileSystem> --> Referencia: descomentar de la línea 198 a la 205 y comentar de la línea 226 a la 228. Configurar el administrador de persistencia del Workspace Activar código. <PersistenceManager class="org.apache.jackrabbit.core.persistence.bundle.MySqlPersistenceManager"> <param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/> <param name="user" value="jcr_user" /> <param name="password" value="password" /> <param name="schema" value="mysql"/> <param name="schemaObjectPrefix" value="${wsp.name}_pm_ws_"/> </PersistenceManager> Desactivar código. <!-- <PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.H2PersistenceManager"> <param name="url" value="jdbc:h2:${wsp.home}/db"/> <param name="schemaObjectPrefix" value="${wsp.name}_"/> </PersistenceManager> --> Referencia: descomentar de la linea 244 a la 250 y comentar de la línea 273 a la 276.
  • 12. Instalación Pentaho CentOS | Moisés Araya [11] Configurar el versionamiento. Activar código. <FileSystem class="org.apache.jackrabbit.core.fs.db.DbFileSystem"> <param name="driver" value="com.mysql.jdbc.Driver"/> <param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/> <param name="user" value="jcr_user"/> <param name="password" value="password"/> <param name="schema" value="mysql"/> <param name="schemaObjectPrefix" value="fs_ver_"/> </FileSystem> Desactivar código. <!-- <FileSystem class="org.apache.jackrabbit.core.fs.local.LocalFileSystem"> <param name="path" value="${rep.home}/version" /> </FileSystem> --> Referencia: Descomentar de la línea 327 a la 334 y comentar de la línea 354 a la 356. Configurar El administrador de persistencia. Activar código. <PersistenceManager class="org.apache.jackrabbit.core.persistence.bundle.MySqlPersistenceManager"> <param name="url" value="jdbc:mysql://localhost:3306/jackrabbit"/> <param name="user" value="jcr_user" /> <param name="password" value="password" /> <param name="schema" value="mysql"/> <param name="schemaObjectPrefix" value="pm_ver_"/> </PersistenceManager> Desactivar el código. <!-- <PersistenceManager class="org.apache.jackrabbit.core.persistence.pool.H2PersistenceManager"> <param name="url" value="jdbc:h2:${rep.home}/version/db"/> <param name="schemaObjectPrefix" value="version_"/> </PersistenceManager> --> Referencia: descomentar de la línea 373 a la 379 y comentar la línea 401 a la 404.
  • 13. Instalación Pentaho CentOS | Moisés Araya [12] 4.5 Configuración de Tomcat Copiar el driver JDBC de MySQL Descargar conector JAVA y copiar archivo al directorio optpentahobiserver-cetomcatlib [pentahousr@centos ~]# cd /opt/pentaho/biserver-ce/tomcat/lib/ [pentahousr@centos lib]# ls |grep mysql-connector* mysql-connector-java-5.1.34-bin.jar Modificar la conexión JDBC de Tomcat. Editar y modificar el archivo context.xml ubicado en biserver-ce 5.0.1tomcatwebappspentahoMETA-INF según se muestra. /opt/pentaho/biserver-ce/tomcat/webapps/pentaho/META-INF [pentahousr@centos]# vi context.xml Código original. <Resource name="jdbc/Hibernate" auth="Container" type="javax.sql.DataSource" factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5" maxWait="10000" username="hibuser" password="password" driverClassName="org.hsqldb.jdbcDriver" url="jdbc:hsqldb:hsql://localhost/hibernate" validationQuery="select count(*) from INFORMATION_SCHEMA.SYSTEM_SEQUENCES" /> <Resource name="jdbc/Quartz" auth="Container" type="javax.sql.DataSource" factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5" maxWait="10000" username="pentaho_user" password="password" driverClassName="org.hsqldb.jdbcDriver" url="jdbc:hsqldb:hsql://localhost/quartz" validationQuery="select count(*) from INFORMATION_SCHEMA.SYSTEM_SEQUENCES"/> Código modificado. <?xml version="1.0" encoding="UTF-8"?> <Context path="/pentaho" docbase="webapps/pentaho/"> <Resource name="jdbc/Hibernate" auth="Container" type="javax.sql.DataSource" factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5" maxWait="10000" username="hibuser" password="password" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/hibernate" validationQuery="select 1;" /> <Resource name="jdbc/Quartz" auth="Container" type="javax.sql.DataSource" factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5" maxWait="10000" username="pentaho_user" password="password" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/quartz" validationQuery="select 1;"/> </Context Eliminar archivo pentaho.xml Eliminar archivo pentaho.xml (solo si existe) del directorio /opt/pentaho/biserver- ce/tomcat/conf/Catalina/localhost [pentahousr@centos]# cd /opt/pentaho/biserver-ce/tomcat/conf/Catalina/localhost [pentahousr@centos]# ls pentaho.xml Razón: Cuando se inicia Pentaho, se crea una copia del archivo context.xml con el nombre de pentaho.xml [pentahousr@centos]# rm -f pentaho.xml
  • 14. Instalación Pentaho CentOS | Moisés Araya [13] Configurar inicio de BD de ejemplo de HSQL. Editar el archivo web.xml en el directorio biserver-ce-5.0.1tomcatwebappspentahoWEB-INF y solo permitir el inicio de la base de datos de ejemplo de HSQLDB. [pentahousr@centos]# cd /opt/pentaho/biserver-ce/tomcat/webapps/pentaho/WEB-INF [pentahousr@centos]# vi web.xml Código original. <!-- [BEGIN HSQLDB DATABASES] --> <context-param> <param-name>hsqldb-databases</param-name> <param- value>sampledata@../../data/hsqldb/sampledata,hibernate@../../data/hsqldb/hibernate,quartz@../../dat a/hsqldb/quartz</param-value> </context-param> <!-- [END HSQLDB DATABASES] --> Código modificado. <!-- [BEGIN HSQLDB DATABASES] --> <context-param> <param-name>hsqldb-databases</param-name> <param-value>sampledata@../../data/hsqldb/sampledata</param-value> </context-param> <!-- [END HSQLDB DATABASES] --> Guardar, salir y reiniciar servidor. 4.6 Iniciar Pentaho Una vez reiniciado el servidor, ir a la ruta /opt/pentaho/biserver-ce y ejecutar el archivo start-pentaho.sh [pentahousr@centos biserver-ce]# ./start-pentaho.sh /opt/pentaho/biserver-ce /opt/pentaho/biserver-ce DEBUG: Using JAVA_HOME DEBUG: _PENTAHO_JAVA_HOME=/usr/java/jdk1.6.0_45/ DEBUG: _PENTAHO_JAVA=/usr/java/jdk1.6.0_45//bin/java Using CATALINA_BASE: /opt/pentaho/biserver-ce/tomcat Using CATALINA_HOME: /opt/pentaho/biserver-ce/tomcat Using CATALINA_TMPDIR: /opt/pentaho/biserver-ce/tomcat/temp Using JRE_HOME: /usr/java/jdk1.6.0_45/ Using CLASSPATH: /opt/pentaho/biserver-ce/tomcat/bin/bootstrap.jar Ver logs. Adicionalmente y para verificar el correcto inicio del servicio, ir a la ruta /opt/pentaho/biserver- ce/tomcat/logs y validar que no existan errores. [pentahousr@centos ~]# cd /opt/pentaho/biserver-ce/tomcat/logs/ [pentahousr@centos logs]# tail -f catalina.out Mar 18, 2015 1:43:26 PM org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib Mar 18, 2015 1:43:26 PM org.apache.coyote.http11.Http11Protocol init INFO: Initializing Coyote HTTP/1.1 on http-8080
  • 15. Instalación Pentaho CentOS | Moisés Araya [14] Mar 18, 2015 1:43:26 PM org.apache.catalina.startup.Catalina load INFO: Initialization processed in 645 ms Mar 18, 2015 1:43:26 PM org.apache.catalina.core.StandardService start INFO: Starting service Catalina Mar 18, 2015 1:43:26 PM org.apache.catalina.core.StandardEngine start INFO: Starting Servlet Engine: Apache Tomcat/6.0.36 Mar 18, 2015 1:43:26 PM org.apache.catalina.startup.HostConfig deployDescriptor INFO: Deploying configuration descriptor pentaho.xml [Server@68aa41cd]: [Thread[main,5,main]]: checkRunning(false) entered [Server@68aa41cd]: [Thread[main,5,main]]: checkRunning(false) exited [Server@68aa41cd]: Initiating startup sequence... [Server@68aa41cd]: Server socket opened successfully in 1 ms. [Server@68aa41cd]: Database [index=0, id=0, db=file:../../data/hsqldb/sampledata, alias=sampledata] opened sucessfully in 1323 ms. [Server@68aa41cd]: Startup sequence completed in 1325 ms. [Server@68aa41cd]: 2015-03-18 13:43:29.390 HSQLDB server 1.8.0 is online [Server@68aa41cd]: To close normally, connect and execute SHUTDOWN SQL [Server@68aa41cd]: From command line, use [Ctrl]+[C] to abort abruptly Pentaho BI Platform server is ready. (Pentaho Platform Core 5.0.1-stable.-1) Fully Qualified Server Url = http://localhost:8080/pentaho/, Solution Path = /opt/pentaho/biserver-ce/pentaho-solutions Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.HostConfig deployDirectory INFO: Deploying web application directory pentaho-style Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.HostConfig deployDirectory INFO: Deploying web application directory sw-style Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.HostConfig deployDirectory INFO: Deploying web application directory ROOT Mar 18, 2015 1:43:48 PM org.apache.coyote.http11.Http11Protocol start INFO: Starting Coyote HTTP/1.1 on http-8080 Mar 18, 2015 1:43:48 PM org.apache.jk.common.ChannelSocket init INFO: JK: ajp13 listening on /0.0.0.0:8009 Mar 18, 2015 1:43:48 PM org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=0/55 config=null Mar 18, 2015 1:43:48 PM org.apache.catalina.startup.Catalina start INFO: Server startup in 21966 ms Acceder a consola. Abrir un navegador Web y escribir: http://localhost:8080/pentaho