Tomcat JNDI connections
If you installed the Pentaho Server using the manual installation method, then you specified data connections to your Tomcat web application server. If you want to modify existing connections or add more connections, perform the following tasks.
Note: Database connection and network information, such as the username, password, driver class information, IP address or domain name, and port numbers for your Pentaho Repository database are stored in the context.xml file. Modify this file to reflect the database connection and network information to reflect your operating environment. You also modify the values for the validationQuery parameters in this file if you have chosen to use a Pentaho Repository database other than PostgreSQL.
Stop the Tomcat and Pentaho Servers.
Consult your database documentation to determine the class name and connection string for your database.
Edit the
/tomcat/webapps/pentaho/WEB-INF/web.xmlfile.At the end of the
<web-app>element, in the same part of the file where you see<!-- insert additional resource-refs -->, add the following XML snippet:<resource-ref> <description>myDataSource</description> <res-ref-name>jdbc/myDataSource</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>Change the
descriptionandres-ref-namenodes, as well as any others that apply to your situation and fit your database. You may need to consult the JNDI Resources article in the Apache Tomcat documentation to see if there are other components to consider.Save and close the
web.xmlfile.Edit the
/tomcat/conf/context.xmlwith a text editor. Alternatively, you can modify the/tomcat/webapps/pentaho/META-INF/context.xmlfile if you want this data connection to be available only to the Pentaho Server. Adding JNDI connections to thecontext.xmlmakes them available to all of the webapps deployed to this Tomcat instance.Anywhere inside of the
Contextelement, add the following XML snippet:<Resource name="jdbc/myDataSource" auth="Container" type="javax.sql.DataSource" factory="org.apache.tomcat.jdbc.pool.DataSourceFactory" maxActive="20" maxIdle="5" maxWait="10000" username="dbuser" password="password" driverClassName="org.postgresql.Driver" url="jdbc:postgresql://127.0.0.1:5432/myDataSource" />The example above shows a simple PostgreSQL configuration. Replace the Resource name, username, password, driverClassName, and url parameters, or any relevant connection settings, to match your database connection information and the details you supplied in the
web.xmlfile earlier.Save and close the
context.xmlfile.Delete the
pentaho.xmlfiled located in the/tomcat/conf/catalina/directory. Thepentaho.xmlis a cached copy of the context.xml file you modified. Since the cache is not usually configured to update frequently, you have to delete thepentaho.xmlfile and let Tomcat recreate it when it starts up.
Tomcat can now properly connect to your data.
Last updated
Was this helpful?

