|
|
ART - Use HSQLDB as ART Repository
- Unzip the hsqldb-art.zip file you find in the art-X.Y.zip archive
- Edit the .script file in order to change the password in the line:
CREATE USER ART PASSWORD "xxx" ADMIN
- Obtain the hsqldb.jar jdbc driver-database - you can download the latest driver from http://hsqldb.sourceforge.net.
Copy the driver in the art.war WEB-INF/lib directory or in Tomcat common/lib directory (refer to your Application server documentation if you are not using Tomcat). - Deploy the art.war archive, log in and in the ART Properties page, specify the following:
JDBC url:
jdbc:hsqldb:$HSQL_HOME/art_repository_hsqldb
JDBC driver:
org.hsqldb.jdbcDriver
Username/Password: use the ones you specified at point 2.
$HSQL_HOME is the path where you unzipped the file; use jdbc:hsqldb:C:\tomcat\path_to\art_repository_hsqldb format in MS Win platform
Note: for optimal performance/production environment switch to the hsqldb "in process" mode, see the hsqldb manual for more info.
|
|