Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just installed SQL Server Express 2012 on my home server. I'm trying to connect to it from Visual Studio 2012 from my desktop PC, and repeatedly getting the well-known 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. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)

What I've done to try to fix this:

  • Run SQL Server Configuration Manager on the server and enable SQL Server Browser
  • Add a Windows Firewall exception on the server for TCP, ports 1433 and 1434 on the local subnet.
  • Verify that I have a login on the SQL Server instance for the user I'm logged in as on the desktop.
  • Verify that I'm using Windows Authentication on the SQL Server instance.
  • Repeatedly restart SQL Server and the whole dang server.
  • Pull all my hair out.

How can I get SQL Server 2012 Express to allow remote connections!?

share|improve this question

6 Answers

up vote 152 down vote accepted

Well, glad I asked. The solution I finally discovered was here:

How do I configure SQL Server Express to allow remote tcp/ip connections on port 1433?

  1. Run SQL Server Configuration Manager.
  2. Go to SQL Server Network Configuration > Protocols for SQLEXPRESS.
  3. Make sure TCP/IP is enabled.

So far, so good, and entirely expected. But then:

  1. Right-click on TCP/IP and select Properties.
  2. Verify that, under IP2, the IP Address is set to the computer's IP address on the local subnet.
  3. Scroll down to IPAll.
  4. Make sure that TCP Dynamic Ports is blank. (Mine was set to some 5-digit port number.)
  5. Make sure that TCP Port is set to 1433. (Mine was blank.)

(Also, if you follow these steps, it's not necessary to enable SQL Server Browser, and you only need to allow port 1433, not 1434.)

These extra five steps are something I can't remember ever having had to do in a previous version of SQL Server, Express or otherwise. They appear to have been necessary because I'm using a named instance (myservername\SQLEXPRESS) on the server instead of a default instance. See here:

Configure a Server to Listen on a Specific TCP Port (SQL Server Configuration Manager)

share|improve this answer
10  
Thank-you, thank-you, thank-you. – Adam A Jul 18 '12 at 14:18
1  
If SQL Server Express is not the only instance, it might be necessary to UNASSIGN port 1433 on other instances. I had a 2008 R2 default instance (MSSQLSERVER), and the only way I can connect to both of them from outside is to assign port 1433 to the 2012 instance (per above) and change the port assignments for the older default instance to TCP Dynamic Ports = "0" and TCP Port = "" (blank). Doing it the other way around gave access only to the default instance. – Robert Calhoun Sep 18 '12 at 21:20
4  
you saved my ass +1 dude, wish I could do more – zipstory.com Oct 18 '12 at 23:37
4  
That IPAll setting was the SAVIOR advice! Mine was like yours... :D – Leniel Macaferi Dec 16 '12 at 1:20
2  
On Windows 8 and SQL 2012 Express SP1 installed to SQLEXPRESS instance I had to set dynamic ports to anything other than blank (if you deleted it, set to 0 then it will re-calculate a new random port for you) AND also open BOTH TCP 1433 and UDP 1434 incoming port rules in the Advanced Firewall control panel. When dynamic ports was blank the SQL Server just hung on start-up. – Code Chief Mar 30 at 0:54
show 13 more comments

You can also set

Listen All to NO

in the protocol dialog then in the IP address IP1 (say)

set enabled to Yes,

define yr IP address,

set TCP Dynamic to Blank and

TCP port to 1433 (or whatever)

share|improve this answer

On my installation of SQL Server 2012 Developer Edition, installed with default settings, I just had to load the SQL Server Configuration Manager -> SQL Server Network Configuration -> Protocols for MSSQLSERVER and change TCP/IP from Disabled to Enabled.

share|improve this answer
Quick note: for me, this didn't work. The wrong IP was in there for some reason. However, Kyralessa's steps did the trick since they invovled updating the IP. – Brian MacKay Jan 10 at 15:19

I had a different problem from what all of the answers so far mentioned!

I should start off by saying that I had it in Visual Studio, and not SQL Server Express but the solution should be exactly the same.

Well, god, it's actually really simple and maybe a bit foolish. When I tried to create a database and Visual Studio suggested the name of the SQL Server it gave me my Windows username and since it's actually the name of the server I went for it.

In reality it actually was my Windows username + \SQLEXPRESS. If you didn't change any settings this is probably yours too. If it works, stop reading; this is my answer. If it doesn't work maybe the name is different.

If, like me, you only had this problem in Visual Studio to check what is yours follow these steps:

  1. Open SQL Server Management Studioicon.
  2. If you don't see your server (docked to the left by default) press F8 or go to View -> Object Explorer.
  3. Right click on the name of the server and choose Properties (The last item)
  4. At the bottom left you can see your server's actual name under "Server" (not Connection, but above it).

This is the name of the server and this is what you should attempt to connect to! not what Visual Studio suggests!

share|improve this answer

You can use this to solve this issue:

Go to START > EXECUTE, and run CLICONFG.EXE.

The Named Pipes protocol will be first in the list.Demote it, and promote TCP/IP.

Test the application thoroughly.

I hope this help.

share|improve this answer

All you need to do is open the relevant port on the server's firewall.

share|improve this answer
1  
Unfortunately, that is not "all you need to do". There are quite a few other steps that need to be taken, as outlined in the accepted answer above. – saluce Jan 11 at 23:01
2  
Actually, in my case this WAS all I needed to do, so unfairly marked down and actually useful input. – MagicalArmchair Mar 31 at 17:33
1  
Adding a rule to open port 1433 was what fixed it for me. – GiddyUpHorsey May 9 at 2:24

protected by Community Apr 10 at 15:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.