How to configure SQL Express 2012 to accept remote connections
How to configure SQL Express 2012 to accept remote connections When you try to connect to an instance of Microsoft SQL Server 2012 Express from a remote computer, you might receive an error message. INTRODUCTION Named SQL instances listen on dynamic ports. This is the function of the Sql Server Browser Service to inform the clients of the actual port. The Sql Browser listens on UDP 1434 and answers all client request with the port number the current instance is using. Sql Server Browser service is required for both TCP and named pipes protocols. SQL Server Browser is used by clients transparently and there is no need for special configuration. To configure SQL Server 2012 Express to allow remote connections, you must complete these steps: Enable remote connections on the instance of SQL Server that you want to connect to from a remote computer. Configure SQL server to listen on static port Turn on the SQL Server Browser service. Configure the firewall ...