将MVC 3 Web应用程序发布到Azure:忙碌 - 循环

时间:2012-05-30 16:10:01

标签: deployment azure

我有一个包含Bing Translate API的MVC3 Web应用程序。在模拟器上一切正常,但是当我将它部署到Windows Azure时,我一次又一次地遇到这个问题(我重试了两次以上):

Instance 0 of role Website is busy
Instance 0 of role Website is cycling

在骑自行车很长时间后停止。 在门户网站中,我看到了这样的信息:

Waiting for role to start... System is initializing

我已选择" Add deployable assemblies",并检查所有引用Copy Local = true是否为true 我还检查了连接字符串到我的帐户存储,我将我的项目设置为通过帐户存储在云上工作。

这里是Bing Translate API的web.config

<system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="BasicHttpBinding_LanguageService" closeTimeout="00:25:00"
          openTimeout="00:25:00" receiveTimeout="00:25:00" sendTimeout="00:25:00"
          allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
          maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
          messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
          useDefaultWebProxy="true">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <security mode="None">
            <transport clientCredentialType="None" proxyCredentialType="None"
              realm="" />
            <message clientCredentialType="UserName" algorithmSuite="Default" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://api.microsofttranslator.com/V2/soap.svc"
        binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_LanguageService"
        contract="BingTranslator.LanguageService" name="BasicHttpBinding_LanguageService" />
    </client>
  </system.serviceModel>

我已经搜索了很长时间,但对我来说没有任何作用。请给我你的帮助。 最诚挚的问候

1 个答案:

答案 0 :(得分:0)

我可以了解如何将这些错误转换为某些信息:

案例一:您的状态是在Web角色中循环:

  1. WebRole开始
  2. WebRole Busy
  3. WebRole Cycling
  4. WebRole未知状态
  5. WebRole重启
  6. 这可能是一个特定于角色的问题,您最好的选择是RDP到您的实例并查找一些内容,例如Azure诊断日志中的潜在异常,事件日志,Azure BootStrapper日志,IIS配置器日志等。这将帮助您除了可以从Azure存储中获取有关您潜在问题的所有详细信息的Azure诊断日志之外,还能比其他任何方法更快地找到问题。

    案例二:您的状态是在整机中循环:

    1. 启动...
    2. 初始化...
    3. WebRole开始
    4. WebRole Busy
    5. WebRole Cycling
    6. WebRole重启
    7. 这可能是机器特定的问题,其中VM本身正在循环,这是联系Windows Azure支持团队为您进行调查的好选择。