|
Skip this step if you are using JIRA Standalone distribution. JIRA Standalone includes the HSQLDB JDBC driver.
lib/ directory.There are two ways to configure your JIRA server to connect to your HSQL database:
Please Note:
The JIRA Configuration Tool is only available with JIRA Standalone.
To connect JIRA to HSQLDB using the JIRA Configuration Tool:

dbconfig.xml file in your JIRA Home Directory. This tool also adds the following elements to this file, which are normally required when running JIRA with HSQLDB:<min-evictable-idle-time-millis>4000</min-evictable-idle-time-millis><time-between-eviction-runs-millis>5000</time-between-eviction-runs-millis>Congratulations — you have finished! Proceed to 'Next Steps' below.
dbconfig.xml file at the root of your JIRA Home Directory.|
Ensure that the |
dbconfig.xml file, escape any '&' characters by adding 'amp;' to the end of each one.
<?xml version="1.0" encoding="UTF-8"?>
<jira-database-config>
<name>defaultDS</name>
<delegator-name>default</delegator-name>
<database-type>hsql</database-type>
<schema-name>PUBLIC</schema-name>
<jdbc-datasource>
<url>jdbc:hsqldb:/path/to/jira/database/jiradb</url>
<driver-class>org.hsqldb.jdbcDriver</driver-class>
<username>sa</username>
<password></password>
<pool-size>15</pool-size>
<min-evictable-idle-time-millis>4000</min-evictable-idle-time-millis>
<time-between-eviction-runs-millis>5000</time-between-eviction-runs-millis>
</jdbc-datasource>
</jira-database-config>
|
<jdbc-datasource/> element are normally required when running JIRA with HSQLDB:<min-evictable-idle-time-millis>4000</min-evictable-idle-time-millis><time-between-eviction-runs-millis>5000</time-between-eviction-runs-millis>dbconfig.xml file (at the root of your JIRA Home Directory).You should now have JIRA configured to connect to your HSQL database.
Please see JIRA and HSQL.