I have SQL Server 2008 installed on a VM in which I have three instances:
- server name
- server name\DB1
- server name\DB2
From my local machine I am trying to use Management Studio to connect to those three instances. I can connect without any problem to the server name instance but when trying to connect to the other two it fails with error:
"A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections"
I have already verified that all three instances allow remote connections, the port is the default one on all three, all of them have the TCP/IP protocol enabled and I can connect locally to all three by using the server name \ instance name format.
What else could possibly be preventing me from connecting to the two named instances?
Thank you.
[server ip address]
to the remote servers? If you can use the IP address and cannot use the server name, then it's likely the server's aren't publishing their name on the network. If you can't connect with the IP address, then there is likely a firewall somewhere that is blocking access. It would help if you describe more specifically what all three instances allow remote connections [on the default port] means. – James L.