garagemq command not found

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

Introduction

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

garagemq: command not found

or when using sudo you get the following error message

sudo: garagemq: command not found

Solutions to garagemq: command not found

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

In Ubuntu garagemq is provided by garagemq package.

garagemq is:

GarageMQ is a message broker that implement the Advanced Message Queuing Protocol (AMQP). Compatible with any AMQP or RabbitMQ clients (tested streadway/amqp and php-amqp lib)

The GarageMQ project is also knowns an KubeMQ (https://kubemq.io).

This package does not contain the admin-frontend/build files since debian packaging npm modules is “complicated”. You can, after installing this package, download the files from github and cp -a $SRCDIR/admin-frontend/build /var/lib/garagemq/admin-frontend/ to be able to use the admin frontend as intended.

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

sudo apt-get -y install garagemq

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

You can also use apt command to install garagemq.

sudo apt -y install garagemq

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

sudo aptitude install garagemq

Summary

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