neutron-vm-check command not found

In this troubleshooting guide we learn how to fix neutron-vm-check command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

neutron-vm-check: command not found

or when using sudo you get the following error message

sudo: neutron-vm-check: command not found

Solutions to neutron-vm-check: command not found

How To Fix neutron-vm-check: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu neutron-vm-check is provided by neutron-ha-tool package.

neutron-ha-tool is:

Neutron HA tool allows one to manipulate the different components of OpenStack Neutron. For example, it makes it possible to delete, list or migrate all the agents that Neutron provides. This way, it is possible to delete, list or migrate virtual routers in a full HA way.

To fix this problem, we can install more using the command below.

sudo apt-get -y install neutron-ha-tool

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install neutron-ha-tool.

sudo apt -y install neutron-ha-tool

Or if you have aptitude installed you can use the following command.

sudo aptitude install neutron-ha-tool

Summary

In this tutorial we learn how to fix neutron-vm-check command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.