sidekiqmon command not found

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

Introduction

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

sidekiqmon: command not found

or when using sudo you get the following error message

sudo: sidekiqmon: command not found

Solutions to sidekiqmon: command not found

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

In Ubuntu sidekiqmon is provided by ruby-sidekiq package.

ruby-sidekiq is:

Sidekiq uses threads to handle many jobs at the same time in the same process. It does not require Rails but will integrate tightly with Rails 3/4 to make background processing dead simple.

Sidekiq is compatible with Resque. It uses the exact same message format as Resque so it can integrate into an existing Resque processing farm.

You can have Sidekiq and Resque run side-by-side at the same time and use the Resque client to enqueue jobs in Redis to be processed by Sidekiq.

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

sudo apt-get -y install ruby-sidekiq

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

You can also use apt command to install ruby-sidekiq.

sudo apt -y install ruby-sidekiq

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

sudo aptitude install ruby-sidekiq

Summary

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