11

How do I enable remote connections on an SQL Server 2008 installation?

I have created a rule in the windows firewall to allow traffic through port 1433, but that does not seem to be enough.

Kjensen
  • 1,039
  • 10
  • 28
  • 39

2 Answers2

15

SQL Server Configuration Managaer

  • SQL Server Network Configuration

    • Protocols for MSSQLServer

    • Enable TCP/IP

Also in SQL server Mgmt Studio on the server

  • Right click the server
  • Properties
  • Connections
  • Make sure "Allow remote connections to this server" is checked
womble
  • 96,255
  • 29
  • 175
  • 230
CPU_BUSY
  • 2,332
  • 17
  • 17
3

If it's a named instance, you'll also want to set the TCP/IP port to a static value and enable that in the firewall. Otherwise it's a dynamic port, meaning it could change over time.

K. Brian Kelley
  • 9,034
  • 32
  • 33