Difference between revisions of "Install Oracle"
(→Driver Installation) |
|||
Line 31: | Line 31: | ||
..where /home/oracle/jdbc is the directory containing the ‘ojdbc8.jar’ file.<br> | ..where /home/oracle/jdbc is the directory containing the ‘ojdbc8.jar’ file.<br> | ||
+ | |||
+ | = Connection Details = | ||
+ | FMR requires a database to be specified on the first page of the Install Wizard. This can be changed at a later from the Administrator "Database Settings" page. | ||
+ | |||
+ | Oracle by default uses port 1521. If you wish to make a custom connection to Oracle, the information you will likely need is: | ||
+ | |||
+ | {| class="wikitable" style="vertical-align:top; text-align:left;" | ||
+ | ! Connection String | ||
+ | || Of the form: | ||
+ | jdbc:sqlserver://<server url>:<server port>;databaseName=<your database> | ||
+ | <br/> | ||
+ | e.g. jdbc:sqlserver://localhost:1433;databaseName=fusion_registry | ||
+ | |- | ||
+ | ! Dialect | ||
+ | || org.hibernate.dialect.SQLServerDialect | ||
+ | |- | ||
+ | ! Class Name | ||
+ | || com.microsoft.sqlserver.jdbc.SQLServerDriver | ||
+ | |} | ||
+ | |||
+ | |||
+ | Here are some examples of a database custom string working correctly: | ||
+ | |||
+ | Conenction String: | ||
+ | |||
+ | jdbc:oracle:thin:@localhost:1521/orcl12c | ||
+ | |||
+ | jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl12c))) | ||
+ | jdbc:oracle:thin:@ (DESCRIPTION = (ADDRESS_LIST = (LOAD_BALANCE=off) (FAILOVER = ON) (ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)) ) (CONNECT_DATA=(SERVER=dedicated)(SERVICE_NAME=orcl12c) ) ) | ||
+ | |||
+ | Dialect: org.hibernate.dialect.Oracle10gDialect | ||
+ | Class Name: oracle.jdbc.driver.OracleDriver | ||
+ | |||
+ | 1) | ||
+ | jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl12c))) | ||
+ | 2) | ||
+ | jdbc:oracle:thin:@ | ||
+ | (DESCRIPTION = (ADDRESS_LIST = (LOAD_BALANCE=off) (FAILOVER = ON) (ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)) ) | ||
+ | (CONNECT_DATA=(SERVER=dedicated)(SERVICE_NAME=orcl12c) ) ) |
Revision as of 08:06, 13 October 2022
Contents
Overview
Oracle may be used to act as the persistant store for Registry information. However the JDBC driver that communicates from the Registry to an Oracle instance is not provided within FMR and must be obtained by a Systems Administrator.
Obtaining and Specifying the Oracle JDBC Driver
To get FMR to communicate succesfully with an Oracle database, there are three tasks to perform:
- Obtain the correct dependency file
- Supply this to your Java Web Server (e.g. Tomcat) that you are using to run FMR.
- Specify the appropriate Credentials to FMR.
Obtaining the Oracle Connector Dependency
FMR supports the 'ojdbc8' Thin JDBC Driver with Java JRE / JDK versions 1.8 or higher.
The driver consists of a single ‘jar’ file: 'ojdbc8.jar'.
The ‘jar’ file is not included as part of the FMR distribution so must be obtained and installed separately prior to starting the application.
‘ojdbc8.jar’ can be downloaded from Oracle using the following link (accurate at the timne of writing this article). Download Oracle odbc8.jar.
Driver Installation
The ‘ojdbc8.jar’ must be supplied via the Java CLASSPATH.
The recommended option is to add the filesystem location of the ‘ojdbc8.jar’ to the CLASSPATH of the application server. If using Apache Tomcat, this can be done by setting the CLASSPATH environment in the Tomcat ~/bin/setenv.sh script.
For example:
CLASSPATH=/home/oracle/jdbc/ojdbc8.jar
..where /home/oracle/jdbc is the directory containing the ‘ojdbc8.jar’ file.
Connection Details
FMR requires a database to be specified on the first page of the Install Wizard. This can be changed at a later from the Administrator "Database Settings" page.
Oracle by default uses port 1521. If you wish to make a custom connection to Oracle, the information you will likely need is:
Connection String | Of the form:
jdbc:sqlserver://<server url>:<server port>;databaseName=<your database>
|
---|---|
Dialect | org.hibernate.dialect.SQLServerDialect |
Class Name | com.microsoft.sqlserver.jdbc.SQLServerDriver |
Here are some examples of a database custom string working correctly:
Conenction String:
jdbc:oracle:thin:@localhost:1521/orcl12c
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl12c))) jdbc:oracle:thin:@ (DESCRIPTION = (ADDRESS_LIST = (LOAD_BALANCE=off) (FAILOVER = ON) (ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)) ) (CONNECT_DATA=(SERVER=dedicated)(SERVICE_NAME=orcl12c) ) )
Dialect: org.hibernate.dialect.Oracle10gDialect Class Name: oracle.jdbc.driver.OracleDriver
1) jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=orcl12c))) 2) jdbc:oracle:thin:@ (DESCRIPTION = (ADDRESS_LIST = (LOAD_BALANCE=off) (FAILOVER = ON) (ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521)) )
(CONNECT_DATA=(SERVER=dedicated)(SERVICE_NAME=orcl12c) ) )