R-将本地postgresql连接到R.

时间:2017-01-18 20:12:30

标签: r postgresql

我在我的ubuntu本地安装了postgres。 dbname是postgres,用户名也是postgres。当我试图将此数据库连接到我的R脚本时,我收到错误说 -

postgresqlNewConnection中的

错误(drv,...):   RS-DBI驱动程序:(无法在dbname&#34上连接postgres @ localhost; postgres"

这是我正在运行的命令 -

  

con< - dbConnect(drv,dbname =" postgres",                    host =" localhost",port = 5432,                    user =" postgres",password = pw)

我检查过这是运行以建立此连接的正确命令,我之前也使用它来连接到外部服务器。但不知怎的,我无法连接到我当地的postgres实例。

你认为我错过了什么?

0 个答案:

没有答案