I have three SQL Server 2008 instances running on a cluster. SQLInstance1 is listening on default port 1433, SQLInstance2 is listening on port 39999 and SQLInstance3 is listening on port 49999. Can SQLInstance2 listen on port 39999 and 49999 when SQLInstance2 and SQLInstance3 are running on the same node of the Windows2008 cluster?
Asked
Active
Viewed 103 times
0
-
Huh? Are you asking if two instances can share the same port? – pauska Oct 01 '12 at 19:51
-
Your question does not make any sense. Can you see about editing it to clean it up? Its unanswerable as is. – Brent Pabst Oct 01 '12 at 20:23
1 Answers
2
The answer is no. On the same server or on a node of a cluster, you cannot have two instances of SQL listen on the same port number. The first instance that starts up will bind to that port number, and once the other instance tries to start up with the same port number it will receive an 'bind to port' or 'tcp port already in use' error.

Patrick Keisler
- 226
- 1
- 2