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.

1
  • 1
    Hmmm.....even after following all the tips in this, I still can't connect to my SQL server remotely! Commented Dec 19, 2009 at 1:08

2 Answers 2

16

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
3
  • Spot on! That worked! :) Commented May 13, 2009 at 14:34
  • Other think that should should see is of the Broker Service is ON. Commented May 13, 2009 at 15:43
  • The TCP/IP was what was giving me the issues! Thank you! Commented Jul 16, 2020 at 19:34
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.

2
  • You'll also want a static port if you're using impersonation as the delegation trusts require a port number when set up in AD. Commented May 13, 2009 at 14:59
  • Actually, if you want to use Kerberos in any capacity, to include just authentication. Commented May 13, 2009 at 15:09

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.