Div | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||
On this page
|
Summary
Section | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
Confluence Installation with Tomcat
Many users install the standard Confluence standalone distribution that includes Tomcat. This section will discuss the configuration specific to this application server environment. The most recent versions of Confluence use newer versions of the Tomcat application server where the following configuration examples apply:
JDBC driver location
Put the driver jar in <install-dir>/lib - this is the directory that holds other tomcat jars. If you have a much older version of Confluence without this directory, look for <install-dir>/common/lib instead.
Tomcat configuration
Modify <install-dir>/conf/server.xml to add one or more data source resource elements. Server.xml is an example of adding data sources for various local and non-local databases.
The essential element looks like the sample code mentioned below, where the data source name is myDS:
Code Block |
---|
<Resource name="jdbc/myDS" auth="Container" type="javax.sql.DataSource" username="confluence" password="confluence" maxTotal="25" maxWaitMillis="10000" maxIdle="10" driverClassName="org.postgresql.Driver" url="jdbc:postgresql://localhost:5432/mydatabase" validationQuery="Select 1" /> |
Tip | ||
---|---|---|
| ||
|
Tip | ||
---|---|---|
| ||
Refer to this stack overflow question, to know more about validationQuery with respect to a JNDI data source. |
Database examples
The SQL macro markup would be: {sql:dataSource=myDS| ... } See Examples - 10.x.
Further configuration management
See how to limit active database connections.
Other databases
Support for other databases depends on the capabilities provided by the JDBC driver. SQL requires that certain JDBC features are available. In some cases, parameter choices can affect capabilities. User testing and community support are the only help resources available for less popular databases or JDBC drivers. If you have had success with other databases, please mention the same in comments on this page.
Problem determination
See Troubleshooting Application Server-based Data Sources - 10.x.
Include Page info:css - pre formatted info:css - pre formatted