在SQL Server Always On可用性组™的主/辅助副本上执行以下查询时
SELECT DISTINCT local_tcp_port,protocol_type,num_reads,num_writes
FROM sys.dm_exec_connections
WHERE local_net_address is not null;
显示两个用于数据库镜像协议的本地tcp端口,5022
&63420
Server Name local_tcp_port protocol_type num_reads num_writes
ServerName 5022 Database Mirroring 102942598 5
ServerName 63420 Database Mirroring 5 89655349
该5022
端口是预期的,因为它是配置为镜像端点的端口。
另一个似乎是一个动态端口,为什么使用这个端口?
它可能与以下事实有关:一个显示大量的读取(5022
),而另一个显示大量的写入(63420
)。
内部版本:13.0.5264.1