連接它的工作原理完美的,當我在本地及SQL Azure數據庫上運行。但是當我將網站發佈到azure時,它會給我錯誤,如下所示。如何Azure的網站與Azure的SQL服務器
我的web配置:
<configuration>
<connectionStrings>
<add name="systemReposConnectionString" connectionString="Server=tcp:ewsserver.database.windows.net,1433;Database=systemRepos;User [email protected];Password=xxxx;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<customErrors mode="Off"></customErrors>
<compilation targetFramework="4.5" debug="true"/>
<httpRuntime targetFramework="4.5" />
</system.web>
</configuration>
錯誤,我得到如下:在建立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: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
我從0.0.0.0設置爲我的蔚藍SQL服務器的防火牆設置和254.254.254.254
感謝
請把你的數據庫密碼 –
試過這個..但仍然沒有工作....我仍然得到相同的錯誤... – Kanes
http://finaladminsys.azurewebsites.net/ - >這是我的鏈接 – Kanes