Forrest logo
back to context overview

nova

List of commands for nova:

  • nova:tldr:1e3f9 nova: List VMs of all tenants (admin user only).
    $ nova list --all-tenants
    try on your machine
    explain this command
  • nova:tldr:70564 nova: List VMs on current tenant.
    $ nova list
    try on your machine
    explain this command
  • nova:tldr:79f07 nova: Start a server.
    $ nova start ${server}
    try on your machine
    explain this command
  • nova:tldr:ba002 nova: Stop a server.
    $ nova stop ${server}
    try on your machine
    explain 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 machine
    explain 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 machine
    explain this command
back to context overview