Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两台安装了 SQL Server 2008 R2 的虚拟机。他们都可以看到对方,但我无法创建镜像集群,因为它们具有相同的端点端口号。
有可能改变它吗?
解决了
USE master; GO CREATE ENDPOINT [CustomConnection] STATE = STARTED AS TCP (LISTENER_PORT = 1500, LISTENER_IP =ALL) FOR TSQL() ; GO