postgresql – DataGrip Postgres SSL错误:sun.security.validator.ValidatorException

前端之家收集整理的这篇文章主要介绍了postgresql – DataGrip Postgres SSL错误:sun.security.validator.ValidatorException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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://本地主机:5432 /代表sslmode =需要

原文链接:https://www.f2er.com/postgresql/191875.html

猜你在找的Postgre SQL相关文章