com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_link3' is unknown.

Changing to Embedded H2

The following sections describe how to replace the default H2 database with Embedded H2:Ā 

Before you begin

Setting up configuration files

Configuration properties

Following are the datasource configuration properties:

PropertyDescription
urlThe URL of the database.
userNameĀ The name of the database user.
passwordThe password of the database user.
driverClassNameThe class name of the database driver.
maxActiveThe maximum number of active connections that can be allocated from this pool at the same time, or enter a negative value for no limit.
maxWaitThe maximum number of milliseconds that the pool will wait (when there are no available connections) for a connection to be returned before throwing an exception. You can enter zero or a negative value to wait indefinitely.
minIdleThe minimum number of active connections that can remain idle in the pool, without extra ones being created, or enter zero to create none.
testOnBorrowThe indication of whether objects will be validated before being borrowed from the pool. If the object fails to validate, it will be dropped from the pool, and another attempt will be made to borrow another.Ā 
validationQueryThe SQL query that will be used to validate connections from this pool before returning them to the caller.
validationInterval

The indication to avoid excess validation, and only run validation at the most, at this frequency (time in milliseconds). If a connection is due forĀ validation,Ā but has been validated previously within this interval, it will not be validated again.Ā 

For more information on other parameters that can be defined in the datasource xmlĀ file, see Tomcat JDBC Connection Pool.

Configuration files

Follow the steps given below to set up the configuration files:

  1. The default datasource configuration is defined in theĀ master-datasources.xmlĀ file, located in the <IoTS_HOME>/conf/datasources/Ā directory. The database configurations inĀ registry.xmlĀ andĀ user-mgt.xmlĀ refer to theĀ WSO2_CARBON_DBĀ datasource.

    Edit the WSO2_CARBON_DB, WSO2_MB_STORE_DB and WSO2AM_DBĀ datasources in the master-datasources.xml file by replacing theĀ url, username, passwordĀ andĀ driverClassName settings with your custom values and also the other values accordingly.

    WSO2_Carbon_DB Datasource
    <datasource>
       <name>WSO2_CARBON_DB</name>
       <description>The datasource used for registry and user manager</description>
       <jndiConfig>
          <name>jdbc/WSO2CarbonDB</name>
       </jndiConfig>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/WSO2CARBON_DB;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <minIdle>5</minIdle>
             <testOnBorrow>true</testOnBorrow>
             <validationQuery>SELECT 1</validationQuery>
             <validationInterval>30000</validationInterval>
          </configuration>
       </definition>
    </datasource>
    WSO2_MB_STORE_DB Datasource
    <datasource>
       <name>WSO2_MB_STORE_DB</name>
       <description>The datasource used for message broker database</description>
       <jndiConfig>
          <name>jdbc/WSO2MBStoreDB</name>
       </jndiConfig>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/WSO2MB_DB;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <testOnBorrow>true</testOnBorrow>
             <validationQuery>SELECT 1</validationQuery>
             <validationInterval>30000</validationInterval>
             <defaultAutoCommit>false</defaultAutoCommit>
          </configuration>
       </definition>
    </datasource>
    WSO2AM_DB Datasource
    <datasource>
       <name>WSO2AM_DB</name>
       <description>The datasource used for API Manager database</description>
       <jndiConfig>
          <name>jdbc/WSO2AM_DB</name>
       </jndiConfig>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/WSO2AM_DB;DB_CLOSE_ON_EXIT=FALSE</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <testOnBorrow>true</testOnBorrow>
             <validationQuery>SELECT 1</validationQuery>
             <validationInterval>30000</validationInterval>
          </configuration>
       </definition>
    </datasource>
  2. Configure theĀ WSO2_ANALYTICS_EVENT_STORE_DBĀ andĀ WSO2_ANALYTICS_PROCESSED_DATA_STORE_DBĀ datasources in theĀ analytics-datasources.xml, located in the Ā fileĀ <IoTS_HOME>/analytics/repository/conf/datasourcesĀ directory.

    Edit the WSO2_ANALYTICS_EVENT_STORE_DB and WSO2_ANALYTICS_PROCESSED_DATA_STORE_DB datasources in the analytics-datasources.xml file by replacing theĀ url, username, passwordĀ andĀ driverClassName settings with your custom values and also the other values accordingly.

    WSO2_ANALYTICS_EVENT_STORE_DB Datasource
    <datasource>
       <name>WSO2_ANALYTICS_EVENT_STORE_DB</name>
       <description>The datasource used for analytics record store</description>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/ANALYTICS_EVENT_STORE;AUTO_SERVER=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <validationQuery>SELECT 1</validationQuery>
             <defaultAutoCommit>false</defaultAutoCommit>
             <initialSize>0</initialSize>
             <testWhileIdle>true</testWhileIdle>
             <minEvictableIdleTimeMillis>4000</minEvictableIdleTimeMillis>
          </configuration>
       </definition>
    </datasource>
    WSO2_ANALYTICS_PROCESSED_DATA_STORE_DB Datasource
    <datasource>
       <name>WSO2_ANALYTICS_PROCESSED_DATA_STORE_DB</name>
       <description>The datasource used for analytics record store</description>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/ANALYTICS_PROCESSED_DATA_STORE;AUTO_SERVER=TRUE;DB_CLOSE_ON_EXIT=FALSE;LOCK_TIMEOUT=60000</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <validationQuery>SELECT 1</validationQuery>
             <defaultAutoCommit>false</defaultAutoCommit>
             <initialSize>0</initialSize>
             <testWhileIdle>true</testWhileIdle>
             <minEvictableIdleTimeMillis>4000</minEvictableIdleTimeMillis>
          </configuration>
       </definition>
    </datasource>Ā 
  3. Configure the theĀ WSO2_METRICS_DBĀ datasource in theĀ metrics-datasources.xmlĀ file,Ā located in the Ā fileĀ <IoTS_HOME>/conf/datasourcesĀ directory.Ā 

    Edit the WSO2_METRICS_DB datasources in the metrics-datasources.xml file by replacing theĀ url, username, password,Ā andĀ driverClassName settings with your custom values and also the other values accordingly.

    WSO2_METRICS_DB Datasource
    <datasource>
       <name>WSO2_METRICS_DB</name>
       <description>The default datasource used for WSO2 Carbon Metrics</description>
       <jndiConfig>
          <name>jdbc/WSO2MetricsDB</name>
       </jndiConfig>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/WSO2METRICS_DB;DB_CLOSE_ON_EXIT=FALSE;AUTO_SERVER=TRUE</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <testOnBorrow>true</testOnBorrow>
             <validationQuery>SELECT 1</validationQuery>
             <validationInterval>30000</validationInterval>
             <defaultAutoCommit>true</defaultAutoCommit>
          </configuration>
       </definition>
    </datasource>
  4. Configure the theĀ DM_DSĀ datasource in theĀ cdm-datasources.xmlĀ file located in theĀ <IoTS_HOME>/conf/datasourcesĀ directory.Ā 

    Edit the DM_DS datasources in the cdm-datasources.xml file by replacing theĀ url, username, passwordĀ andĀ driverClassName settings with your custom values and also the other values accordingly.

    DM_DS Datasource
    <datasource>
       <name>DM_DS</name>
       <description>The datasource used for CDM</description>
       <jndiConfig>
          <name>jdbc/DM_DS</name>
       </jndiConfig>
       <definition type="RDBMS">
          <configuration>
             <url>jdbc:h2:repository/database/WSO2DM_DB;DB_CLOSE_ON_EXIT=FALSE</url>
             <username>wso2carbon</username>
             <password>wso2carbon</password>
             <driverClassName>org.h2.Driver</driverClassName>
             <maxActive>50</maxActive>
             <maxWait>60000</maxWait>
             <testOnBorrow>true</testOnBorrow>
             <validationQuery>SELECT 1</validationQuery>
             <validationInterval>30000</validationInterval>
          </configuration>
       </definition>
    </datasource>
  5. Configure all the device plugin datasources by editing theĀ <PLUGIN_NAME>-datasources.xmlĀ file of the respective pluginĀ by replacing theĀ url,Ā username,Ā passwordĀ andĀ driverClassNameĀ settings with your custom values and also the other values accordingly.

    Example: Android plugin datasource
    <datasource>
        <name>Android_DB</name>
        <description>The datasource used as the Android Device Management database</description>
        <jndiConfig>
            <name>jdbc/MobileAndroidDM_DS</name>
        </jndiConfig>
        <definition type="RDBMS">
            <configuration>
                <url>jdbc:h2:repository/database/WSO2MobileAndroid_DB;DB_CLOSE_ON_EXIT=FALSE
                </url>
                <username>wso2carbon</username>
                <password>wso2carbon</password>
                <driverClassName>org.h2.Driver</driverClassName>
                <maxActive>50</maxActive>
                <maxWait>60000</maxWait>
                <testOnBorrow>true</testOnBorrow>
                <validationQuery>SELECT 1</validationQuery>
                <validationInterval>30000</validationInterval>
            </configuration>
        </definition>
    </datasource>

Creating database tables

Create the database tables eitherĀ manually by running a scriptĀ orĀ automatically by using a startup parameterĀ as described below.

Using the script

You can create theĀ database tables manually by executing the H2 script in the shell or web console:

DatabaseDB Script name and Location

WSO2_CARBON_DB

<IoTS_HOME>/dbscripts//h2.sql

WSO2AM_DB

<IoTS_HOME>/dbscripts//apimgt/h2.sql

WSO2_MB_STORE_DB

<IoTS_HOME>/wso2/broker/dbscripts/mb-store/h2.sql

WSO2_ANALYTICS_EVENT_STORE_DB


WSO2_ANALYTICS_PROCESSED_DATA_STORE_DB


WSO2_METRICS_DB

<IoTS_HOME>/dbscripts//metrics/h2.sql

DM_DS<IoTS_HOME>/dbscripts//cdm/h2.sql

Device plugin databases

Example: Arduino_DB

<IoTS_HOME>/dbscripts//cdm/plugins/<PLUGIN_NAME>/h2.sql

Example:

<IoTS_HOME>/dbscripts//cdm/plugins/android/h2.sql

Follow the steps below to run the H2 script in web console:Ā 

The following steps need to be repeated to create database tables for the various databases.

  1. Navigate to the folder with the respective dbscripts.
  2. Run theĀ ./h2.shĀ command to start the web console.
  3. Copy the script text from the SQL file.
  4. Paste it into the console.
  5. ClickĀ Run.

After setting up all the database tables, start the server by executing one of the following commands:

  • For Linux:

    sh wso2server.sh
  • For Windows:

    wso2server.bat

Using a startup parameter

You can create database tables automatically when starting the product for the first time by using theĀ -DsetupĀ parameter as follows:

  • For Linux:

    sh wso2server.sh -Dsetup
  • For Windows:

    wso2server.bat -Dsetup
com.atlassian.confluence.content.render.xhtml.migration.exceptions.UnknownMacroMigrationException: The macro 'next_previous_links2' is unknown.