Step 6: Configure the data sources for the Workplace Cell #
The Workplace cell needs to communicate with your i2b2 database and in order to do this it needs to know where the tables for the workdata and hivedata reside. Therefore the sixth and final step in the cell configuration process is to configure the data sources for the Workplace Cell. This information is configured in the work-ds.xml file.
Things to keep in mind when configuring your datasources: #
- The workdata and hivedata tables were created during the chapter on Data Installation.
- The WorkplaceDemoDS points to the data source for your workdata tables.
- The
and need to match the database user you set up for your workdata. In the i2b2 demo database this is i2b2workdata and demouser.
- The
- The WorkplaceBootStrapDS points to the data source for your WORK_DB_LOOKUP table which is a hivedata table.
- The
and need to match the database user you set up for your hivedata. In the i2b2 demo database this is i2b2hive and demouser.
- The
- The
needs to have the following: - The correct JDBC information for your type of database.
- The correct location of the database containing your workdata or hivedata tables. (These may or may not reside in the same location)
- Both the
and need to accurately reflect the type of database you are connecting to.
Steps to configure data sources #
The following steps define how to configure your data sources for the Workplace Cell. These steps include example configurations for Oracle, PostreSQL and SQL Server.
Oracle Database Configuration #
jdbc:oracle:thin:@localhost:1521:xe
oracle.jdbc.OracleDriver
ojdbc6.jar
i2b2hive
demouser
false
false
false
jdbc:oracle:thin:@localhost:1521:XE
oracle.jdbc.OracleDriver
ojdbc6.jar
i2b2workdata
demouser
false
false
false
PostgreSQL Database Configuration #
jdbc:postgresql://localhost:5432/i2b2
org.postgresql.Driver
postgresql-9.2-1002.jdbc4.jar
i2b2hive
demouser
false
false
false
jdbc:postgresql://localhost:5432/i2b2
org.postgresql.Driver
postgresql-9.2-1002.jdbc4.jar
i2b2workdata
demouser
false
false
false
SQL Server Database Configuration #
jdbc:sqlserver://localhost:1433
com.microsoft.sqlserver.jdbc.SQLServerDriver
sqljdbc4.jar
i2b2hive
demouser
false
false
jdbc:sqlserver://localhost:1433
com.microsoft.sqlserver.jdbc.SQLServerDriver
sqljdbc4.jar
i2b2workdata
demouser
false
false
Second Data Source Configuration #
jdbc:oracle:thin:@localhost:1521:xe
oracle.jdbc.OracleDriver
ojdbc6.jar
i2b2workdata
demouser
false
false
false
Note
The above example is for an Oracle database. If your database is SQL Server or PostgreSQL then you will need to copy the