Auth0 /繁琐无法连接到公共SQL Server

时间:2017-08-29 10:54:58

标签: javascript sql-server tcp auth0 tedious

我正在使用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浏览器,我的防火墙也暂时被禁用用于测试目的,IPAll有TCP端口1433.

enter image description here

enter image description here

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

0 个答案:

没有答案