You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ClickHouse JDBC connector supports three HTTP libraries: [HttpClient](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpClient.html), [HttpURLConnection](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/HttpURLConnection.html), and [Apache HttpClient](https://hc.apache.org/httpcomponents-client-5.2.x/).
267
+
The ClickHouse JDBC connector supports three HTTP libraries: [`HttpClient`](https://docs.oracle.com/en/java/javase/11/docs/api/java.net.http/java/net/http/HttpClient.html), [`HttpURLConnection`](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/HttpURLConnection.html), and [Apache `HttpClient`](https://hc.apache.org/httpcomponents-client-5.2.x/).
268
268
269
269
:::note
270
270
`HttpClient` is only supported in JDK 11 or above.
@@ -292,15 +292,15 @@ To establish a secure JDBC connection to ClickHouse using SSL, you need to confi
292
292
293
293
## SSL Properties
294
294
295
-
| Name | Default Value | Optional Values | Description |
|`sslrootcert`||| Path to SSL/TLS root certificates |
300
+
|`sslcert`||| Path to SSL/TLS certificate |
301
+
|`sslkey`||| RSA key in PKCS#8 format |
302
+
|`key_store_type`|| JKS, PKCS12 | Specifies the type or format of the `KeyStore`/`TrustStore` file |
303
+
|`trust_store`||| Path to the `TrustStore` file|
304
304
|`key_store_password`||| Password needed to access the `KeyStore` file specified in the `KeyStore` config |
305
305
306
306
These properties ensure that your Java application communicates with the ClickHouse server over an encrypted connection, enhancing data security during transmission.
0 commit comments