0% found this document useful (0 votes)
36 views2 pages

Manual Pentaho

The document configures database connection settings for Hibernate, Quartz, and Jackrabbit databases in Tomcat's Pentaho application. It defines 3 JDBC resource connections with usernames, passwords, URLs, and driver classes to PostgreSQL databases. The web.xml file configures Pentaho's solution path and base URL.

Uploaded by

josecovinos
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views2 pages

Manual Pentaho

The document configures database connection settings for Hibernate, Quartz, and Jackrabbit databases in Tomcat's Pentaho application. It defines 3 JDBC resource connections with usernames, passwords, URLs, and driver classes to PostgreSQL databases. The web.xml file configures Pentaho's solution path and base URL.

Uploaded by

josecovinos
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

---------------------- nano /opt/tomcat/webapps/pentaho/META-INF/context.

xml -----
añadirr
<!---
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/pentaho" docbase="webapps/pentaho/">
<Resource name="jdbc/Hibernate" auth="Container"
type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory"
maxActive="20" maxIdle="5"
maxWait="10000" username="hibuser" password="password"
driverClassName="org.postgresql.Driver"
url="jdbc:postgresql://localhost:5432/hibernate"
validationQuery="select 1" />

<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="org.postgresql.Driver"
url="jdbc:postgresql://localhost:5432/quartz"
validationQuery="select 1"/>

<Resource name="jdbc/jackrabbit" auth="Container"


type="javax.sql.DataSource"
factory="org.apache.commons.dbcp.BasicDataSourceFactory"
maxActive="20" maxIdle="5"
maxWait="10000" username="jcr_user" password="password"
driverClassName="org.postgresql.Driver"
url="jdbc:postgresql://localhost:5432/quartz"
validationQuery="select 1"/>

</Context>

-->

-----------------------------nano /opt/tomcat/webapps/pentaho/WEB-
INF/web.xml------------------

<?xml version="1.0"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

<context-param>
<param-name>solution-path</param-name>
<!-- Se añade URL -->
<param-value>/home/pentaho/server/pentaho-server/pentaho-solutions/</param-
value>
<!-- Se añade URL -->
</context-param>

<!-- Se añade URL -->


<context-param>
<param-name>base-url</param-name>
<param-value>http://192.168.13.215:8080/pentaho</param-value>
</context-param>
<!-- Se añade URL -->

You might also like