Firewall Port 1433 not opening

前端 未结 5 2103
栀梦
栀梦 2020-12-06 02:50

I am using MS Server 2008 with MSSQL 2008-R2 as database server.

Each time for some work i have to login to server via Remote connection.I tried to configure the S

5条回答
  •  旧巷少年郎
    2020-12-06 03:17

    1. Probably port 1433 is disabled, so enable it using MS WIndows firewall.

    or just use

    netsh firewall set portopening protocol = TCP port = 1433 name = SQLPort mode = ENABLE scope = SUBNET profile = CURRENT
    
    1. Probably MS SQL Server Browser Service is not running. So go to Services and start it.

    or just execute under Run menu

    %windir%\system32\services.msc

    1. Probably TCP/IP channel is disabled under SQL Server 2008/2014 Configuration Manager. SO go there and enable all TCP/IP options.

    1. Just in case at the same place (SQL Server 2008/2014 Configuration Manager) make sure you have 1433 port.

    1. Make sure that SQL server is configured to allow remote connections. Use MS SQL Management Studio and right click on the top node which server itself.

提交回复
热议问题