Reputation: 2996
I have two virtual machines with SQL Server 2008 R2 installed on them. They both can see each other, but I can't create mirrored cluster, as the have same endpoint port number.
Is it possible to change it?
Upvotes: 1
Views: 262
Reputation: 2996
Solved
USE master; GO CREATE ENDPOINT [CustomConnection] STATE = STARTED AS TCP (LISTENER_PORT = 1500, LISTENER_IP =ALL) FOR TSQL() ; GO
Upvotes: 1