Restart your Vultr VX1™ Cloud Compute instance through the Customer Portal or API to reinitialize the system without affecting stored data.
Restarting an instance performs a hard reboot that stops all running processes and reinitializes the operating system. This action does not affect the instance’s data or file system. Restarting is useful for applying system updates, configuration changes, or recovering from temporary service issues.
Follow this guide to restart a Vultr VX1™ Cloud Compute instance using the Vultr Customer Portal, or API.
Send a GET request to the List Instances endpoint and note your target instance's ID.
$ curl "https://api.vultr.com/v2/instances" \
-X GET \
-H "Authorization: Bearer ${VULTR_API_KEY}"
Send a POST request to the Reboot Instances endpoint to restart the instance.
$ curl "https://api.vultr.com/v2/instances/reboot" \
-X POST \
-H "Authorization: Bearer ${VULTR_API_KEY}" \
-H "Content-Type: application/json" \
--data '{
"instance_ids" : [
"instance_id"
]
}'
If successful, you receive a 200 HTTP response.