[admin-guide] Use 'openstack server list' to replace 'nova list'

This patch use 'openstack server list' to replace 'nova list' in
admin-guide for cleanup.

Change-Id: Icabfae6c16f71b280c3148cdea00e7befe8c2226
This commit is contained in:
qiaomin 2016-11-17 15:19:54 +00:00 committed by KATO Tomoyuki
parent 18437d2c43
commit b4fb37c5e2
3 changed files with 10 additions and 11 deletions

View File

@ -15,7 +15,7 @@ For more information, see :ref:`clinovamigratecfgssh`.
.. code-block:: console
$ nova list
$ openstack server list
#. After selecting a VM from the list, run this command where :guilabel:`VM_ID`
is set to the ID in the list returned in the previous step:

View File

@ -25,7 +25,7 @@ Before starting a migration, review the Configure migrations section.
.. code-block:: console
$ nova list
$ openstack server list
.. list-table::
:header-rows: 1
@ -228,6 +228,6 @@ Before starting a migration, review the Configure migrations section.
This issue can be solved when we upgrade to RPC API version 4.0.
#. Check that the instance has been migrated successfully, using
:command:`nova list`. If the instance is still running on ``HostB``,
check the log files at ``src/dest`` for ``nova-compute`` and
:command:`openstack server list`. If the instance is still running on
``HostB``, check the log files at ``src/dest`` for ``nova-compute`` and
``nova-scheduler`` to determine why.

View File

@ -802,13 +802,12 @@ respective DHCP servers:
.. code-block:: console
$ nova list
+-----+------------+--------+----------------------------------------+
| ID | Name | Status | Networks |
+-----+------------+--------+----------------------------------------+
| 124 | Server 124 | ACTIVE | network2=20.20.0.3; private=20.20.10.14|
+-----+------------+--------+----------------------------------------+
$ openstack server list
+---------+----------+--------+-----------------------------------------+------------+
|ID | Name | Status | Networks | Image Name |
+---------+----------+--------+-----------------------------------------+------------+
| 1234... | MyServer | ACTIVE | network2=20.20.0.3; private=20.20.10.14 | cirros |
+---------+----------+--------+-----------------------------------------+------------+
.. note::