我对Azure很新。我创建了托管SQL Server 2008的Azure虚拟机。
我的应用程序使用ASP.NET MVC 4并托管在Amazon Web Service上。该应用程序运行良好,我可以使用Management Studio连接到数据库。 但是,我现在有时会收到此错误。
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)
我不知道如何解决这个问题。 我是否需要实现与SQL Azure的数据库重试连接,我现在使用传统的连接字符串和NHibernate,将SQL Server与域名连接(abc.cloudapp.net) 或者,如果我们在Azure虚拟机上使用SQL Server 2008,还有其他问题需要考虑。
作为@ SqlACID的评论,这是我当前的连接字符串。 Server = domain.cloudapp.net; Database = db; User ID = uid; Password = pwd;我出于安全原因将实际值更改为domain,db和pwd。
然而,这种情况昨天发生了三次。
非常感谢你。
答案 0 :(得分:0)
与SQL Server的连接可能存在问题。
可以是
请检查您的web.config文件。
<强> A very Good link of Possible errors with answers. 强>
<强> More error list here 强>
<强> MSDN Similar Question 强>
<强> Stack similar Question 强>