pentaho-server-ce-7.0安装配置说明

pentaho : pentaho-server-ce-7.0.0.0-25
MYSQL : 5.1.71 
JDK     : 1.8
OS : centos 6.5 
第一次启动
1.先把下载得到的压缩包解压缩到任意位置
2.设置环境变量
3.启动Server
启动成功,但是在启动日志里发现使用的是HSQLDB
先看看成功启动之后的Server界面。
因为BI Server里内置了tomcat
所以打开浏览器输入,http://localhost:8080/pentaho


点[Login as an Evaluator]就可以看到用户名和密码
点任意一个[Go]就能登陆主页面了
尽管bi Server启动但是数据库我们希望能够连上一些常用数据库,比如MySQL
修改数据库连接,使用Mysql


首先解压下载的文件 pentaho-server-ce-7.0.0.0-25.zip
unzip 
1.将下列文件夹中的SQL脚本导入mysql
create_repository_mysql.sql 
创建hibernate 数据库,用于存储用户授权认证,solution repository以及数据源。
create_quartz_mysql.sql
为Quartz计划任务器创建资源库。 




mysql -u root -p
source /opt/pentaho/pentaho-server/data/mysql5/create_repository_mysql.sql;
source /opt/pentaho/pentaho-server/data/mysql5/create_quartz_mysql.sql;
source /opt/pentaho/pentaho-server/data/mysql5/create_jcr_mysql.sql;
source /opt/pentaho/pentaho-server/data/mysql5/sampledata_mysql.sql;


建立测试数据accessinfo数据库
source /opt/pentaho/pentaho-server/data/mysql5/accessinfo.sql;


建立saiku独立测试库


source /opt/saiku-server/data/samplesaiku.sql


2.修改配置文件(修改默认数据库为mysql,如不需要可以不做)
编辑
\biserver-ce\pentaho-solutions\system\applicationContext-spring-security-jdbc.properties
 # The fully qualified Java class name of the JDBC driver to be used
datasource.driver.classname=com.mysql.jdbc.Driver
 # The connection URL to be passed to our JDBC driver to establish a connection
datasource.url=jdbc:mysql://localhost:3306/hibernate
 # The connection username to be passed to our JDBC driver to establish a connection
datasource.username=root
 # The connection password to be passed to our JDBC driver to establish a connection
datasource.password=root
 # The SQL query that will be used to validate connections from this pool before returning them to the caller.# This query must be an SELECT statement that returns at least one row.
 # HSQLDB: SELECT 1 FROM INFORMATION_SCHEMA.SYSTEM_USERS
 # MySQL, H2, MS-SQL, POSTGRESQL, SQLite: SELECT 1
 # Oracle: SELECT 1 FROM DUAL
datasource.validation.query=SELECT USER()
编辑
\biserver-ce\pentaho-solutions\system\applicationContext-spring-security-hibernate.properties
 jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/hibernate
jdbc.username=root
jdbc.password=root
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
编辑
\biserver-ce\pentaho-solutions\system\hibernate\hibernate-settings.xml
 system/hibernate/mysql5.hibernate.cfg.xml
编辑
\biserver-ce\pentaho-solutions\system\quartz\quartz.properties
删除注释
 org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate
编辑
\biserver-ce\pentaho-solutions\system\simple-jndi\jdbc.properties
 SampleData/type=javax.sql.DataSource
SampleData/driver=com.mysql.jdbc.Driver
SampleData/url=jdbc:mysql://localhost:3306/sampledata
SampleData/user=pentaho_user
SampleData/password=password
Hibernate/type=javax.sql.DataSource
Hibernate/driver=com.mysql.jdbc.Driver
Hibernate/url=jdbc:mysql://localhost:3306/hibernate
Hibernate/user=root
Hibernate/password=root
Quartz/type=javax.sql.DataSource
Quartz/driver=com.mysql.jdbc.Driver
Quartz/url=jdbc:mysql://localhost:3306/quartz
Quartz/user=pentaho_user
Quartz/password=password
Shark/type=javax.sql.DataSource
Shark/driver=com.mysql.jdbc.Driver
Shark/url=jdbc:mysql://localhost:3306/shark
Shark/user=root
Shark/password=root
SampleDataAdmin/type=javax.sql.DataSource
SampleDataAdmin/driver=com.mysql.jdbc.Driver
SampleDataAdmin/url=jdbc:mysql://localhost:3306/sampledata
SampleDataAdmin/user=pentaho_admin
SampleDataAdmin/password=password
编辑
\biserver-ce\tomcat\webapps\pentaho\META-INF\context.xml
  
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/pentaho">
  <Resource name="jdbc/Hibernate" auth="Container" type="javax.sql.DataSource"
    factory="org.apache.commons.dbcp.BasicDataSourceFactory" maxActive="20" maxIdle="5"
    maxWait="10000" username="root" password="root"
    driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost:3306/hibernate"
    validationQuery="select user()" />
   
    <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 user()"/>
</Context>
停用默认的HSqlDB
\biserver-ce\tomcat\webapps\pentaho\WEB-INF\web.xml
注释掉
   
  <!-- [BEGIN HSQLDB DATABASES] -->
  <context-param>
    <param-name>hsqldb-databases</param-name>
    <param-value>sampledata@../../data/hsqldb/sampledata,hibernate@../../data/hsqldb/hibernate,quartz@../../data/hsqldb/quartz</param-value>
  </context-param>
  <!-- [END HSQLDB DATABASES] -->
  <!-- [BEGIN HSQLDB STARTER] -->
  <listener>
    <listener-class>org.pentaho.platform.web.http.context.HsqldbStartupListener</listener-class>
  </listener>
  <!-- [END HSQLDB STARTER] -->
编辑
这里的IP,可以开放允许外部访问
  <context-param>
    <param-name>fully-qualified-server-url</param-name>
    <param-value>http://localhost:8080/pentaho/</param-value>
  </context-param>
 复制mysql的驱动包到
\biserver-ce\tomcat\webapps\pentaho\WEB-INF\lib
3.启动bi Server,打开浏览器,新建数据源




 cd /opt/pentaho/pentaho-server
./start-pentaho.sh

猜你喜欢

转载自blog.csdn.net/www_hl/article/details/63744873