Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 23 Next »

Unknown macro: {scrollbar}

Note: The content on this page is not complete and the features described here are still under development.

Defining a data source on Tomcat

The Pre-configured Installation (PCI) includes sample data and reports; however, if you are evaluating Pentaho you will want to use and display your own data in the BI Platform. The PCI includes an Apache Tomcat 5.5 Application Server, which provides you with the means to connect to your database using JNDI.  For the PCI to access your database, you must configure a data source on Tomcat.  Defining a data source requires a JDBC class name for the database driver, data source URL (server name, port number, database name) and the user ID and password needed to connect the database. Contact your database administrator to get the specific details about your database.
 

 

Follow the instructions below to configure the data source:

  1. In the Administration Console go to Administration > Data Source.
  2. Click + (add) if you cannot find your data source in the list.
  3. In the left panel, type an easy-to-remember JNDI Name. JNDI is an interface that allows an application server to locate your database.
  4. Enter the maximum number of active instances, (Max Active Conn), that can be allocated from this pool at the same time.
  5. Type or select the Driver Class from the list. The database driver name you select depends on the type of database you are accessing. For example, org.hsqldb.jdbcDriver is a sample driver name for a HypersonicSQL database.
  6. Enter the maximum number of connections that can sit idle (# Idle Conn) in this pool at the same time.
  7. Type the User ID and Password required to access your database.
  8. Type or select the URL from the list. This is the URL of your database. For example, jdbc:hsqldb:hsql://localhost/sampledata. JDBC establishes a connection to a SQL-based database and sends and processes SQL statements.
  9. Enter a Validation Query. This SQL query that can be used by the pool to validate connections before they are returned to the application. If specified, this query must be an SQL SELECT statement that returns at least one row.
  10. Enter the maximum number of milliseconds that the pool will "wait" (when there are no available connections) for a connection to be returned before throwing an exception.
  11. Click Test. A success message appears if the connection is established.
  12. Click Update to save your entries.

See also:
http://wiki.pentaho.org/display/Reporting/Creating+a+Data+Source+for+Tomcat
http://wiki.pentaho.org/display/Reporting/4.+Data+Sources

  • No labels