DataGrip Postgres SSL error: sun.security.validator.Validato



DataGrip 无法连接到我的 Postgres 实例,但我可以通过终端上的 psql 正常连接:

psql -h dbhost.com reps username
>Password for user... (connects)

但是,IntelliJ DataGrip抛出:

Connection to username@dbhost.com failed.
SSL error: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

它使用的连接字符串是jdbc:postgresql://dbhost.com:5432/dbname

尝试禁用数据库属性窗口中"SSH/SSL"选项卡中的 SSL 复选框。

然后将?sslmode=require追加到"常规"选项卡中的 URL,使其如下所示: jdbc:postgresql://localhost:5432/reps?sslmode=require

数据库property窗口中Advanced选项卡中将sslmode更改为disable

相关内容

  • 没有找到相关文章

最新更新