问题
我的 SQL 服务器和客户端 (Compass/myQA) 是单独安装的。在普通的安装步骤后,不能正常连接。如何为 SQL 设置远程连接?
回答
请遵循以下步骤来配置 SQL 的远程连接:
步骤一
开启 SQL 服务器的远程连接。
- 打开 SQL Server Management Studio.
- 右键点击您的服务器名称并选择 Properties.
- 勾选 Allow remote connections to this server.
- 选择 OK.
步骤二
开启 TCP/IP
- 打开 SQL Server Configuration Manager
- 在 SQL Server Network Configuration 中启动 TCP/IP
- 重启服务器
步骤三
防火墙配置
- 打开 Windows Firewall with Advanced Security
- 在 Inbound Rules 中 - 右键点击 - New Rules
- TCP 规则
-
- 在 Rule Type 页面选择 Port
- 在 Protocol and Ports 页面, 选择 TCP - Specific local ports - 输入 TCP 端口(默认是 1433)
- 在 Action 页面选择 Allow the connection
- 在 Profile 页面通常选择所有三个选项
- 在 Name 页面给新规则命名
-
- UDP 规则
-
- 在 Rule Type 页面选择 Port
- 在 Protocol and Ports 页面, 选择 UDP - Specific local ports - 输入 UDP 端口(默认是 1433)
- 在 Action 页面选择 Allow the connection
- 在 Profile 页面通常选择所有三个选项
- 在 Name 页面给新规则命名
-
- SQL 服务器规则
-
- 在 Rule Type 页面选择 Custom
- 在 Program 页面点击 Customize
- 选择 Apply to this service
- 在列表中选择您的 SQL 实例
- 在 Name 页面给新规则命名
- 为 SQL 浏览器重复同样步骤
-
结束。