pentaho7.0將資料庫移植成mysql
Pentaho 內建資料是 hsql. 資料庫。那我們如何換掉移植成 mysql ?
思想:
移植的條件:
1. 首先要有一個 mysql 資料。
2. 將 pentaho 的啟動配置連線到 mysql 上。
我現在做一個將 pentaho7.0 資料庫移植的例子。
1. 首先在 pentaho-server/data/mysql5 資料夾下將裡面 3 個 sql 檔案,在 mysql 下面執行。
步驟是:登陸 mysql –u –p
將 sql 檔案匯入: Source 加檔案路徑
2. 然後就是將 pentaho 的啟動配置連線到 mysql 。
修改配置檔案(修改預設資料庫為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,開啟瀏覽器,新建資料來源
相關文章
- DataX將MySql資料庫資料同步到Oracle資料庫MySql資料庫Oracle
- 資料移植到Oracle資料庫(一)Oracle資料庫
- 將Nacos預設的derby資料庫更換成MySQL排坑資料庫MySql
- Java將頁面中的資料存到MySQL資料庫中,漢字變成問號JavaMySql資料庫
- 如何將資料庫中的資料導成 excel 檔案資料庫Excel
- scrapy爬蟲成長日記之將抓取內容寫入mysql資料庫爬蟲MySql資料庫
- 將高版本mysql資料庫的資料匯入低版本mysql中MySql資料庫
- 將MYSQL資料顯示在QT的tablewidget中/將QT中的資料儲存到MYSQL資料庫中MySqlQT資料庫
- 資料移植文件
- 【資料庫】mysql資料庫索引資料庫MySql索引
- 成為MySQL DBA 部落格系列-資料庫升級MySql資料庫
- [資料庫]【MySQL】MySQL資料庫規範總結資料庫MySql
- 【MySql】mysql 資料庫資料訂正MySql資料庫
- ZT 升級和移植Oracle資料庫方法若干Oracle資料庫
- 資料庫移植後高階複製出錯資料庫
- 資料庫(MySQL)資料庫MySql
- 資料庫-MySQL資料庫MySql
- 資料庫 MySQL資料庫MySql
- MYSQL資料庫MySql資料庫
- MySQL資料庫資料管理MySql資料庫
- Mysql資料庫-資料模型MySql資料庫模型
- Facebook將花費幾年時間將資料庫遷移到MySQL 8.0資料庫MySql
- MySQL預設資料庫之mysql庫MySql資料庫
- 將pentaho資料庫遷移到oracle資料庫資料庫Oracle
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- 將現有MySQL資料庫改為大小寫不敏感MySql資料庫
- 輕鬆地將PHP會話儲存在MySQL資料庫PHP會話MySql資料庫
- log4j+JDBC+mySQL 將物件寫入資料庫JDBCMySql物件資料庫
- MySQL資料庫遷移與MySQL資料庫批量恢復MySql資料庫
- 【MySQL 資料庫】MySQL目錄MySql資料庫
- 成為MySQL DBA後,再看ORACLE資料庫(十三、物理備份)MySqlOracle資料庫
- 寶塔資料庫恢復 mysql資料庫丟失恢復 mysql資料庫刪除庫恢復 寶塔mysql資料庫恢復資料庫MySql
- MySQL資料庫(二)MySql資料庫
- MySQL 資料庫操作MySql資料庫
- Mysql建立資料庫MySql資料庫
- 【Mysql】資料庫原理MySql資料庫
- 【6】MySQL資料庫MySql資料庫
- DB-Engines 2019 年度資料庫出爐:MySQL 成為年度資料庫贏家資料庫MySql