EC2 Instance – What Signal Is Sent on Shutdown?

amazon ec2amazon-web-serviceslinuxlinux-kernel

When you terminate an instance-store pv instance through the AWS console or the API, what "signal" does it receive so it knows it has to gracefully shut down?

First guess would be ACPI, but on boot Linux reports

ACPI in unprivileged domain disabled
ACPI: Interpreter disabled.

Best Answer

EC2 uses Xen. The Xen PV driver handles the shutdown. If you were using an HVM instance, ACPI would handle the shutdown.

Related Topic