This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch rc/2.0.7 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit ad5fc6d0cc949894a49784c969e453cb90d8d26c Author: Haonan <[email protected]> AuthorDate: Thu Jan 22 14:44:48 2026 +0800 Change default dn rpc address (#17060) * Change default dn rpc address * Change default dn rpc address (cherry picked from commit f198b8e4718357ffa2368bd7ef750902911d4c0b) --- .../datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java | 2 +- .../node-commons/src/assembly/resources/conf/iotdb-system.properties | 2 +- .../src/assembly/resources/conf/iotdb-system.properties.template | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java index 64d0dc6d214..a4d540e663a 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/conf/IoTDBConfig.java @@ -125,7 +125,7 @@ public class IoTDBConfig { private int mqttMaxMessageSize = 1048576; /** Rpc binding address. */ - private String rpcAddress = "0.0.0.0"; + private String rpcAddress = "127.0.0.1"; /** whether to use thrift compression. */ private boolean rpcThriftCompressionEnable = false; diff --git a/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties b/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties index 3aef3b45355..4015a4b2f3e 100644 --- a/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties +++ b/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties @@ -39,7 +39,7 @@ cn_internal_address=127.0.0.1 cn_internal_port=10710 cn_consensus_port=10720 -dn_rpc_address=0.0.0.0 +dn_rpc_address=127.0.0.1 dn_rpc_port=6667 dn_internal_address=127.0.0.1 dn_internal_port=10730 diff --git a/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template b/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template index 207c0507093..c8e42c2f0d2 100644 --- a/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template +++ b/iotdb-core/node-commons/src/assembly/resources/conf/iotdb-system.properties.template @@ -73,7 +73,7 @@ cn_consensus_port=10720 # Could set 127.0.0.1(for local test) or ipv4 address # effectiveMode: restart # Datatype: String -dn_rpc_address=0.0.0.0 +dn_rpc_address=127.0.0.1 # Used for connection of IoTDB native clients(Session) # Bind with dn_rpc_address
