...
Table of Contents | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
|
...
Set up database and database user
1. Download and install OpenEdge on you computer if it is not already done.
...
7. Now log out from the SQL explorer by typing "exit."
Set up configuration files
1. Edit the default database configuration defined in the master-datasources.xml
file located at <PRODUCT
_HOME>/repository/conf/datasources
directory as below. Both the database configurations in registry.xml
and user-mgt.xml
refer this data source.
...
Code Block | ||
---|---|---|
| ||
<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:datadirect:openedge://localhost:6767;databaseName=CARBON_DB</url> <username>regadmin</username> <password>regadmin</password> <driverClassName>com.ddtek.jdbc.openedge.OpenEdgeDriver</driverClassName> <maxActive>80</maxActive> <maxWait>60000</maxWait> <minIdle>5</minIdle> <testOnBorrow>true</testOnBorrow> <validationQuery>SELECT 1</validationQuery> <validationInterval>30000</validationInterval> </configuration> </definition> </datasource> |
The database configuration options.
- url - The URL of the database.
- 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.
Info | ||
---|---|---|
| ||
Please note that we do not support running User Manager on OpenEdge in this release. |
Setup Drivers
Copy the <OE-insallation-directory>/java/openedge.jar
to the <PRODUCT_HOME>/repository/components/lib
directory. Here <PRODUCT_HOME>
refers to the directory where you run the product instance.
Create Database
Automatic Database Creation
1. Next at the first time you start the server, run with the -Dsetup option. It will create all the tables in a given OpenEdge database.
...
2. The product is configured to run with the OpenEdge database.
Manual Database Creation
1. For creating the tables manually, the OpenEdge script provided with the product has to be modified.
...