我有一个应用程序服务器(用Python [Django]编写)在一个网络上运行,而sql服务器数据库在另一个网络上(由于安全性原因),我正在尝试将值从该数据库获取到我的应用程序服务器。我得到的错误是:
OperationalError: ('08001', 'u'[08001] [Microsoft] [ODBC Driver 13 for SQL
Server] SQL Server Network Interfaces: Error Locating Server/ Instance
Specified [xFFFFFFFF]. (-1) (SQLDriverConnect); [08001] [Microsoft] [ODBC
Driver 13 for SQL Server] Login Timeout Expired (0); [08001] [Microsoft]
[ODBC Driver 13 for SQL Server] Invalid connection string attrbute (0);
[08001] [Microsoft] [ODBC Driver 13 for SQL Server] A network-related or
instance-specific error has occurred while establishing a connection to SQL
Server. Server is not found or not accessible. Check if instance name is
correct and if SQL Server is configured to allow remote connections. For more
information see SQL Server Books Online. (-1)')
我已经检查过的东西:
在运行网络监视器的所有这些步骤之后,我看到了从应用程序服务器到数据库服务器的流量,但是从数据库到应用程序服务器没有响应。如果我在这里缺少什么,请告诉我。提前致谢。