I tried to create JDBC connection with Amazon Redshift in R. Following the instruction under https://aws.amazon.com/blogs/big-data/connecting-r-with-amazon-redshift/, I created the following:
driver <- JDBC("com.amazon.redshift.jdbc42.Driver", "RedshiftJDBC42-1.2.1.1001.jar", identifier.quote="`")
url <- "jdbc:redshift://xxxxxx.us-east-1.redshift.amazonaws.com
:5439/user=xxx&password=xxx"
conn <- dbConnect(driver, url)
Everything works except that the last row gave me the error message of the following:
Error in .jcall(drv@jdrv, "Ljava/sql/Connection;", "connect", as.character(url)[1], : java.sql.SQLNonTransientConnectionException: Error message not found: CONNECTION_REFUSED. Can't find bundle for base name com.amazon.dsi.core.impl.JDBCMessages, locale en
Any thoughts?