在azure计算模拟器中停止实例

时间:2012-12-04 21:56:33

标签: azure azure-web-roles

我正在调试一个托管着天蓝色webrole的网站。它配置为运行两个实例。现在我想停止一个模拟器实例,同时调试可能吗?

2 个答案:

答案 0 :(得分:3)

我刚才在博客上写道:Controlling your instances in the Windows Azure Compute Emulator。在撰写本文时,我使用的是SDK的1.7版本。我注意到,当使用SDK 1.8时,在调试时杀死实例确实可以正常工作。

因此,如果要在模拟器中缩小,则需要运行以下命令,引用更新的ServiceConfiguration.csconf文件(Instances count = 1而不是2):

csrun.exe /update:<deployment-id>;<service-configuration-file>

您还可以通过终止 WaIISHost.exe 进程来模拟其中一个实例的失败。

答案 1 :(得分:0)