> For the complete documentation index, see [llms.txt](https://platform9.com/kb/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://platform9.com/kb/pmo/solution/instance-s-fail-to-delete-when-host-is-down-offline.md).

# Instance(s) Fail to Delete When Host is Down/Offline

## Problem

* Instances(s) fail to delete.
* The hypervisor associated with the affected instance(s) is offline.
* “Unexpected API Error” message appears when attempting to delete the instance.

## Environment

* Platform9 Managed OpenStack - v3.6.0 and Higher

## Cause

* Either the hypervisor is down or removed.
* The ***nova-compute*** service on the host is stopped.
* Connectivity issues are present between the hypervisor and the Management Plane.

## Resolution

1. Identify the **UUID** of the host on which each instance resides.

{% tabs %}
{% tab title="None" %}

```none
# openstack server show -c OS-EXT-SRV-ATTR:host [INSTANCE_UUID]
```

{% endtab %}
{% endtabs %}

2. Force the compute service for the host to report as down.

{% tabs %}
{% tab title="None" %}

```none
# nova service-force-down [HOST_UUID]
```

{% endtab %}
{% endtabs %}

3. Delete the instance.

{% tabs %}
{% tab title="None" %}

```none
# openstack server delete [INSTANCE_UUID]
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://platform9.com/kb/pmo/solution/instance-s-fail-to-delete-when-host-is-down-offline.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
