您好我正在尝试连接到在Virtualbox Centos中运行的本地Postgres Db,它通过SSL隧道连接。我通过DBeaver连接的示例如下所示。
Postgres Virtualbox port forward
我没有ssl隧道的Java代码就是这个
DriverManager.getConnection("jdbc:postgresql://localhost:5432/dbName?user=postgresuser&password=givepassword");
这是失败的说pg_hba.conf
没有找到等或者如果我在连接字符串中给ssl=true
,说它不受支持..如何使用ssl隧道连接到本地数据库?
[我的假设是pg_hba.conf文件只能在Virtualbox Host Vm上使用。]