From 416113d11a8507db7a364e5ab874c7b07780854c Mon Sep 17 00:00:00 2001 From: congqixia Date: Wed, 10 Dec 2025 19:47:13 +0800 Subject: [PATCH] enhance: Change RootCoord default port to non-ephemeral port (#46256) Related to #46255 Change RootCoord default gRPC port from 53100 to 22125 to avoid conflicts with ephemeral port range. The previous port 53100 falls within the Linux ephemeral port range (32768-60999), which could cause conflicts with other connections including Milvus's own outbound connections. Port 22125 is outside the ephemeral range and provides more reliable service binding. Signed-off-by: Congqi Xia --- configs/milvus.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/milvus.yaml b/configs/milvus.yaml index a214c77fdd..9797ab6868 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -301,7 +301,7 @@ rootCoord: maxGeneralCapacity: 65536 # upper limit for the sum of of product of partitionNumber and shardNumber gracefulStopTimeout: 5 # seconds. force stop node without graceful stop ip: # TCP/IP address of rootCoord. If not specified, use the first unicastable address - port: 53100 # TCP port of rootCoord + port: 22125 # TCP port of rootCoord grpc: serverMaxSendSize: 536870912 # The maximum size of each RPC request that the rootCoord can send, unit: byte serverMaxRecvSize: 268435456 # The maximum size of each RPC request that the rootCoord can receive, unit: byte