Wiki source code of H2 Installation

Version 4.1 by Vincent Massol on 2013/12/21

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc/}}{{/box}}
2
3 [[H2>>http://h2database.com]] is a fast, free, in-memory or disk-based java database.
4
5 Follow these instructions to use it with XWiki:
6
7 * H2 is a very simple database to configure as you don't need to install nor to start it before being able to use it. It comes as a single JAR file named ##h2*.jar##. You'll need to [[download this JAR>>http://www.h2database.com/html/download.html]] and copy it in your ##WEB-INF/lib## directory.
8 * Once this is done, you need to configure XWiki to use H2 and to tell it where the database files will be created. To do this, edit the ##WEB-INF/hibernate.cfg.xml## file where you have expanded the XWiki WAR file and uncommented the H2 part. If you're using an old version of XWiki you won't find a commented out section for H2. In this case, use the following:(((
9 {{code language="xml"}}
10 <property name="connection.url">jdbc:h2:${environment.permanentDirectory}/database/xwiki</property>
11 <property name="connection.username">sa</property>
12 <property name="connection.password"></property>
13 <property name="connection.driver_class">org.h2.Driver</property>
14 <property name="dialect">org.hibernate.dialect.H2Dialect</property>
15 {{/code}}
16 )))
17
18 = Using a JDBC DataSource =
19
20 {{code language="xml"}}
21 <property name="connection.datasource">java:comp/env/jdbc/XWikiDS</property>
22 <property name="dialect">org.hibernate.dialect.H2Dialect</property>
23 {{/code}}
24
25 = Using a remote H2 instance =
26
27 {{code language="xml"}}
28 <property name="connection.url">jdbc:h2:tcp://remotehost/xwiki23</property>
29 {{/code}}
30
31 On the H2 side, here's one way to have H2 running on a remote machine:
32
33 {{code language="bash"}}
34 java -cp ./h2-1.2.136.jar org.h2.tools.Server -web -tcp -tcpAllowOthers -baseDir /var/spool/javadb/h2
35 {{/code}}
36
37 Thus any database you create will be stored in this location, so with the above example you will have a database called ##/var/spool/javadb/h2/xwiki23##.

Get Connected