来自 SqlException“网络相关或特定于实例的错误?”的连接字符串
我的一些网站报告以下错误:
System.Data.SqlClient.SqlException:与网络相关或 建立与实例的连接时发生特定于实例的错误 SQL 服务器。找不到服务器或无法访问服务器。核实 实例名称正确并且 SQL Server 配置为 允许远程连接。 (提供者:命名管道提供者,错误:40 - 无法打开与 SQL Server 的连接)
该站点动态切换连接字符串,我怀疑问题在于它没有正确执行此操作。如果我可以提取无法连接的服务器名称,我可以进一步调查。
有什么方法可以在 global.asax 中的 Application_Error 中执行此操作吗?
Some of my sites are reporting the following error:
System.Data.SqlClient.SqlException: A network-related or
instance-specific error occurred while establishing a connection to
SQL Server. The server was not found or was not accessible. Verify
that the instance name is correct and that SQL Server is configured to
allow remote connections. (provider: Named Pipes Provider, error: 40 -
Could not open a connection to SQL Server)
The site switches connection string dynamically and I suspect the issue is that it is not doing this correctly. If I can extract the server name it is failing to connect to, I can investigate further.
Is there any way to do this in, say, Application_Error in the global.asax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能是由于 SQL Server 服务停止运行造成的。打开 SQL Server 配置管理器并重新启动 SQL Server 服务。
This can be caused by the SQL Server service stopping running. Open
SQL Server Configuration Manager
and restart theSQL Server
service.