You can connect IntelliJ to Redshift using the JDBC driver provided by Amazon. In the Redshift Console, go to the "Connect Client" to get the driver.
Then, in the IntelliJ data source window, add the JAR as a driver file and use the following settings:
- Class: com.amazon.redshift.jdbc41.Driver
- URL pattern: jdbc: redshift: // {host}: {port} / {database}
Common errors:
- If the driver file is not readable or is marked as quarantined in OS X, you cannot select the driver class.
See this blog post for more on this: Connect IntelliJ to Redshift
Note. IntelliJ has no built-in Redshift support. IntelliJ Issue DBE-1459
source share