Burrow command not found

In this troubleshooting guide we learn how to fix Burrow command not found error message

Introduction

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

Burrow: command not found

or when using sudo you get the following error message

sudo: Burrow: command not found

Solutions to Burrow: command not found

How To Fix Burrow: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu Burrow is provided by burrow package.

burrow is:

Burrow is a monitoring companion for Apache Kafka that provides consumer lag checking as a service without the need for specifying thresholds. It monitors committed offsets for all consumers and calculates the status of those consumers on demand.

An HTTP endpoint is provided to request status on demand, as well as provide other Kafka cluster information.

There are also configurable notifiers that can send status out via email or HTTP calls to another service.

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

sudo apt-get -y install burrow

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

You can also use apt command to install burrow.

sudo apt -y install burrow

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

sudo aptitude install burrow

Summary

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