Azure VM出现故障(Azure VM faulted error)

我在Azure基础架构上托管的生产虚拟机中存在一个大问题(大小,如果重要的话是:标准DS14(16核,112 GB内存))

整个生产服务器已经脱机,停止向New Relic报告,我也无法通过它进入SSH(它超时)。 我尝试从门户网站重启机器,但收到了消息:

The operation '7922f9ed80af7b2c9a9ec5d13f510393' failed: 'The operation cannot be performed because the virtual machine is faulted.'.

我能做什么? 这是一个很有约束力!

ps https://azure.microsoft.com/en-us/status/显示一切都很好

I have a huge problem in a production VM I was hosting on Azure infrastructure (size, in case it matters is: Standard DS14 (16 Cores, 112 GB memory))

The entire production server has gone offline, stopped reporting to New Relic, and I can't SSH into it either (it times out). I tried restarting the machine from the portal, but got the message:

The operation '7922f9ed80af7b2c9a9ec5d13f510393' failed: 'The operation cannot be performed because the virtual machine is faulted.'.

What can I do? This is quite a bind!

p.s. https://azure.microsoft.com/en-us/status/ shows all is well

最满意答案

您的问题发生在VM的主机上有问题。

重新启动或创建新VM可以解决此问题。 调整VM的大小会将VM移动到其他主机服务器,因此如果主机存在影响VM的问题,则调整其大小将使其脱离该主机。

您可以检查虚拟机是否在可用性集中 。 可用性集是跨故障域和更新域部署的一组虚拟机。 可用性集确保您的应用程序不受单点故障的影响,例如网络交换机或服务器机架的电源单元。

Your issue happens on VM's host has fault.

Restart or create a new VM could solve this issue. Resizing the VM moves the VM to a different host server, so if there is an issue with the host that is impacting a VM, resizing it will get it off that host.

You could check whether your VMs in an availability set. An availability set is a group of virtual machines that are deployed across fault domains and update domains. An availability set makes sure that your application is not affected by single points of failure, like the network switch or the power unit of a rack of servers.

更多推荐