Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Follow the instructions below to set up the OpenEdge.

...

Table of Contents
maxLevel3
minLevel3

...

styleborder:1
locationtop
typeflat
separatorpipe

...

Setup Database And The Database User

...

6. Now use the following commands to create a user and grant the permissions to the database.

Code Block

CREATE USER 'wso2carbon','wso2carbon';
    GRANT dba,resource TO 'wso2carbon';
    COMMIT;

...

Setup Configuration Files

1. Edit the registrydefault database configuration defined in the master-datasources.xml file  file located in the at $GREG_HOME/repository/conf directory /datasources directory of the deployed registry instance as shown below.below. Both the database configurations in registry.xml and user-mgt.xml refer this data source.

Info
titleNote

You have to replace these settings with your custom values.

Code Block

<currentDBConfig>OpenEdge</currentDBConfig>      <datasource>
            <name>WSO2_CARBON_DB</name>
            <description>The datasource used for registry and user manager</description>
            <jndiConfig>
                <name>jdbc/WSO2CarbonDB</name>
            </jndiConfig>
            <dbConfig<definition nametype="OpenEdgeRDBMS">
                <configuration>
                    <url>jdbc:datadirect:openedge://localhost:6767;databaseName=CARBON_DB</url>
                    <userName>wso2carbon</userName><username>regadmin</username>
                    <password>wso2carbon<<password>regadmin</password>
        <driverName>com            <driverClassName>com.ddtek.jdbc.openedge.OpenEdgeDriver</driverName>driverClassName>
                    <maxActive>80</maxActive>
                    <maxWait>60000</maxWait>
                    <minIdle>5</minIdle>
                    <testOnBorrow>true</testOnBorrow>
                    <validationQuery>select 1 from sysprogress.sysdbauth</validationQuery>
                    <validationInterval>30000</validationInterval>
              </dbConfig>  </configuration>
            </definition>
        </datasource>
The database configuration options.
  • url - The URL of the database.
  • userName username - The name of the database user.
  • password - The password of the database user.
  • driverName - 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 negative 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 or <= 0 to wait indefinitely.
  • minIdle - The minimum number of active connections that can remain idle in the pool, without extra ones being created, or 0 to create none.

...

Copy the <OE-insallation-directory>/java/openedge.jar to the $GREG_HOME/repository/components/lib directory.

...

titletip

...

 Here $GREG_HOME

...

 refers to the directory where you run the WSO2 Governance Registry instance.

...

Create Database

Automatic Database Creation

1. Next at the first time you start the registry, run with the -Dsetup option. It will create all the tables in a given OpenEdge database.

  • For Linux:

    Code Block
    
    wso2server.sh -Dsetup

    Image Added

  • For Windows:

    Code Block
    wso2server.bat -Dsetup

...

5. Start the WSO2 Registry instance.

  • For Linux:

    Code Block
    
    wso2server.sh
    
  • For Windows:

    Code Block
    wso2server.bat
    
Excerpt
hiddentrue

Instructions on how to set up Governance Registry with OpenEdge database.