|
|
|
|
|
| |
|
View
|
|
Discussion
|
|
Edit
|
|
Attachments
|
|
|
|
|
|
On-premise SamePage connecting to Oracle RAC
|
|
|
|
|
|
The SamePage installer by default expects the normal JDBC connection string to connect to Oracle database. This looks something like this: jdbc:oracle:thin:@servername:1521:SID
However, if you plan to use Oracle RAC (Real Application Cluster) , the normal connection string will not work. It needs a connection string that looks like this:
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=host1)(PORT=1512))(ADDRESS=(PROTOCOL=TCP)(HOST=host2)(PORT=1512))
(ADDRESS=(PROTOCOL=TCP))(LOAD_BALANCE=yes)(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=servicename))
(FAILOVER_MODE=(TYPE=SELECT)(METHOD=BASIC)(RETRIES = 180)(DELAY=5))))
You need to do the following during installation of SamePage (for Linux) to connect to a Oracle RAC.
- Download the samepage.zip installable and unzip it as usual. But do not start the install.
- Download the attached ojdbc14.jar and copy it under the Setup lib folder within the exploded zip. Delete the existing driver jars - classes12.jar and classes12.jar.8i
- Start the installation. Remember to specify the full connection string when the installer prompts for DB connection URL.
|
|
|
|
|
|
|