This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch seprate_client_internal_keystruststore
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to
refs/heads/seprate_client_internal_keystruststore by this push:
new 005d6612a4a Seprate client and internal SSL configurations
005d6612a4a is described below
commit 005d6612a4af44995de8715291e106ffac3aa0a7
Author: HTHou <[email protected]>
AuthorDate: Mon Sep 29 19:31:41 2025 +0800
Seprate client and internal SSL configurations
---
.../main/java/org/apache/iotdb/commons/conf/CommonConfig.java | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java
index 61fb4874e63..1ad7065f523 100644
---
a/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java
+++
b/iotdb-core/node-commons/src/main/java/org/apache/iotdb/commons/conf/CommonConfig.java
@@ -444,19 +444,19 @@ public class CommonConfig {
private String trustStorePwd = "";
/** Enable the cluster internal connection ssl. */
- private boolean enableInternalSSL = true;
+ private boolean enableInternalSSL = false;
/** ssl key Store Path for internal connection */
- private String internalKeyStorePath = "/Users/ht/.keystore";
+ private String internalKeyStorePath = "";
/** ssl key Store password for internal connection */
- private String internalKeyStorePwd = "123456";
+ private String internalKeyStorePwd = "";
/** ssl trust Store Path for internal connection */
- private String internalTrustStorePath = "/Users/ht/.truststore";
+ private String internalTrustStorePath = "";
/** ssl trust Store password for internal connection */
- private String internalTrustStorePwd = "123456";
+ private String internalTrustStorePwd = "";
private String userEncryptTokenHint = "not set yet";