I am looking in SQL Server Configuration Manager, 'Protocols for SQLEXPRESS'
And IP1, IP2, IP3, IP4, and IPALL have the TCP Port blank.
Should that be 1433 or it will default to that?
|
I am looking in SQL Server Configuration Manager, 'Protocols for SQLEXPRESS' And IP1, IP2, IP3, IP4, and IPALL have the TCP Port blank. Should that be 1433 or it will default to that?
| ||||
|
feedback
|
|
If you want to use a specific port like 1443, you have to set it manually. The default instance will use port 1433 by default, if TCP is enabled and the settings are left unchanged. A named instance will use a dynamic port by default. So the question really boils down to wether the Express instance is named or default (assuming the port number in the OP is a typo). Update If the Configuration Manager says 'Protocols for SQLEXPRESS' it means the Express instance is a named one so it will use dynamic ports. You have to change the settings to use port 1433. | |||||
feedback
|
|
If you are trying to get SQL Express to accept remote connections, it does not do this by default. You must enable this feature. Here is the KB for doing so. KB914277 | |||
feedback
|
|
By default SQL Express instances will use dynamic ports so the SQL Browser service is there to help clients connect. You can set a static port if you wish in SQL Configuration Manager. | |||
|
feedback
|