0

Azure Web Sql Web データベースがあります

Microsoftサーバー2012を実行している別のvps上のasp.netアプリに接続しようとしています。関連するIPをAzure SQL許可IPに追加し、VPSでtcp 1433インバウンドおよびアウトバウンドを開きました。

ローカル db の実行中に localhost で正常に動作する config の接続文字列の形式は次のとおりです。

    <connectionStrings>
<add name="db_connection" connectionString="Data Source=my server name;  Initial Catalog=bidstreet;  user=mydbuser;  password=mypassword;"/>
</connectionStrings>

localhost でも (locahost ip も azure の許可された ip のリストに追加されました)、それが返す azure の詳細を使用しようとすると

{"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: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)"}

私は Azure コンソールから ado 接続文字列を使用してみましたが、これはヒストリック フィットを通過するだけです。

ただし、スタジオ Web または SQL Server Management スタジオでは、同じ設定を使用して接続およびテストできます。

アドバイスをいただければ幸いです。

4

1 に答える 1

0

データ ソースの形式が であることを確認できますかtcp:< server name >?

于 2014-07-14T19:09:45.517 に答える