...
Edit the default datasource configuration for storing user management and registry data as shown below. The database configurations in
registry.xml
anduser-mgt.xml
refer files refer to this datasource.Code Block language xml <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:postgresql://localhost:5432/gregdb</url> <username>regadmin</username> <password>regadmin</password> <driverClassName>org.postgresql.Driver</driverClassName> <maxActive>80</maxActive> <maxWait>60000</maxWait> <minIdle>5</minIdle> <testOnBorrow>true</testOnBorrow> <validationQuery>SELECT 1</validationQuery> <validationInterval>30000</validationInterval> </configuration> </definition> </datasource>
Following are the database configuration options:
url - The URL of the database.
username - The name of the database user.
password - The password of the database user.
driverClassName - The class name of the database driver.
maxActive - The maximum number of active connections that can be allocated from this pool at the same time, or enter a negative value for no limit.
maxWait - The 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.
minIdle - The minimum number of active connections that can remain idle in the pool without extra ones being created, or enter zero to create none.
testOnBorrow - The 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.
validationQuery - The 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.Info For more information on other parameters that can be defined in the
master-datasources.xml
file, see Tomcat JDBC Connection Pool.Edit the default datasource configuration for storing RSS meta data as shown below. The RSS meta data specific configurations in the
rss-config.xml file
refers to this datasource.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>
...
Open the
rss-config.xml
file stored in the<PRODUCT_HOME>/repository/conf/etc/
directory and do the following changes:Code Block language html/xml <Provider>POSTGRES</Provider> <Environments> <Environment> <Name>DEFAULT</Name> <RSSInstances> <RSSInstance> <Name>WSO2RSS1</Name> <InstanceType>SYSTEM</InstanceType> <DbmsType>POSTGRES</DbmsType> <ServerCategory>LOCAL</ServerCategory> <DataSourceConfiguration> <Definition> <Url>jdbc:postgresql://localhost:5432</Url> <Username>postgres</Username> <Password>postgres</Password> <DriverClassName>org.postgresql.Driver</DriverClassName> </Definition> </DataSourceConfiguration> </RSSInstance> </RSSInstances> </Environment> </Environments>
Open the
persistence.xml
file stored in the<PRODUCT_HOME>/repository/conf/etc/
directory and do change the properties as shown below.Code Block <property name="openjpa.ConnectionDriverName" value="org.postgresql.xa.PGXADataSource" /> <property name="dialect" value="org.apache.openjpa.jdbc.sql.PostgresDictionary" />