我在我的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实例。
你认为我错过了什么?