How To Connect To A Remote SQL Server
How To Connect To A Remote SQL Server
SQLShack Español
In this article, we will explain step by step how to connect remotely to a SQL Server Express instance.
Remote access is the ability to get access to a SQL Server from a remote distance in order to
manipulate data which are located on that SQL Server.
There are two types of adjustments which must be set before connecting to the remote SQL Server.
These settings are important because without them the connection to the remote SQL Server will not
be able to be successfully created
Configuration settings:
In order to allow access to SQL Server instance, we have to enable TCP/IP protocol which is not
enabled by default. TCP/IP (Transmission Control Protocol/Internet Protocol) is a set of protocols
developed to allow networked computers to share resources over the network. It was developed by
DARPA under the ARPANET in the early 1970s.
In order to establish a successful remote connection is to set up appropriate ports through the
Window Firewall. In SQL Server there are two types of instances. First is a default instance and the
second is a named instance. To connect to the default instance of Database Engine, or named instance
that is the only instance installed on the machine, the TCP port 1433 is the only port that you need to
specify.
But if you have multiple name instances installed on your machine, to connect with one of them, we
must provide a port number which corresponding to appropriate instance name. By default named
instance used dynamic port, which means that every time when the Database Engine starts new port
number is assigned. Because of that it is difficult to configure Windows Firewall to enable access.
In order to resolve this problem, there is a SQL Browser service, which provide the TCP port number
that corresponds to the named instances. The SQL Browser services use UDP port 1434. Now we met
with the basic matters relating to remote connection, let’s continue with the setup procedure.
E bli TCP/IP t
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ l 1/15
16/4/2018 How to connect to a remote SQL Server
Enabling TCP/IP protocol
The first step is to enable TCP/IP protocol on the SQL Server service. Open the SQL Server
Configuration Manager in the Configuration Tools folder under the Microsoft SQL Server folder:
From the SQL Server Network Configuration node, select the Protocols item for the appropriate
SQL Server. In the details pane, right click the TCP/IP item and select the Enable option:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 2/15
16/4/2018 How to connect to a remote SQL Server
After this step the Warning box pop up in which informs us that changes that are made won’t take
effect until the next time service is started.
In order for the changes take effect, from console pane, select the SQL Server Services and from the
details pane, right click the SQL Server (SQLEXPRESS) database engine instance and click the Restart
option:
Now the service started with TCP/IP enabled, but still can’t connect remotely until we configure the
Windows Firewall.
From the Control Panel choose Windows Firewall and click the Advanced settings or just type
wf.msc in Search program and files from the Start menu:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 3/15
16/4/2018 How to connect to a remote SQL Server
Inbound Rules: You can allow or block traffic attempts to access the computer that matches
certain criteria in the rule. By default inbound traffic is blocked, to allow traffic to access
computer, you need to create inbound rule.
Outbound Rules: You can allow or block traffic originating from specifying computer creating
rules. By default outbound traffic is allowed, so you need to create the rule that block outbound
traffic.
In the Windows Firewall with Advanced Security, click the Inbound Rules from the left pane, right
click Inbound Rules and select the New Rule or from the Actions pane click the New Rule:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 4/15
16/4/2018 How to connect to a remote SQL Server
On which you will click, it’s up to you. In both case the New Inbound Rule Wizard will appear. Under
the Rule Type choose Port and click the Next button:
From this link you can more informed of all rule types which are shown in the image above.
In the Protocols and Ports there are a several options that you can choose, depending on which type
of protocols you select.
If you are wondering what is the difference between the TCP and UDP protocols you can find from this
link.
As we mentioned at the beginning of the article TCP is used for the default instance and named
instance if is the only instance installed on the machine and default port is 1433.
All local ports: Rule applies on all ports from the selected protocol.
Specific local ports: In the text box you specify a port or set of ports to which the rule applies.
For this example, select the UDP protocol and in the Specific local ports enter port number 1434. To
proceed with the settings SQL Browser services, click the Next button:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 5/15
16/4/2018 How to connect to a remote SQL Server
In the Action dialog choose Allow the connection and click the Next button:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 6/15
16/4/2018 How to connect to a remote SQL Server
In the Profile dialog choose all three profiles and click the Next:
On this step give the rule a name and click the Finish.
Note: When we give the name of the rule, please write some descriptive name that you can
understand later, when you need to find them or edit in the Inbound Rules list.
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 7/15
16/4/2018 How to connect to a remote SQL Server
Go to the New Rule and from the Rule Type select the Custom rule:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 8/15
16/4/2018 How to connect to a remote SQL Server
From the Customize Service Settings under Apply to this service select database engine instance
service and click the OK button:
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 9/15
16/4/2018 How to connect to a remote SQL Server
Then click the Next all the way to the Name dialog, give rule a name and click the Finish:
Now when all rules are set up, you are ready to connect to remote SQL Server.
Start the SQL Server, in the dialog window for the Server name enters the name of the instance that
you want to connect with. From the Authentication drop down box, select the SQL Server
Authentication and for the field Login and the Password enter your credentials then click the
Connect button.
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 10/15
16/4/2018 How to connect to a remote SQL Server
See more
Consider these free tools for SQL Server that improve database developer productivity.
Related posts
Marko Zivkovic
Marko is a Mechanical engineer, who likes to play basketball, foosball (table-
soccer) and listen to rock music. He is interested in SQL code, PHP development,
HTML and CSS techniques.
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 11/15
16/4/2018 How to connect to a remote SQL Server
Related Posts:
1. SQL Server network configuration
2. Querying remote data sources in SQL Server
3. How to migrate your database to an Azure Virtual Machine
4. Configuring the Azure SQL Database Firewall
5. Using Power BI Desktop to connect to SQL Server and Facebook
Maintenance
75,841 Views
Sort by Best
Recommend 12 ⤤ Share
LOG IN WITH
OR SIGN UP WITH DISQUS ?
Name
Thank you very much for your feedback. I'm glad that I could
help.
5△ ▽ • Reply • Share ›
Ž >
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 12/15
16/4/2018 How to connect to a remote SQL Server
Marko Živković > Jeff Stevens • 5 months ago
Hi Jeff,
Thanks for the comment and you're very welcome. I'm glad
that you liked the article and that you find it useful.
Best regards,
Marko
6△ ▽ • Reply • Share ›
see more
6△ ▽ • Reply • Share ›
Yes, you are right and many thanks for the kind words
6 R l Sh
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 13/15
16/4/2018 How to connect to a remote SQL Server
6△ ▽ • Reply • Share ›
.
Here is shown how to connect SQL Server through Internet
5△ ▽ • Reply • Share ›
information and the steps that you did for connect via public ip and we
will try
to help you.
Thx
5△ ▽ • Reply • Share ›
thanks a lot!
5△ ▽ • Reply • Share ›
What’s new in SQL Server Management Understanding SQL Server query plan
Studio 17.4; Always On AG dashboard … cache
2 comments • 4 months ago 1 comment • 3 months ago
Ahmad Zuhair Yaseen — Many thanks Michael Prashanth Jayaram — Hello Ben,Thanks for
Avatarfor you comment here.This happens when you Avatarthe work. The content gives a good baseline to
have the option "Enable Parameterization for understand advanced concepts such as Query
Migrating SSRS content with PowerShell How to implement a graph database in SQL
2 comments • 3 months ago Server 2017
Craig — Hi Alberto, Sorry I didn't get back to 2 comments • 4 months ago
Avataryou sooner. For SSRS 2017 you can use the Esat Erkeç — Hello Wolney Marconi
REST API based PowerShell commands in the AvatarMaiaThanks for your thoughts about
article.Unfortunately I can not allow copy entire
https://www.sqlshack.com/how-to-connect-to-a-remote-sql-server/ 15/15