我試圖創建VS2010通過新建項目嚮導創建一個新的數據庫項目,並通過這篇文章:http://msdn.microsoft.com/en-us/library/aa833432(v=vs.100).aspx無法連接到SQL Server的命名實例2008R2
我對「配置構建/部署」步,並試圖連接到我剛剛安裝的名爲「開發」的SQL Server 2008R2的命名實例。假設服務器名稱是DB-01,我在下面的屏幕截圖的對話框中使用DB-01 \ DEVELOPMENT作爲服務器名稱。我還使用剩餘的設置對話框中,但它不斷給我下面的錯誤:
A network-related or instance-specific error occurred while establishing a connection to the 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: TCP Provider, error: 0 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)
DEV是我的開發實例創建的數據庫的名稱。如果我使用DB-01作爲默認實例的服務器名稱,它將連接。過去,我們一直在從缺省實例的數據庫開發,沒有任何問題,但我試圖轉移到本地的,源代碼控制的數據庫。我錯過了這個沒有連接的東西?
編輯:由於多一點而言,它不是用戶名/密碼組合,或實例上的DEV分貝的存在,因爲我收到不同的錯誤,如果這類原因是不正確的。一旦我給它命名的實例,它根本無法連接。
試圖遠程或本地連接? – Jhonathan
這是一個遠程連接 –
MySQL連接端口1433是默認。嘗試運行以下命令 的telnet ipserver 1433 有了這個,你可以看到,如果該端口是開放的,或者如果你有防火牆 – Jhonathan