0196e7f51e
In this patch 1.) Add a new line between input and output of "code-block"s 2.) Combined the input and output into one "code-block" 3.) Delete extra lines in the files Change-Id: I9801d293fedaa90543c02885ef3cb79aaeb50106 Implements: blueprint user-guides-reorganised
1.9 KiB
1.9 KiB
Delete an instance
When you no longer need an instance, you can delete it.
List all instances:
$ nova list +-------------+----------------------+--------+------------+-------------+------------------+ | ID | Name | Status | Task State | Power State | Networks | +-------------+----------------------+--------+------------+-------------+------------------+ | 84c6e57d... | myCirrosServer | ACTIVE | None | Running | private=10.0.0.3 | | 8a99547e... | myInstanceFromVolume | ACTIVE | None | Running | private=10.0.0.4 | | d7efd3e4... | newServer | ERROR | None | NOSTATE | | +-------------+----------------------+--------+------------+-------------+------------------+
Run the
nova delete
command to delete the instance. The following example shows deletion of thenewServer
instance, which is inERROR
state:$ nova delete newServer
The command does not notify that your server was deleted.
To verify that the server was deleted, run the
nova list
command:$ nova list +-------------+----------------------+--------+------------+-------------+------------------+ | ID | Name | Status | Task State | Power State | Networks | +-------------+----------------------+--------+------------+-------------+------------------+ | 84c6e57d... | myCirrosServer | ACTIVE | None | Running | private=10.0.0.3 | | 8a99547e... | myInstanceFromVolume | ACTIVE | None | Running | private=10.0.0.4 | +-------------+----------------------+--------+------------+-------------+------------------+
The deleted instance does not appear in the list.