Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading