无法在Presto上使用PostgresSQL访问LocalHost

时间:2019-02-17 20:21:53

标签: presto

我的Mac上已安装Presto。我也有PostgreSQL。两者都在本地安装。我只打算在本地使用它们。 Presto工作正常。

我遵循了此处列出的文档:

https://prestodb.github.io/docs/current/connector/postgresql.html

connector.name=postgresql
connection-url=jdbc:postgresql://example.net:5432/database
connection-user=root
connection-password=secret

我可以在PostgreSQL中使用任何命令来获取正确的“连接URL”。我一直在尝试以下操作,但无法连接:

 connection-url=jdbc:postgresql://localhost:8080:5432/MyDataBase

同样,我应该下载一个驱动程序吗?我已经尝试了好几个星期,但无法运行连接。

1 个答案:

答案 0 :(得分:0)

不确定这是否是您遇到的唯一问题,但是在连接URL中您指定了两个端口,即8080和5432。

默认情况下,Postgres通常在5432上运行,所以我认为您只需要:

connection-url=jdbc:postgresql://localhost:5432/MyDataBase