Skip to content

Commit 586333c

Browse files
committed
update for compliance
removed oracle jdbc from source tree added notes in documentation about jdbc drivers
1 parent 146ffb1 commit 586333c

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

doc/setup.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
* Unzip the distribution archive into a filesystem directory of choice. Example: `/opt/openregistry-loader-0.1-SNAPSHOT`. This directory will be referred to as `$OR_LOADER_DIST_HOME`
66

7+
* Place JDBC driver jar for your SORs in `$OR_LOADER_DIST_HOME/lib`. Note: This file might have to be extracted from an
8+
archive file; Please follow instructions at the following sites.
9+
* Oracle: http://www.oracle.com/technetwork/database/features/jdbc/index-091264.html
10+
* PostgreSQL: http://jdbc.postgresql.org/download.html
11+
* Microsoft SQL Server: http://msdn.microsoft.com/en-us/sqlserver/aa937724.aspx
12+
* MySQL: http://dev.mysql.com/downloads/connector/j/
13+
714
* Create loader configuration directory `/etc/openregistry`. This directory will be referred to as `$OR_LOADER_CONFIG_HOME`
815

916
* Run the `$OR_LOADER_DIST_HOME/etc/dml/wipe_and_load_oracle.sql` DML script (IMPORTANT! - only done once, initially.
@@ -13,14 +20,13 @@ objects, Open Registry schema objects (with its local reference data), OR Loader
1320
* Copy `$OR_LOADER_DIST_HOME/etc/openregistry/config` directory to `$OR_LOADER_CONFIG_HOME`
1421

1522
* Configure JDBC connection properties in `$OR_LOADER_CONFIG_HOME/config/openregistry.properties` with values of the local target Oracle RDBMS. Example config of local development instance of Oracle. For example:
16-
17-
`jdbc.driver.classname=oracle.jdbc.OracleDriver`
18-
19-
`jdbc.url=jdbc:oracle:thin:@localhost:1521:orcl`
20-
21-
`db.username=ORC`
2223

23-
`db.password=ORC`
24+
```properties
25+
jdbc.driver.classname=oracle.jdbc.OracleDriver
26+
jdbc.url=jdbc:oracle:thin:@localhost:1521:orcl
27+
db.username=ORC
28+
db.password=ORC
29+
```
2430

2531
* Configure mappings for each SOR in `$OR_LOADER_CONFIG_HOME/config/config.groovy`.
2632

lib/ojdbc7-12.1.0.1.jar

-3.24 MB
Binary file not shown.

0 commit comments

Comments
 (0)