
nova
List of commands for nova:
-
nova:tldr:1e3f9 nova: List VMs of all tenants (admin user only).$ nova list --all-tenantstry on your machineexplain this command
-
nova:tldr:70564 nova: List VMs on current tenant.$ nova listtry on your machineexplain this command
-
nova:tldr:79f07 nova: Start a server.$ nova start ${server}try on your machineexplain this command
-
nova:tldr:c05da nova: Boot a VM on a specific host.$ nova boot --nic net-id=${net_id} --image ${image_id} --flavor ${flavor} --availability-zone nova:${host_name} ${vm_name}try on your machineexplain this command
-
nova:tldr:e9486 nova: Attach a network interface to a specific VM.$ nova interface-attach --net-id ${net_id} ${server}try on your machineexplain this command