简体   繁体   中英

pentaho integration with mysql-5.X

When I was trying to replace the hsqldb with the mysql-5.XI get the following error with quartz error failed to initialize:-

Pentaho Initialization Exception

The following errors were detected One or more system listeners failed. These are set in the systemListeners.xml.

   PentahoSystem.ERROR_0014 - Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener

Please see the server console for more details on each error detected.

Did you run the quartz scripts which setup the quartz db? they are provided in the solution repository.

Otherwise pastebin the full log, it's impossible to tell without more info. suspect somewhere you'll either have a authentication issue, or no mysql driver in your classpath.

For a clear guide on how to do this, follow here:

http://www.prashantraju.com/2010/12/pentaho-3-7-with-mysql-postgresql-oracle-and-sql-server/

I also received the error message

PentahoSystem.ERROR_0014 – Error while trying to execute startup sequence for org.pentaho.platform.scheduler.QuartzSystemListener

when trying to bring up the service. I found this solution after searching a few different threads:

Remove commented out portion of these properties (or copy and paste from here, and modify as necessary) in quartz.properties (located in pentaho-solutions/system/quartz ):

org.quartz.dataSource.quartz.driver = com.mysql.jdbc.Driver
org.quartz.dataSource.quartz.URL = jdbc:mysql://localhost:3306/quartz
org.quartz.dataSource.quartz.user = pentaho_user
org.quartz.dataSource.quartz.password = password
org.quartz.dataSource.quartz.maxConnections = 5
org.quartz.dataSource.quartz.validationQuery= select 1

Also comment out the JNDI Url:

#org.quartz.dataSource.myDS.jndiURL = Quartz

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM