compute service¶
Compute v2
compute service delete¶
Delete compute service(s)
openstack compute service delete <service> [<service> ...]
-
service
¶
Compute service(s) to delete (ID only). If using
--os-compute-api-version
2.53 or greater, the ID is a UUID which can be retrieved by listing compute services using the same 2.53+ microversion.
This command is provided by the python-openstackclient plugin.
compute service list¶
List compute services. Using --os-compute-api-version
2.53 or greater will return the ID as a UUID value which can be used to uniquely identify the service in a multi-cell deployment.
openstack compute service list
[--sort-column SORT_COLUMN]
[--host <host>]
[--service <service>]
[--long]
-
--sort-column
SORT_COLUMN
¶ specify the column(s) to sort the data (columns specified first have a priority, non-existing columns are ignored), can be repeated
-
--host
<host>
¶ List services on specified host (name only)
-
--service
<service>
¶ List only specified service binaries (name only). For example,
nova-compute
,nova-conductor
, etc.
-
--long
¶
List additional fields in output
This command is provided by the python-openstackclient plugin.
compute service set¶
Set compute service properties
openstack compute service set
[--enable | --disable]
[--disable-reason <reason>]
[--up | --down]
<host>
<service>
-
--enable
¶
Enable service
-
--disable
¶
Disable service
-
--disable-reason
<reason>
¶ Reason for disabling the service (in quotes). Should be used with –disable option.
-
--up
¶
Force up service. Requires
--os-compute-api-version
2.11 or greater.
-
--down
¶
Force down service. Requires
--os-compute-api-version
2.11 or greater.
-
host
¶
Name of host
-
service
¶
Name of service (Binary name), for example
nova-compute
This command is provided by the python-openstackclient plugin.