...
Create a database as the RSS metadata repository and a database user with admin privileges equivalent to the DBA role (this grants access to the database used as the RSS metadata repository).
Info Please note that this database should be created in a database server which is The database used as the metadata repository as well as all the database instances that you are going to provision (in every environment of your system), should be of the same RDBMS type you are going to provision.
- Select the SQL script appropriate to the RDBMS you have from
<SS_HOME>/d
bscripts directory and run it. This creates the RSS metadata repository database structure. For example, if your RDBMS is MySQL, the script you must run is<SS_HOME>/d
bscripts /rss-manager/mysql/wso2_rss_mysql.sql directory. - Add the required JDBC drivers for the database you selected to <SS_HOME>/repository/components/lib folder.
- Create a datasource in the
<PRODUCT_HOME>/repository/conf/datasources/master-datasources.xml
file and point to that from the<PRODUCT_HOME>/repository/conf/etc/rss-config.xml
file using its JNDI name. Shown below is how the default metadata repository ("rss_db") is configured in these files.The default master-datasources.xml file.
Localtabgroup Localtab active true title SQL SERVER SQL SERVER configurations:
Code Block language html/xml <datasource> <name>MetadataRepo</name> <jndiConfig> <name>MetadataRepoDS</name> </jndiConfig> <definition type="RDBMS"> <configuration> <dataSourceClassName>com.microsoft.sqlserver.jdbc.SQLServerXADataSource</dataSourceClassName> <dataSourceProps> <property name="serverName">192.168.17.21</property> <property name="portNumber">1433</property> <property name="databaseName">rss_db</property> <property name="user">RootUser</property> <property name="password">RootPassword</property> </dataSourceProps> </configuration> </definition> </datasource>
In this example, it uses Microsoft JDBC driver to connect to the database. You have to configure SQL Server to use XA datasource before configuring Storage Server. Configuration instructions can be found at http://msdn.microsoft.com/en-us/library/aa342335.aspx.
Info You can also use jTDS JDBC driver instead of Microsoft driver. Then
dataSourceClassName
in the above configuration should benet.sourceforge.jtds.jdbcx.JtdsDataSource
. The server configuration instructions for XA datasources can be found in the README.XA file in the jTDS driver distribution pack.Localtab title MySQL MySQL configurations:
Code Block language html/xml <datasource> <name>MetadataRepo</name> <jndiConfig> <name>MetadataRepoDS</name> </jndiConfig> <definition type="RDBMS"> <configuration> <dataSourceClassName>com.mysql.jdbc.jdbc2.optional.MysqlXADataSource</dataSourceClassName> <dataSourceProps> <property name="URL">jdbc:mysql://localhost:3306/rss_db</property> <property name="user">RootUser</property> <property name="password">RootPassword</property> </dataSourceProps> </configuration> </definition> </datasource>
Localtab title PostgreSQL PostgreSQL configurations:
Code Block language html/xml <datasource> <name>MetadataRepo</name> <jndiConfig> <name>MetadataRepoDS</name> </jndiConfig> <definition type="RDBMS"> <configuration> <dataSourceClassName>org.postgresql.xa.PGXADataSource</dataSourceClassName> <dataSourceProps> <property name="serverName">localhost</property> <property name="portNumber">5432</property> <property name="databaseName">rss_db</property> <property name="user">RootUser</property> <property name="password">RootPassword</property> </dataSourceProps> </configuration> </definition> </datasource>
Info When creating above database user, make sure to grant all privileges for the database before creating any tables in it (i.e. before you run the database script on database).
The elements of the sample configuration are explained below. You can use this information to edit the file according to your requirements. For more information please see configuring master datasources.
<dataSourceClassName>: This is the XA Driver Class provided by the JDBC driver used to connect to the type of RDBMS in which the RSS metadata repository is configured. E.g., if RSS metadata repository database is configured on MySQL - "
com.mysql.jdbc.jdbc2.optional.MysqlXADataSource
" has to be used as the value of this particular attribute.<dataSourceProps>: Root element of the XA data source property collection that needs to be configured in order to initialize the XA datasource driver used in the RSS metadata repository configuration.
<property name="property_name">: Element used to specify bean properties of the XA datasource driver used in RSS metadata repository configuration. (Note: The set of properties that are to be configured are different based on the XA driver class used). E.g., the sample configuration which can be used to populate the bean properties required for MySQL XA driver is as follows:
Code Block language html/xml <dataSourceProps> <property name = "URL">xxxx</property> <property name = "user">xxxx</property> <property name = "password">xxxx</property> </dataSourceProps>
The default
rss-config.xml
file configuration for the metadata repository is shown below. Please note that JNDI name of both config files should be the same. In this example, it is "MetadataRepoDS".Code Block language html/xml <ManagementRepository> <DataSourceConfiguration> <JndiLookupDefinition> <Name>MetadataRepoDS</Name> </JndiLookupDefinition> </DataSourceConfiguration> </ManagementRepository>