Azure连接字符串失败

时间:2016-06-01 15:42:44

标签: azure connection-string

我有一个开发系统连接到Azure数据库。工作良好。当我将系统部署到Azure WebApp时,我收到sql连接错误"找不到服务器或无法访问服务器。"

更多信息: 在App Services中> GreenStore>设置>应用程序设置我填写了连接字符串,如下所示:

    DefaultConnection Server=tcp:gserver.database.windows.net,1433;
    Data Source=gserver.database.windows.net;
    Initial Catalog=GDB;Persist Security Info=False;
    User ID=xxx@xxxxserver;Password=xxxxxxx;Pooling=False;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=10 
    SQL Server

    StoreDBEntities
    metadata=res://*/Models.StoreModels.csdl|res://*/Models.StoreModels.ssdl|res://*/Models.StoreModels.msl;
    Server=tcp:gserver.database.windows.net,1433;
    Data Source="gserver.database.windows.net;
    Initial Catalog=GDB;Persist Security Info=False;
    User ID=xxx@xxxxserver;Password=xxxxxxx;Pooling=False;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=10;"
    Custom

我在App Services中输入的连接字符串是否有错误> GreenStore>设置>应用程序设置或是另一个问题。我可以使用web.config版本中的上述连接字符串从我的dev机器连接。

0 个答案:

没有答案