windows-server-2008 – 远程连接sql server无法正常工作,但如果防火墙禁用它呢?

前端之家收集整理的这篇文章主要介绍了windows-server-2008 – 远程连接sql server无法正常工作,但如果防火墙禁用它呢?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Windows 2008服务器上安装了sql server express 2008.我已经在sql中完成了所有标准的东西以允许远程连接.奇怪的是,如果我禁用Windows 2008服务器firewalll ..它的工作原理.

我在服务器防火墙上打开了一个1433端口.并且tcp已启用,是否有其他端口我不知道..我也打开1434 …

在TCP属性下,我已经为ip启用了tcp(当然这部分必须是因为我禁用防火墙才能工作)并且端口号留空,动态端口为0

我尝试将端口号设置为1434并将动态端口设置为空白.

仍然没有快乐.

我有运行sql浏览器服务器和命名管道..

我在我的电脑上运行我的测试,没有防火墙和通过sql管理工作室.

我肯定错过了什么

非常感谢任何人都可以提供帮助..我被困住了

谢谢

可能你忘了执行这个命令:
netsh firewall set portopening TCP 1433 "sqlServer"

您可以尝试此Microsoft支持文章的新“修复”功能How do I open the firewall port for SQL Server on Windows Server 2008?

页面还包含一个脚本,删除行,如果您不需要sql Service Broker,调试器,https等.

@echo =========  sql Server Ports  ===================
@echo Enabling sqlServer default instance port 1433
netsh firewall set portopening TCP 1433 "sqlServer" 
@echo Enabling Dedicated Admin Connection port 1434
netsh firewall set portopening TCP 1434 "sql Admin Connection" 

...

netsh firewall set portopening UDP 1434 "sql Browser" 
@echo Allowing multicast broadcast response on UDP (Browser Service Enumerations OK)
netsh firewall set multicastbroadcastresponse ENABLE
原文链接:https://www.f2er.com/windows/368144.html

猜你在找的Windows相关文章