DataGrip 连接sqlserver sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target.
时间: 2023-07-01 14:29:40 浏览: 298
Spring boot maven项目报错unable to find valid certification path to requested target
在 DataGrip 连接 SQL Server 时,如果出现 "unable to find valid certification path to requested target" 异常,则可能是由于 DataGrip 不信任目标 SQL Server 的 SSL 证书。为了解决此问题,您可以执行以下操作:
1. 确认目标 SQL Server 的 SSL 证书是否由受信任的颁发机构(CA)签名。如果证书不是由受信任的 CA 签署的,则需要将证书导入到 DataGrip 的证书存储区中。
2. 如果您信任目标 SQL Server 的 SSL 证书,但仍无法建立连接,则可能是由于 DataGrip 不信任证书链中的某个证书。在这种情况下,您可以将证书链文件导入 DataGrip 的证书存储区中。
3. 如果您无法获得目标 SQL Server 的 SSL 证书,则可以使用以下命令来跳过证书验证:
```
-Djavax.net.ssl.trustStore=<path-to-truststore> -Djavax.net.ssl.trustStorePassword=<truststore-password>
```
其中,`<path-to-truststore>` 是信任存储区的路径,`<truststore-password>` 是信任存储区的密码。请注意,此方法不建议在生产环境中使用,因为它会降低安全性。
请注意,DataGrip 的证书存储区通常位于 `lib` 目录下的 `security` 文件夹中。可以使用以下命令来打开 DataGrip 的安装目录:
```
Help -> Edit Custom Properties
```
然后将以下代码添加到打开的文件中:
```
idea.config.path=<path-to-config-folder>
```
其中,`<path-to-config-folder>` 是 DataGrip 配置文件的路径。保存文件后,可以在 DataGrip 的 `bin` 目录下启动 DataGrip。
阅读全文