Installing the PostgreSQL JDBC connector
- Download the PostgreSQL JDBC Driver from the PostgreSQL website.
- Rename the JDBC jar file to
postgresql-connector-java.jar
.mv postgresql-jdbc.jar postgresql-connector-java.jar
- Copy the PostgreSQL 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 SQL Stream Builder as a service in Cloudera Manager.
scp <location>/postgresql-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 PostgreSQL JDBC jar file to
/usr/share/java
folder using the following command:sudo mkdir -p /usr/share/java sudo cp <location>/postgresql-connector-java.jar /usr/share/java
- Check if the PostgreSQL connector is in the folder with
ls
command.