How to Stop a Vultr Bare Metal Instance

How to Stop a Vultr Bare Metal Instance

Learn how to properly stop a Vultr Bare Metal instance to pause services while maintaining your configuration and data.


Stopping an instance shuts it down and disables connectivity to the main network interface. The operating system and all running processes are stopped, but the instance normal billing cycle continues unless destroyed.

Follow this guide to stop a Vultr Bare Metal instance using the Vultr Customer Portal, API, or CLI.

Vultr Customer Portal

  1. Navigate to Products and click Compute.
  2. Click your target instance to open its management page.
  3. Click Stop Server on the top-right navigation menu to stop the instance.
  4. Click Stop Server in the confirmation prompt to stop the instance.

Vultr API

  1. Send a GET request to the List Bare Metal Instances endpoint and note the target instance’s ID in your output.
    console
    $ curl "https://api.vultr.com/v2/bare-metals" \
      -X GET \
      -H "Authorization: Bearer ${VULTR_API_KEY}"
    
  2. Send a POST request to the Halt Bare Metal endpoint to stop the instance.
    console
    $ curl "https://api.vultr.com/v2/bare-metals/{baremetal-id}/halt" \
      -X POST \
      -H "Authorization: Bearer ${VULTR_API_KEY}"

Vultr CLI

  1. List all Bare Metal instances in your Vultr account and note the target instance’s ID.
    console
    $ vultr-cli bare-metal list
    
  2. Stop the instance.
    console
    $ vultr-cli bare-metal stop <instance-id>

How to Stop a Vultr Bare Metal Instance Learn how to properly stop a Vultr Bare Metal instance to pause services while maintaining your configuration and data. Stopping an instance shuts it down and disables connectivity to the main network interface. The operating system and all running processes are stopped,…

How to Stop a Vultr Bare Metal Instance Learn how to properly stop a Vultr Bare Metal instance to pause services while maintaining your configuration and data. Stopping an instance shuts it down and disables connectivity to the main network interface. The operating system and all running processes are stopped,…

Leave a Reply

Your email address will not be published. Required fields are marked *