0

我将 Auth0 与自定义数据库一起使用,当创建用户时添加 Sql Server 脚本(使用繁琐)时,我收到以下错误消息:

[Error] Failed to get response from SQL Server Browser on 'serverIp'

连接对象:

var connection = sqlserver.connect({
    userName:  'userName',
    password:  'passWord',
    server:    'serverIp',
    /* port parameter is not needed because 1433 is used as default */
    options:  {
        database: 'databaseName',
        instanceName: 'sqlexpress' /* when removing this the error becomes: timeout : failed to connect to 'serverIp' in 15000ms */
    }
});

serverIp 是使用 ipconfig 命令检索的 IPv4 地址。我启用了 TCP/IP 和 SQL Server Browser,我的防火墙也被暂时禁用以进行测试,并且 IPAll 具有 TCP 端口 1433。

在此处输入图像描述

在此处输入图像描述

我可以在另一台计算机上打开 SQL Server,那么 Auth0 / tedious 不允许连接是如何发生的?

4

0 回答 0