Skip to content

Instantly share code, notes, and snippets.

@pracucci
Created August 12, 2019 16:44
Show Gist options
  • Save pracucci/d481dacc9f03da9d82633e2dbb295701 to your computer and use it in GitHub Desktop.
Save pracucci/d481dacc9f03da9d82633e2dbb295701 to your computer and use it in GitHub Desktop.
Notes on differences on the "halt" command on AWS EC2 Nitro instances

The halt command on EC2 Nitro instances doesn't poweroff the instance, so the OS will shutdown but the instance will be in the running state indefinitely (until you force a "stop" or "termination" via EC2 console / API). This is because the hypervisor has changed and the shutdown signaling between OS and the hypervisor behaves differently.

Works (the instance switches to "stopped" or "terminated"):

  • halt --poweroff
  • shutdown now (defaults to --poweroff)

Doesn't work (the instance hungs into a "running" state):

  • halt
  • shutdown --halt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment