Installing the Oracle JDBC connector
- Download the Oracle JDBC Driver from the Oracle website.
- Rename the JDBC jar file to
oracle-connector-java.jar
.mv ojdbc8-19.3.0.0.jar oracle-connector-java.jar
- Copy the Oracle JDBC jar file to your host.This host must be the same host where you plan to assign the Streaming SQL Engine service role. The service roles are assigned as a next step when installing Cloudera SQL Stream Builder as a service in Cloudera Manager.
scp <location>/oracle-connector-java.jar root@<your_hostname>:
You will be prompted to provide your password. - Access the host on your cluster.This host must be the same host where you have added the JDBC jar file.
ssh root@<your_hostname>
You will be prompted to provide your password. - Copy the Oracle JDBC jar file to
/usr/share/java
folder using the following command:sudo mkdir -p /usr/share/java sudo cp <location>/oracle-connector-java.jar /usr/share/java sudo chmod 644 /usr/share/java/oracle-connector-java.jar
- Check if the Oracle connector is in the folder with
ls
command.