我在嘗試登錄asp.net應用程序時遇到以下錯誤。錯誤:40 - 無法打開與SQL Server的連接
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)
在我web.config
文件,連接字符串就像
<add name="DefaultConnection"
connectionString="Server=1.1.1.1; Database=XYZ; Uid=user; Pwd=pswd;"
providerName="System.Data.SqlClient" />
Web和數據庫服務器是分開的。同一個Web服務器上的其他網站指向同一個數據庫服務器上的不同數據庫,工作正常。
當我雙擊用戶名在SQL Server 2008 R2(安全 - >用戶 - >用戶),我收到以下錯誤:
我已經檢查SQL Server服務,他們正在運行精細。只是想知道在SQL Server中是否有與這個用戶有關的事情。
看上去就像是*非常*不對的用戶記錄... – 2014-10-03 11:55:03
創建一個新用戶來測試。如果它有效,那麼你知道問題在於那個用戶。 – CathalMF 2014-10-03 11:55:56