使用 GORM 连接到 SQLServer
Connecting to SQLServer with GORM
我正在使用下面的语句尝试打开与最新下载的 SQLServer Express 的连接。
import (
"fmt"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/mssql"
"log"
)
db, err := gorm.Open("mssql", "sqlserver://tony:Password6!@localhost:1433?database=go_user")
语句导致错误:
2019/09/30 10:29:16 Unable to open tcp connection with host
'localhost:1433': dial tcp [::1]:1433: connectex: No connection could
be made because the target machine actively refused it. panic: Unable
to open tcp connection with host 'localhost:1433': dial tcp
[::1]:1433: connectex: No connection could be made because the target
machine actively refused it.
有人在 Golang 上使用 GORM 成功连接到 SQLServer Express 吗?
TCP 端口 1433 是 SQL Server
的默认端口。此端口也是 SQL 服务器的官方互联网号码分配机构 (IANA) 套接字号码。客户端系统使用 TCP 1433 连接到数据库引擎; SQL Server Management Studio (SSMS) 使用该端口跨网络管理 SQL 服务器实例。您可以重新配置 SQL Server
以侦听不同的端口,但 1433 是目前最常见的实现方式。
但是,如果您仍想打开它,请按照以下步骤操作:
步骤 1
可能 TCP/IP 频道在 SQL Server Configuration Manager
下被禁用。所以去那里启用所有 TCP/IP 选项。
步骤 2
以防万一在同一个地方SQL Server Configuration Manager
确保你有1433端口。
步骤 3
确保 SQL 服务器配置为允许远程连接。使用 MS SQL Management Studio 并右键单击服务器本身的顶部节点。
功劳来自找到的解决方案 here。
我正在使用下面的语句尝试打开与最新下载的 SQLServer Express 的连接。
import (
"fmt"
"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/mssql"
"log"
)
db, err := gorm.Open("mssql", "sqlserver://tony:Password6!@localhost:1433?database=go_user")
语句导致错误:
2019/09/30 10:29:16 Unable to open tcp connection with host 'localhost:1433': dial tcp [::1]:1433: connectex: No connection could be made because the target machine actively refused it. panic: Unable to open tcp connection with host 'localhost:1433': dial tcp [::1]:1433: connectex: No connection could be made because the target machine actively refused it.
有人在 Golang 上使用 GORM 成功连接到 SQLServer Express 吗?
TCP 端口 1433 是 SQL Server
的默认端口。此端口也是 SQL 服务器的官方互联网号码分配机构 (IANA) 套接字号码。客户端系统使用 TCP 1433 连接到数据库引擎; SQL Server Management Studio (SSMS) 使用该端口跨网络管理 SQL 服务器实例。您可以重新配置 SQL Server
以侦听不同的端口,但 1433 是目前最常见的实现方式。
但是,如果您仍想打开它,请按照以下步骤操作:
步骤 1
可能 TCP/IP 频道在 SQL Server Configuration Manager
下被禁用。所以去那里启用所有 TCP/IP 选项。
步骤 2
以防万一在同一个地方SQL Server Configuration Manager
确保你有1433端口。
步骤 3
确保 SQL 服务器配置为允许远程连接。使用 MS SQL Management Studio 并右键单击服务器本身的顶部节点。
功劳来自找到的解决方案 here。